1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
|
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define _GNU_SOURCE /* See feature_test_macros(7) */
#include <dlfcn.h>
#include "wrappedlibs.h"
#include "wrapper.h"
#include "bridge.h"
#include "librarian/library_private.h"
#include "x64emu.h"
#include <unistd.h>
#include <sys/mman.h>
#include <errno.h>
#include "debug.h"
#include "callback.h"
const char* libharfbuzzName = "libharfbuzz.so.0";
#define LIBNAME libharfbuzz
#include "generated/wrappedlibharfbuzztypes.h"
#include "wrappercallback.h"
struct hb_atomic_int_t
{
int v;
};
struct hb_reference_count_t
{
struct hb_atomic_int_t ref_count;
};
struct hb_atomic_ptr_t {
void* v;
};
struct hb_object_header_t
{
struct hb_reference_count_t ref_count;
struct hb_atomic_int_t writable;
struct hb_atomic_ptr_t user_data;
};
/*
* hb_draw_funcs_t
*/
#define HB_DRAW_FUNCS_IMPLEMENT_CALLBACKS \
HB_DRAW_FUNC_IMPLEMENT (move_to) \
HB_DRAW_FUNC_IMPLEMENT (line_to) \
HB_DRAW_FUNC_IMPLEMENT (quadratic_to) \
HB_DRAW_FUNC_IMPLEMENT (cubic_to) \
HB_DRAW_FUNC_IMPLEMENT (close_path) \
/* ^--- Add new callbacks here */
struct hb_draw_funcs_t__func {
#define HB_DRAW_FUNC_IMPLEMENT(name) void* name;
HB_DRAW_FUNCS_IMPLEMENT_CALLBACKS
#undef HB_DRAW_FUNC_IMPLEMENT
};
struct hb_draw_funcs_t__destroy {
#define HB_DRAW_FUNC_IMPLEMENT(name) void* name;
HB_DRAW_FUNCS_IMPLEMENT_CALLBACKS
#undef HB_DRAW_FUNC_IMPLEMENT
};
struct hb_draw_funcs_t
{
struct hb_object_header_t header;
struct hb_draw_funcs_t__func func;
struct {
#define HB_DRAW_FUNC_IMPLEMENT(name) void *name;
HB_DRAW_FUNCS_IMPLEMENT_CALLBACKS
#undef HB_DRAW_FUNC_IMPLEMENT
} *user_data;
struct hb_draw_funcs_t__destroy* destroy;
};
/*
* hb_font_funcs_t
*/
#define HB_FONT_FUNCS_IMPLEMENT_CALLBACKS \
HB_FONT_FUNC_IMPLEMENT (get_,font_h_extents) \
HB_FONT_FUNC_IMPLEMENT (get_,font_v_extents) \
HB_FONT_FUNC_IMPLEMENT (get_,nominal_glyph) \
HB_FONT_FUNC_IMPLEMENT (get_,nominal_glyphs) \
HB_FONT_FUNC_IMPLEMENT (get_,variation_glyph) \
HB_FONT_FUNC_IMPLEMENT (get_,glyph_h_advance) \
HB_FONT_FUNC_IMPLEMENT (get_,glyph_v_advance) \
HB_FONT_FUNC_IMPLEMENT (get_,glyph_h_advances) \
HB_FONT_FUNC_IMPLEMENT (get_,glyph_v_advances) \
HB_FONT_FUNC_IMPLEMENT (get_,glyph_h_origin) \
HB_FONT_FUNC_IMPLEMENT (get_,glyph_v_origin) \
HB_FONT_FUNC_IMPLEMENT (get_,glyph_h_kerning) \
HB_FONT_FUNC_IMPLEMENT (get_,glyph_v_kerning) \
HB_FONT_FUNC_IMPLEMENT (get_,glyph_extents) \
HB_FONT_FUNC_IMPLEMENT (get_,glyph_contour_point) \
HB_FONT_FUNC_IMPLEMENT (get_,glyph_name) \
HB_FONT_FUNC_IMPLEMENT (get_,glyph_from_name) \
HB_FONT_FUNC_IMPLEMENT (,draw_glyph) \
HB_FONT_FUNC_IMPLEMENT (,paint_glyph) \
/* ^--- Add new callbacks here */
struct hb_font_funcs_t__destroy {
#define HB_FONT_FUNC_IMPLEMENT(get_,name) void* name;
HB_FONT_FUNCS_IMPLEMENT_CALLBACKS
#undef HB_FONT_FUNC_IMPLEMENT
};
struct hb_font_funcs_t
{
struct hb_object_header_t header;
struct {
#define HB_FONT_FUNC_IMPLEMENT(get_,name) void* name;
HB_FONT_FUNCS_IMPLEMENT_CALLBACKS
#undef HB_FONT_FUNC_IMPLEMENT
} *user_data;
struct hb_font_funcs_t__destroy* destroy;
union get_t {
struct get_funcs_t {
#define HB_FONT_FUNC_IMPLEMENT(get_,name) void* name;
HB_FONT_FUNCS_IMPLEMENT_CALLBACKS
#undef HB_FONT_FUNC_IMPLEMENT
} f;
void (*array[0
#define HB_FONT_FUNC_IMPLEMENT(get_,name) +1
HB_FONT_FUNCS_IMPLEMENT_CALLBACKS
#undef HB_FONT_FUNC_IMPLEMENT
]) ();
} get;
};
/*
* hb_unicode_funcs_t
*/
#define HB_UNICODE_FUNCS_IMPLEMENT_CALLBACKS \
HB_UNICODE_FUNC_IMPLEMENT (combining_class) \
HB_UNICODE_FUNC_IMPLEMENT (eastasian_width) \
HB_UNICODE_FUNC_IMPLEMENT (general_category) \
HB_UNICODE_FUNC_IMPLEMENT (mirroring) \
HB_UNICODE_FUNC_IMPLEMENT (script) \
HB_UNICODE_FUNC_IMPLEMENT (compose) \
HB_UNICODE_FUNC_IMPLEMENT (decompose) \
HB_UNICODE_FUNC_IMPLEMENT (decompose_compatibility) \
/* ^--- Add new callbacks here */
/* Simple callbacks are those taking a hb_codepoint_t and returning a hb_codepoint_t */
#define HB_UNICODE_FUNCS_IMPLEMENT_CALLBACKS_SIMPLE \
HB_UNICODE_FUNC_IMPLEMENT (hb_unicode_combining_class_t, combining_class) \
HB_UNICODE_FUNC_IMPLEMENT (unsigned int, eastasian_width) \
HB_UNICODE_FUNC_IMPLEMENT (hb_unicode_general_category_t, general_category) \
HB_UNICODE_FUNC_IMPLEMENT (hb_codepoint_t, mirroring) \
HB_UNICODE_FUNC_IMPLEMENT (hb_script_t, script) \
/* ^--- Add new simple callbacks here */
struct hb_unicode_funcs_t__destroy {
#define HB_UNICODE_FUNC_IMPLEMENT(name) void* name;
HB_UNICODE_FUNCS_IMPLEMENT_CALLBACKS
#undef HB_UNICODE_FUNC_IMPLEMENT
};
struct hb_unicode_funcs_t
{
struct hb_object_header_t header;
struct hb_unicode_funcs_t *parent;
struct {
#define HB_UNICODE_FUNC_IMPLEMENT(name) void* name;
HB_UNICODE_FUNCS_IMPLEMENT_CALLBACKS
#undef HB_UNICODE_FUNC_IMPLEMENT
} func;
struct {
#define HB_UNICODE_FUNC_IMPLEMENT(name) void* name;
HB_UNICODE_FUNCS_IMPLEMENT_CALLBACKS
#undef HB_UNICODE_FUNC_IMPLEMENT
} user_data;
struct hb_unicode_funcs_t__destroy destroy;
};
#define SUPER() \
GO(0) \
GO(1) \
GO(2) \
GO(3) \
GO(4) \
GO(5) \
GO(6) \
GO(7) \
GO(8) \
GO(9) \
GO(10) \
GO(11) \
GO(12) \
// buffer_message
#define GO(A) \
static uintptr_t my_buffer_message_fct_##A = 0; \
static int my_buffer_message_##A(void* a, void* b, void* c, void* d)\
{ \
return (int)RunFunctionFmt(my_buffer_message_fct_##A, "pppp", a, b, c, d); \
}
SUPER()
#undef GO
static void* find_buffer_message_Fct(void* fct)
{
if (!fct) return NULL;
if (GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if (my_buffer_message_fct_##A == (uintptr_t)fct) return my_buffer_message_##A;
SUPER()
#undef GO
#define GO(A) if (my_buffer_message_fct_##A == 0) {my_buffer_message_fct_##A = (uintptr_t)fct; return my_buffer_message_##A;}
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for libharfbuzz buffer message callback\n");
return NULL;
}
// draw close path
#define GO(A) \
static uintptr_t my_draw_close_path_fct_##A = 0; \
static void my_draw_close_path_##A(void* a, void* b, void* c, void* d) \
{ \
RunFunctionFmt(my_draw_close_path_fct_##A, "pppp", a, b, c, d); \
}
SUPER()
#undef GO
static void* find_draw_close_path_Fct(void* fct)
{
if (!fct) return NULL;
if (GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if (my_draw_close_path_fct_##A == (uintptr_t)fct) return my_draw_close_path_##A;
SUPER()
#undef GO
#define GO(A) if (my_draw_close_path_fct_##A == 0) {my_draw_close_path_fct_##A = (uintptr_t)fct; return my_draw_close_path_##A;}
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for libharfbuzz draw close path callback\n");
return NULL;
}
// draw cubic to
#define GO(A) \
static uintptr_t my_draw_cubic_to_fct_##A = 0; \
static void my_draw_cubic_to_##A(void* a, void* b, void* c, float d1, float d2, float d3, float d4, float d5, float d6, void* e) \
{ \
RunFunctionFmt(my_draw_cubic_to_fct_##A, "pppffffffp", a, b, c, d1, d2, d3, d4, d5, d6, e); \
}
SUPER()
#undef GO
static void* find_draw_cubic_to_Fct(void* fct)
{
if (!fct) return NULL;
if (GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if (my_draw_cubic_to_fct_##A == (uintptr_t)fct) return my_draw_cubic_to_##A;
SUPER()
#undef GO
#define GO(A) if (my_draw_cubic_to_fct_##A == 0) {my_draw_cubic_to_fct_##A = (uintptr_t)fct; return my_draw_cubic_to_##A;}
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for libharfbuzz draw cubic to callback\n");
return NULL;
}
// draw line/move to
#define GO(A) \
static uintptr_t my_draw_line_or_move_to_fct_##A = 0; \
static void my_draw_line_or_move_to_##A(void* a, void* b, void* c, float d1, float d2, void* e) \
{ \
RunFunctionFmt(my_draw_line_or_move_to_fct_##A, "pppffp", a, b, c, d1, d2, e); \
}
SUPER()
#undef GO
static void* find_draw_line_or_move_to_Fct(void* fct)
{
if (!fct) return NULL;
if (GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if (my_draw_line_or_move_to_fct_##A == (uintptr_t)fct) return my_draw_line_or_move_to_##A;
SUPER()
#undef GO
#define GO(A) if (my_draw_line_or_move_to_fct_##A == 0) {my_draw_line_or_move_to_fct_##A = (uintptr_t)fct; return my_draw_line_or_move_to_##A;}
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for libharfbuzz draw line/move to callback\n");
return NULL;
}
// draw quadratic to
#define GO(A) \
static uintptr_t my_draw_quadratic_to_fct_##A = 0; \
static void my_draw_quadratic_to_##A(void* a, void* b, void* c, float d1, float d2, float d3, float d4, void* e) \
{ \
RunFunctionFmt(my_draw_quadratic_to_fct_##A, "pppffffp", a, b, c, d1, d2, d3, d4, e); \
}
SUPER()
#undef GO
static void* find_draw_quadratic_to_Fct(void* fct)
{
if (!fct) return NULL;
if (GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if (my_draw_quadratic_to_fct_##A == (uintptr_t)fct) return my_draw_quadratic_to_##A;
SUPER()
#undef GO
#define GO(A) if (my_draw_quadratic_to_fct_##A == 0) {my_draw_quadratic_to_fct_##A = (uintptr_t)fct; return my_draw_quadratic_to_##A;}
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for libharfbuzz draw quadratic to callback\n");
return NULL;
}
// reference table
#define GO(A) \
static uintptr_t my_reference_table_fct_##A = 0; \
static void* my_reference_table_##A(void* a, uint32_t b, void* c) \
{ \
return (void*)RunFunctionFmt(my_reference_table_fct_##A, "pup", a, b, c); \
}
SUPER()
#undef GO
static void* find_reference_table_Fct(void* fct)
{
if (!fct) return NULL;
if (GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if (my_reference_table_fct_##A == (uintptr_t)fct) return my_reference_table_##A;
SUPER()
#undef GO
#define GO(A) if (my_reference_table_fct_##A == 0) {my_reference_table_fct_##A = (uintptr_t)fct; return my_reference_table_##A;}
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for libharfbuzz reference table callback\n");
return NULL;
}
// unicode combining class
#define GO(A) \
static uintptr_t my_unicode_combining_class_fct_##A = 0; \
static uint32_t my_unicode_combining_class_##A(void* a, uint32_t b, void* c)\
{ \
return (uint32_t)RunFunctionFmt(my_unicode_combining_class_fct_##A, "pup", a, b, c); \
}
SUPER()
#undef GO
static void* find_unicode_combining_class_Fct(void* fct)
{
if (!fct) return NULL;
if (GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if (my_unicode_combining_class_fct_##A == (uintptr_t)fct) return my_unicode_combining_class_##A;
SUPER()
#undef GO
#define GO(A) if (my_unicode_combining_class_fct_##A == 0) {my_unicode_combining_class_fct_##A = (uintptr_t)fct; return my_unicode_combining_class_##A;}
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for libharfbuzz unicode combining class callback\n");
return NULL;
}
// unicode compose
#define GO(A) \
static uintptr_t my_unicode_compose_fct_##A = 0; \
static int my_unicode_compose_##A(void* a, uint32_t b, uint32_t c, void* d, void* e)\
{ \
return (int)RunFunctionFmt(my_unicode_compose_fct_##A, "puupp", a, b, c, d, e); \
}
SUPER()
#undef GO
static void* find_unicode_compose_Fct(void* fct)
{
if (!fct) return NULL;
if (GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if (my_unicode_compose_fct_##A == (uintptr_t)fct) return my_unicode_compose_##A;
SUPER()
#undef GO
#define GO(A) if (my_unicode_compose_fct_##A == 0) {my_unicode_compose_fct_##A = (uintptr_t)fct; return my_unicode_compose_##A;}
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for libharfbuzz unicode compose callback\n");
return NULL;
}
// unicode decompose compatibility
#define GO(A) \
static uintptr_t my_unicode_decompose_compatibility_fct_##A = 0; \
static uint32_t my_unicode_decompose_compatibility_##A(void* a, uint32_t b, void* c, void* d) \
{ \
return (uint32_t)RunFunctionFmt(my_unicode_decompose_compatibility_fct_##A, "pupp", a, b, c, d); \
}
SUPER()
#undef GO
static void* find_unicode_decompose_compatibility_Fct(void* fct)
{
if (!fct) return NULL;
if (GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if (my_unicode_decompose_compatibility_fct_##A == (uintptr_t)fct) return my_unicode_decompose_compatibility_##A;
SUPER()
#undef GO
#define GO(A) if (my_unicode_decompose_compatibility_fct_##A == 0) {my_unicode_decompose_compatibility_fct_##A = (uintptr_t)fct; return my_unicode_decompose_compatibility_##A;}
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for libharfbuzz unicode decompose compatibility callback\n");
return NULL;
}
// unicode decompose
#define GO(A) \
static uintptr_t my_unicode_decompose_fct_##A = 0; \
static int my_unicode_decompose_##A(void* a, uint32_t b, void* c, void* d, void* e) \
{ \
return (int)RunFunctionFmt(my_unicode_decompose_fct_##A, "puppp", a, b, c, d, e); \
}
SUPER()
#undef GO
static void* find_unicode_decompose_Fct(void* fct)
{
if (!fct) return NULL;
if (GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if (my_unicode_decompose_fct_##A == (uintptr_t)fct) return my_unicode_decompose_##A;
SUPER()
#undef GO
#define GO(A) if (my_unicode_decompose_fct_##A == 0) {my_unicode_decompose_fct_##A = (uintptr_t)fct; return my_unicode_decompose_##A;}
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for libharfbuzz unicode decompose class callback\n");
return NULL;
}
// unicode eastasian width
#define GO(A) \
static uintptr_t my_unicode_eastasian_width_fct_##A = 0; \
static uint32_t my_unicode_eastasian_width_##A(void* a, uint32_t b, void* c) \
{ \
return (uint32_t)RunFunctionFmt(my_unicode_eastasian_width_fct_##A, "pup", a, b, c); \
}
SUPER()
#undef GO
static void* find_unicode_eastasian_width_Fct(void* fct)
{
if (!fct) return NULL;
if (GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if (my_unicode_eastasian_width_fct_##A == (uintptr_t)fct) return my_unicode_eastasian_width_##A;
SUPER()
#undef GO
#define GO(A) if (my_unicode_eastasian_width_fct_##A == 0) {my_unicode_eastasian_width_fct_##A = (uintptr_t)fct; return my_unicode_eastasian_width_##A;}
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for libharfbuzz unicode eastasian width callback\n");
return NULL;
}
// unicode general category
#define GO(A) \
static uintptr_t my_unicode_general_category_fct_##A = 0; \
static uint32_t my_unicode_general_category_##A(void* a, uint32_t b, void* c) \
{ \
return (uint32_t)RunFunctionFmt(my_unicode_general_category_fct_##A, "pup", a, b, c); \
}
SUPER()
#undef GO
static void* find_unicode_general_category_Fct(void* fct)
{
if (!fct) return NULL;
if (GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if (my_unicode_general_category_fct_##A == (uintptr_t)fct) return my_unicode_general_category_##A;
SUPER()
#undef GO
#define GO(A) if (my_unicode_general_category_fct_##A == 0) {my_unicode_general_category_fct_##A = (uintptr_t)fct; return my_unicode_general_category_##A;}
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for libharfbuzz unicode general category callback\n");
return NULL;
}
// unicode mirroring
#define GO(A) \
static uintptr_t my_unicode_mirroring_fct_##A = 0; \
static uint32_t my_unicode_mirroring_##A(void* a, uint32_t b, void* c) \
{ \
return (uint32_t)RunFunctionFmt(my_unicode_mirroring_fct_##A, "pup", a, b, c); \
}
SUPER()
#undef GO
static void* find_unicode_mirroring_Fct(void* fct)
{
if (!fct) return NULL;
if (GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if (my_unicode_mirroring_fct_##A == (uintptr_t)fct) return my_unicode_mirroring_##A;
SUPER()
#undef GO
#define GO(A) if (my_unicode_mirroring_fct_##A == 0) {my_unicode_mirroring_fct_##A = (uintptr_t)fct; return my_unicode_mirroring_##A;}
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for libharfbuzz unicode mirroring callback\n");
return NULL;
}
// unicode script
#define GO(A) \
static uintptr_t my_unicode_script_fct_##A = 0; \
static uint32_t my_unicode_script_##A(void* a, uint32_t b, void* c) \
{ \
return (uint32_t)RunFunctionFmt(my_unicode_script_fct_##A, "pup", a, b, c); \
}
SUPER()
#undef GO
static void* find_unicode_script_Fct(void* fct)
{
if (!fct) return NULL;
if (GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if (my_unicode_script_fct_##A == (uintptr_t)fct) return my_unicode_script_##A;
SUPER()
#undef GO
#define GO(A) if (my_unicode_script_fct_##A == 0) {my_unicode_script_fct_##A = (uintptr_t)fct; return my_unicode_script_##A;}
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for libharfbuzz unicode script callback\n");
return NULL;
}
// font extents
#define GO(A) \
static uintptr_t my_font_extents_fct_##A = 0; \
static int my_font_extents_##A(void* a, void* b, void* c, void* d) \
{ \
return (int)RunFunctionFmt(my_font_extents_fct_##A, "pppp", a, b, c, d); \
}
SUPER()
#undef GO
static void* find_font_extents_Fct(void* fct)
{
if (!fct) return NULL;
if (GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if (my_font_extents_fct_##A == (uintptr_t)fct) return my_font_extents_##A;
SUPER()
#undef GO
#define GO(A) if (my_font_extents_fct_##A == 0) {my_font_extents_fct_##A = (uintptr_t)fct; return my_font_extents_##A;}
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for libharfbuzz font extents callback\n");
return NULL;
}
// glyph advance
#define GO(A) \
static uintptr_t my_glyph_advance_fct_##A = 0; \
static int my_glyph_advance_##A(void* a, void* b, uint32_t c, void* d) \
{ \
return (int)RunFunctionFmt(my_glyph_advance_fct_##A, "ppup", a, b, c, d); \
}
SUPER()
#undef GO
static void* find_glyph_advance_Fct(void* fct)
{
if (!fct) return NULL;
if (GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if (my_glyph_advance_fct_##A == (uintptr_t)fct) return my_glyph_advance_##A;
SUPER()
#undef GO
#define GO(A) if (my_glyph_advance_fct_##A == 0) {my_glyph_advance_fct_##A = (uintptr_t)fct; return my_glyph_advance_##A;}
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for libharfbuzz glyph advance callback\n");
return NULL;
}
// glyph advances
#define GO(A) \
static uintptr_t my_glyph_advances_fct_##A = 0; \
static void my_glyph_advances_##A(void* a, void* b, uint32_t c, void* d, uint32_t e, void* f, uint32_t g, void* h) \
{ \
RunFunctionFmt(my_glyph_advances_fct_##A, "ppupupup", a, b, c, d, e, f, g, h); \
}
SUPER()
#undef GO
static void* find_glyph_advances_Fct(void* fct)
{
if (!fct) return NULL;
if (GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if (my_glyph_advances_fct_##A == (uintptr_t)fct) return my_glyph_advances_##A;
SUPER()
#undef GO
#define GO(A) if (my_glyph_advances_fct_##A == 0) {my_glyph_advances_fct_##A = (uintptr_t)fct; return my_glyph_advances_##A;}
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for libharfbuzz glyph advances callback\n");
return NULL;
}
// glyph kerning
#define GO(A) \
static uintptr_t my_glyph_kerning_fct_##A = 0; \
static int my_glyph_kerning_##A(void* a, void* b, uint32_t c, uint32_t d, void* e) \
{ \
return (int)RunFunctionFmt(my_glyph_kerning_fct_##A, "ppuup", a, b, c, d, e); \
}
SUPER()
#undef GO
static void* find_glyph_kerning_Fct(void* fct)
{
if (!fct) return NULL;
if (GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if (my_glyph_kerning_fct_##A == (uintptr_t)fct) return my_glyph_kerning_##A;
SUPER()
#undef GO
#define GO(A) if (my_glyph_kerning_fct_##A == 0) {my_glyph_kerning_fct_##A = (uintptr_t)fct; return my_glyph_kerning_##A;}
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for libharfbuzz glyph kerning callback\n");
return NULL;
}
// glyph origin
#define GO(A) \
static uintptr_t my_glyph_origin_fct_##A = 0; \
static int my_glyph_origin_##A(void* a, void* b, uint32_t c, void* d, void* e, void* f) \
{ \
return (int)RunFunctionFmt(my_glyph_origin_fct_##A, "ppuppp", a, b, c, d, e, f); \
}
SUPER()
#undef GO
static void* find_glyph_origin_Fct(void* fct)
{
if (!fct) return NULL;
if (GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if (my_glyph_origin_fct_##A == (uintptr_t)fct) return my_glyph_origin_##A;
SUPER()
#undef GO
#define GO(A) if (my_glyph_origin_fct_##A == 0) {my_glyph_origin_fct_##A = (uintptr_t)fct; return my_glyph_origin_##A;}
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for libharfbuzz glyph origin callback\n");
return NULL;
}
// glyph contour point
#define GO(A) \
static uintptr_t my_glyph_contour_pointfct_##A = 0; \
static int my_glyph_contour_point##A(void* a, void* b, uint32_t c, uint32_t d, void* e, void* f, void* g) \
{ \
return (int)RunFunctionFmt(my_glyph_contour_pointfct_##A, "ppuuppp", a, b, c, d, e, f, g); \
}
SUPER()
#undef GO
static void* find_glyph_contour_point_Fct(void* fct)
{
if (!fct) return NULL;
if (GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if (my_glyph_contour_pointfct_##A == (uintptr_t)fct) return my_glyph_contour_point##A;
SUPER()
#undef GO
#define GO(A) if (my_glyph_contour_pointfct_##A == 0) {my_glyph_contour_pointfct_##A = (uintptr_t)fct; return my_glyph_contour_point##A;}
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for libharfbuzz glyph contour point callback\n");
return NULL;
}
// glyph extents
#define GO(A) \
static uintptr_t my_glyph_extents_fct_##A = 0; \
static int my_glyph_extents_##A(void* a, void* b, uint32_t c, void* d, void* e) \
{ \
return (int)RunFunctionFmt(my_glyph_extents_fct_##A, "ppupp", a, b, c, d, e); \
}
SUPER()
#undef GO
static void* find_glyph_extents_Fct(void* fct)
{
if (!fct) return NULL;
if (GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if (my_glyph_extents_fct_##A == (uintptr_t)fct) return my_glyph_extents_##A;
SUPER()
#undef GO
#define GO(A) if (my_glyph_extents_fct_##A == 0) {my_glyph_extents_fct_##A = (uintptr_t)fct; return my_glyph_extents_##A;}
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for libharfbuzz glyph extents callback\n");
return NULL;
}
// glyph from name
#define GO(A) \
static uintptr_t my_glyph_from_name_fct_##A = 0; \
static int my_glyph_from_name_##A(void* a, void* b, void* c, int d, void* e, void* f) \
{ \
return (int)RunFunctionFmt(my_glyph_from_name_fct_##A, "pppipp", a, b, c, d, e, f); \
}
SUPER()
#undef GO
static void* find_glyph_from_name_Fct(void* fct)
{
if (!fct) return NULL;
if (GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if (my_glyph_from_name_fct_##A == (uintptr_t)fct) return my_glyph_from_name_##A;
SUPER()
#undef GO
#define GO(A) if (my_glyph_from_name_fct_##A == 0) {my_glyph_from_name_fct_##A = (uintptr_t)fct; return my_glyph_from_name_##A;}
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for libharfbuzz glyph from name callback\n");
return NULL;
}
// glyph
#define GO(A) \
static uintptr_t my_glyph_fct_##A = 0; \
static int my_glyph_##A(void* a, void* b, uint32_t c, uint32_t d, void* e, void* f) \
{ \
return (int)RunFunctionFmt(my_glyph_fct_##A, "ppuupp", a, b, c, d, e, f); \
}
SUPER()
#undef GO
static void* find_glyph_Fct(void* fct)
{
if (!fct) return NULL;
if (GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if (my_glyph_fct_##A == (uintptr_t)fct) return my_glyph_##A;
SUPER()
#undef GO
#define GO(A) if (my_glyph_fct_##A == 0) {my_glyph_fct_##A = (uintptr_t)fct; return my_glyph_##A;}
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for libharfbuzz glyph callback\n");
return NULL;
}
// glyph name
#define GO(A) \
static uintptr_t my_glyph_name_fct_##A = 0; \
static int my_glyph_name_##A(void* a, void* b, uint32_t c, void* d, uint32_t e, void* f) \
{ \
return (int)RunFunctionFmt(my_glyph_name_fct_##A, "ppupup", a, b, c, d, e, f); \
}
SUPER()
#undef GO
static void* find_glyph_name_Fct(void* fct)
{
if (!fct) return NULL;
if (GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if (my_glyph_name_fct_##A == (uintptr_t)fct) return my_glyph_name_##A;
SUPER()
#undef GO
#define GO(A) if (my_glyph_name_fct_##A == 0) {my_glyph_name_fct_##A = (uintptr_t)fct; return my_glyph_name_##A;}
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for libharfbuzz glyph origin callback\n");
return NULL;
}
// glyph shape
#define GO(A) \
static uintptr_t my_glyph_shape_fct_##A = 0; \
static void my_glyph_shape_##A(void* a, void* b, uint32_t c, void* d, void* e, void* f) \
{ \
RunFunctionFmt(my_glyph_shape_fct_##A, "ppuppp", a, b, c, d, e, f); \
}
SUPER()
#undef GO
static void* find_glyph_shape_Fct(void* fct)
{
if (!fct) return NULL;
if (GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if (my_glyph_shape_fct_##A == (uintptr_t)fct) return my_glyph_shape_##A;
SUPER()
#undef GO
#define GO(A) if (my_glyph_shape_fct_##A == 0) {my_glyph_shape_fct_##A = (uintptr_t)fct; return my_glyph_shape_##A;}
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for libharfbuzz glyph shape callback\n");
return NULL;
}
// nominal glyph
#define GO(A) \
static uintptr_t my_nominal_glyph_fct_##A = 0; \
static int my_nominal_glyph_##A(void* a, void* b, uint32_t c, void* d, void* e) \
{ \
return (int)RunFunctionFmt(my_nominal_glyph_fct_##A, "ppupp", a, b, c, d, e); \
}
SUPER()
#undef GO
static void* find_nominal_glyph_Fct(void* fct)
{
if (!fct) return NULL;
if (GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if (my_nominal_glyph_fct_##A == (uintptr_t)fct) return my_nominal_glyph_##A;
SUPER()
#undef GO
#define GO(A) if (my_nominal_glyph_fct_##A == 0) {my_nominal_glyph_fct_##A = (uintptr_t)fct; return my_nominal_glyph_##A;}
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for libharfbuzz nominal glyph callback\n");
return NULL;
}
// nominal glyphs
#define GO(A) \
static uintptr_t my_nominal_glyphs_fct_##A = 0; \
static uint32_t my_nominal_glyphs_##A(void* a, void* b, uint32_t c, void* d, uint32_t e, void* f, uint32_t g, void* h) \
{ \
return (uint32_t)RunFunctionFmt(my_nominal_glyphs_fct_##A, "ppupupup", a, b, c, d, e, f, g, h); \
}
SUPER()
#undef GO
static void* find_nominal_glyphs_Fct(void* fct)
{
if (!fct) return NULL;
if (GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if (my_nominal_glyphs_fct_##A == (uintptr_t)fct) return my_nominal_glyphs_##A;
SUPER()
#undef GO
#define GO(A) if (my_nominal_glyphs_fct_##A == 0) {my_nominal_glyphs_fct_##A = (uintptr_t)fct; return my_nominal_glyphs_##A;}
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for libharfbuzz nominal glyphs callback\n");
return NULL;
}
// variation glyph
#define GO(A) \
static uintptr_t my_variation_glyph_fct_##A = 0;\
static int my_variation_glyph_##A(void* a, void* b, uint32_t c, uint32_t d, void* e, void* f) \
{ \
return (int)RunFunctionFmt(my_variation_glyph_fct_##A, "ppuupp", a, b, c, d, e, f); \
}
SUPER()
#undef GO
static void* find_variation_glyph_Fct(void* fct)
{
if (!fct) return NULL;
if (GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if (my_variation_glyph_fct_##A == (uintptr_t)fct) return my_variation_glyph_##A;
SUPER()
#undef GO
#define GO(A) if (my_variation_glyph_fct_##A == 0) {my_variation_glyph_fct_##A = (uintptr_t)fct; return my_variation_glyph_##A;}
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for libharfbuzz variation glyph callback\n");
return NULL;
}
// destroy
#define GO(A) \
static uintptr_t my_destroy_fct_##A = 0; \
static void my_destroy_##A(void* a) \
{ \
RunFunctionFmt(my_destroy_fct_##A, "p", a); \
}
SUPER()
#undef GO
static void* find_destroy_Fct(void* fct)
{
if (!fct) return NULL;
if (GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if (my_destroy_fct_##A == (uintptr_t)fct) return my_destroy_##A;
SUPER()
#undef GO
#define GO(A) if (my_destroy_fct_##A == 0) {my_destroy_fct_##A = (uintptr_t)fct; return my_destroy_##A;}
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for libharfbuzz destroy callback\n");
return NULL;
}
#undef SUPER
#define FUNC(A) \
EXPORT void* my_##A(x64emu_t* emu, void* data, uint32_t length, uint32_t mode, void* user_data, void* destroy) \
{ \
(void)emu; \
return my->A(data, length, mode, user_data, find_destroy_Fct(destroy)); \
}
FUNC(hb_blob_create)
FUNC(hb_blob_create_or_fail)
#undef FUNC
#define FUNC(A) \
EXPORT int my_##A(x64emu_t* emu, void* blob, void* key, void* data, void* destroy, int replace) \
{ \
(void)emu; \
return (int)my->A(blob, key, data, find_destroy_Fct(destroy), replace); \
}
FUNC(hb_blob_set_user_data)
FUNC(hb_buffer_set_user_data)
#undef FUNC
#define FUNC(A) \
EXPORT void my_##A(x64emu_t* emu, void* buffer, void* func, void* user_data, void* destroy) \
{ \
(void)emu; \
my->A(buffer, find_buffer_message_Fct(func), user_data, find_destroy_Fct(destroy)); \
}
FUNC(hb_buffer_set_message_func)
#undef FUNC
EXPORT void my_hb_draw_funcs_destroy(x64emu_t* emu, void* funcs)
{
(void)emu;
struct hb_draw_funcs_t__destroy destroy = {0};
struct hb_draw_funcs_t* funcs_ = funcs;
#define HB_DRAW_FUNC_IMPLEMENT(name) \
if (funcs_->destroy->name) destroy.name = find_destroy_Fct(funcs_->destroy->name);
HB_DRAW_FUNCS_IMPLEMENT_CALLBACKS
#undef HB_DRAW_FUNC_IMPLEMENT
struct hb_draw_funcs_t__destroy* original = funcs_->destroy;
funcs_->destroy = &destroy;
my->hb_draw_funcs_destroy(funcs);
funcs_->destroy = original;
}
EXPORT void my_hb_draw_funcs_set_close_path_func(x64emu_t* emu, void* funcs, void* func, void* user_data, void* destroy)
{
(void)emu;
my->hb_draw_funcs_set_close_path_func(funcs, find_draw_close_path_Fct(func), user_data, find_destroy_Fct(destroy));
}
EXPORT void my_hb_draw_funcs_set_cubic_to_func(x64emu_t* emu, void* funcs, void* func, void* user_data, void* destroy)
{
(void)emu;
my->hb_draw_funcs_set_cubic_to_func(funcs, find_draw_cubic_to_Fct(func), user_data, find_destroy_Fct(destroy));
}
#define FUNC(A) \
EXPORT void my_##A(x64emu_t* emu, void* buffer, void* func, void* user_data, void* destroy) \
{ \
(void)emu; \
my->A(buffer, find_draw_line_or_move_to_Fct(func), user_data, find_destroy_Fct(destroy)); \
}
FUNC(hb_draw_funcs_set_line_to_func)
FUNC(hb_draw_funcs_set_move_to_func)
#undef FUNC
EXPORT void my_hb_draw_funcs_set_quadratic_to_func(x64emu_t* emu, void* funcs, void* func, void* user_data, void* destroy)
{
(void)emu;
my->hb_draw_funcs_set_quadratic_to_func(funcs, find_draw_quadratic_to_Fct(func), user_data, find_destroy_Fct(destroy));
}
EXPORT void* my_hb_face_create_for_tables(x64emu_t* emu, void* func, void* user_data, void* destroy)
{
(void)emu;
return my->hb_face_create_for_tables(find_reference_table_Fct(func), user_data, find_destroy_Fct(destroy));
}
EXPORT int my_hb_face_set_user_data(x64emu_t* emu, void* face, void* key, void* data, void* destroy, int replace)
{
(void)emu;
return (int)my->hb_face_set_user_data(face, key, data, find_destroy_Fct(destroy), replace);
}
EXPORT void my_hb_font_funcs_destroy(x64emu_t* emu, void* funcs)
{
(void)emu;
struct hb_font_funcs_t__destroy destroy = {0};
struct hb_font_funcs_t* funcs_ = funcs;
#define HB_FONT_FUNC_IMPLEMENT(get_,name) \
if (funcs_->destroy->name) destroy.name = find_destroy_Fct(funcs_->destroy->name);
HB_FONT_FUNCS_IMPLEMENT_CALLBACKS
#undef HB_FONT_FUNC_IMPLEMENT
struct hb_font_funcs_t__destroy* original = funcs_->destroy;
funcs_->destroy = &destroy;
my->hb_font_funcs_destroy(funcs);
funcs_->destroy = original;
}
EXPORT void my_hb_unicode_funcs_destroy(x64emu_t* emu, void* funcs)
{
(void)emu;
struct hb_unicode_funcs_t__destroy destroy = {0};
struct hb_unicode_funcs_t* funcs_ = funcs;
#define HB_UNICODE_FUNC_IMPLEMENT(name) \
if (funcs_->destroy.name) destroy.name = find_destroy_Fct(funcs_->destroy.name);
HB_UNICODE_FUNCS_IMPLEMENT_CALLBACKS
#undef HB_UNICODE_FUNC_IMPLEMENT
struct hb_unicode_funcs_t__destroy original = funcs_->destroy;
funcs_->destroy = destroy;
my->hb_font_funcs_destroy(funcs);
funcs_->destroy = original;
}
EXPORT void my_hb_unicode_funcs_set_combining_class_func(x64emu_t* emu, void* funcs, void* func, void* user_data, void* destroy)
{
(void)emu;
my->hb_unicode_funcs_set_combining_class_func(funcs, find_unicode_combining_class_Fct(func), user_data, find_destroy_Fct(destroy));
}
EXPORT void my_hb_unicode_funcs_set_compose_func(x64emu_t* emu, void* funcs, void* func, void* user_data, void* destroy)
{
(void)emu;
my->hb_unicode_funcs_set_compose_func(funcs, find_unicode_compose_Fct(func), user_data, find_destroy_Fct(destroy));
}
EXPORT void my_hb_unicode_funcs_set_decompose_compatibility_func(x64emu_t* emu, void* funcs, void* func, void* user_data, void* destroy)
{
(void)emu;
my->hb_unicode_funcs_set_decompose_compatibility_func(funcs, find_unicode_decompose_compatibility_Fct(func), user_data, find_destroy_Fct(destroy));
}
EXPORT void my_hb_unicode_funcs_set_decompose_func(x64emu_t* emu, void* funcs, void* func, void* user_data, void* destroy)
{
(void)emu;
my->hb_unicode_funcs_set_decompose_func(funcs, find_unicode_decompose_Fct(func), user_data, find_destroy_Fct(destroy));
}
EXPORT void my_hb_unicode_funcs_set_eastasian_width_func(x64emu_t* emu, void* funcs, void* func, void* user_data, void* destroy)
{
(void)emu;
my->hb_unicode_funcs_set_eastasian_width_func(funcs, find_unicode_eastasian_width_Fct(func), user_data, find_destroy_Fct(destroy));
}
EXPORT void my_hb_unicode_funcs_set_general_category_func(x64emu_t* emu, void* funcs, void* func, void* user_data, void* destroy)
{
(void)emu;
my->hb_unicode_funcs_set_general_category_func(funcs, find_unicode_general_category_Fct(func), user_data, find_destroy_Fct(destroy));
}
EXPORT void my_hb_unicode_funcs_set_mirroring_func(x64emu_t* emu, void* funcs, void* func, void* user_data, void* destroy)
{
(void)emu;
my->hb_unicode_funcs_set_mirroring_func(funcs, find_unicode_mirroring_Fct(func), user_data, find_destroy_Fct(destroy));
}
EXPORT void my_hb_unicode_funcs_set_script_func(x64emu_t* emu, void* funcs, void* func, void* user_data, void* destroy)
{
(void)emu;
my->hb_unicode_funcs_set_script_func(funcs, find_unicode_script_Fct(func), user_data, find_destroy_Fct(destroy));
}
EXPORT int my_hb_unicode_funcs_set_user_data(x64emu_t* emu, void* funcs, void* key, void* data, void* destroy, int replace)
{
(void)emu;
return (int)my->hb_unicode_funcs_set_user_data(funcs, key, data, find_destroy_Fct(destroy), replace);
}
#define FUNC(A) \
EXPORT void my_##A(x64emu_t* emu, void* funcs, void* func, void* user_data, void* destroy) \
{ \
(void)emu; \
my->A(funcs, find_font_extents_Fct(func), user_data, find_destroy_Fct(destroy));\
}
FUNC(hb_font_funcs_set_font_h_extents_func)
FUNC(hb_font_funcs_set_font_v_extents_func)
#undef FUNC
#define FUNC(A) \
EXPORT void my_##A(x64emu_t* emu, void* funcs, void* func, void* user_data, void* destroy) \
{ \
(void)emu; \
my->A(funcs, find_glyph_advance_Fct(func), user_data, find_destroy_Fct(destroy)); \
}
FUNC(hb_font_funcs_set_glyph_h_advance_func)
FUNC(hb_font_funcs_set_glyph_v_advance_func)
#undef FUNC
#define FUNC(A) \
EXPORT void my_##A(x64emu_t* emu, void* funcs, void* func, void* user_data, void* destroy) \
{ \
(void)emu; \
my->A(funcs, find_glyph_advances_Fct(func), user_data, find_destroy_Fct(destroy)); \
}
FUNC(hb_font_funcs_set_glyph_h_advances_func)
FUNC(hb_font_funcs_set_glyph_v_advances_func)
#undef FUNC
#define FUNC(A) \
EXPORT void my_##A(x64emu_t* emu, void* funcs, void* func, void* user_data, void* destroy) \
{ \
(void)emu; \
my->A(funcs, find_glyph_kerning_Fct(func), user_data, find_destroy_Fct(destroy)); \
}
FUNC(hb_font_funcs_set_glyph_h_kerning_func)
FUNC(hb_font_funcs_set_glyph_v_kerning_func)
#undef FUNC
#define FUNC(A) \
EXPORT void my_##A(x64emu_t* emu, void* funcs, void* func, void* user_data, void* destroy) \
{ \
(void)emu; \
my->A(funcs, find_glyph_origin_Fct(func), user_data, find_destroy_Fct(destroy));\
}
FUNC(hb_font_funcs_set_glyph_h_origin_func)
FUNC(hb_font_funcs_set_glyph_v_origin_func)
#undef FUNC
EXPORT void my_hb_font_funcs_set_glyph_contour_point_func(x64emu_t* emu, void* funcs, void* func, void* user_data, void* destroy)
{
(void)emu;
my->hb_font_funcs_set_glyph_contour_point_func(funcs, find_glyph_contour_point_Fct(func), user_data, find_destroy_Fct(destroy));
}
EXPORT void my_hb_font_funcs_set_glyph_extents_func(x64emu_t* emu, void* funcs, void* func, void* user_data, void* destroy)
{
(void)emu;
my->hb_font_funcs_set_glyph_extents_func(funcs, find_glyph_extents_Fct(func), user_data, find_destroy_Fct(destroy));
}
EXPORT void my_hb_font_funcs_set_glyph_from_name_func(x64emu_t* emu, void* funcs, void* func, void* user_data, void* destroy)
{
(void)emu;
my->hb_font_funcs_set_glyph_from_name_func(funcs, find_glyph_from_name_Fct(func), user_data, find_destroy_Fct(destroy));
}
EXPORT void my_hb_font_funcs_set_glyph_func(x64emu_t* emu, void* funcs, void* func, void* user_data, void* destroy)
{
(void)emu;
my->hb_font_funcs_set_glyph_func(funcs, find_glyph_Fct(func), user_data, find_destroy_Fct(destroy));
}
EXPORT void my_hb_font_funcs_set_glyph_name_func(x64emu_t* emu, void* funcs, void* func, void* user_data, void* destroy)
{
(void)emu;
my->hb_font_funcs_set_glyph_name_func(funcs, find_glyph_name_Fct(func), user_data, find_destroy_Fct(destroy));
}
EXPORT void my_hb_font_funcs_set_glyph_shape_func(x64emu_t* emu, void* funcs, void* func, void* user_data, void* destroy)
{
(void)emu;
my->hb_font_funcs_set_glyph_shape_func(funcs, find_glyph_shape_Fct(func), user_data, find_destroy_Fct(destroy));
}
EXPORT void my_hb_font_funcs_set_nominal_glyph_func(x64emu_t* emu, void* funcs, void* func, void* user_data, void* destroy)
{
(void)emu;
my->hb_font_funcs_set_nominal_glyph_func(funcs, find_nominal_glyph_Fct(func), user_data, find_destroy_Fct(destroy));
}
EXPORT void my_hb_font_funcs_set_nominal_glyphs_func(x64emu_t* emu, void* funcs, void* func, void* user_data, void* destroy)
{
(void)emu;
my->hb_font_funcs_set_nominal_glyphs_func(funcs, find_nominal_glyphs_Fct(func), user_data, find_destroy_Fct(destroy));
}
EXPORT void my_hb_font_funcs_set_variation_glyph_func(x64emu_t* emu, void* funcs, void* func, void* user_data, void* destroy)
{
(void)emu;
my->hb_font_funcs_set_variation_glyph_func(funcs, find_variation_glyph_Fct(func), user_data, find_destroy_Fct(destroy));
}
EXPORT int my_hb_font_funcs_set_user_data(x64emu_t* emu, void* funcs, void* key, void* data, void* destroy, int replace)
{
(void)emu;
return (int)my->hb_font_funcs_set_user_data(funcs, key, data, find_destroy_Fct(destroy), replace);
}
EXPORT void my_hb_font_set_funcs(x64emu_t* emu, void* font, void* klass, void* data, void* destroy)
{
(void)emu;
my->hb_font_set_funcs(font, klass, data, find_destroy_Fct(destroy));
}
EXPORT void my_hb_font_set_funcs_data(x64emu_t* emu, void* font, void* data, void* destroy)
{
(void)emu;
my->hb_font_set_funcs_data(font, data, find_destroy_Fct(destroy));
}
EXPORT int my_hb_font_set_user_data(x64emu_t* emu, void* font, void* key, void* data, void* destroy, int replace)
{
(void)emu;
return (int)my->hb_font_set_user_data(font, key, data, find_destroy_Fct(destroy), replace);
}
EXPORT void* my_hb_ft_face_create(x64emu_t* emu, void* face, void* destroy)
{
(void)emu;
return my->hb_ft_face_create(face, find_destroy_Fct(destroy));
}
EXPORT void* my_hb_ft_font_create(x64emu_t* emu, void* face, void* destroy)
{
(void)emu;
return my->hb_ft_font_create(face, find_destroy_Fct(destroy));
}
#include "wrappedlib_init.h"
|