-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibSceFreeTypeOl.c
2770 lines (2423 loc) · 115 KB
/
libSceFreeTypeOl.c
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
/*
This file was generated by genstub.py, do not edit manually!
*/
int sprx_dlsym(unsigned int handle, const char *nid, void *addr);
int sprx_dlopen(const char* libname, unsigned short *handle);
int sprx_dlclose(unsigned int handle);
static __attribute__ ((used)) void* __ptr_FTA_Add_Module;
asm(".intel_syntax noprefix\n"
".global FTA_Add_Module\n"
".type FTA_Add_Module @function\n"
"FTA_Add_Module:\n"
"jmp qword ptr [rip + __ptr_FTA_Add_Module]\n");
static __attribute__ ((used)) void* __ptr_FTA_Add_Module_autofitter;
asm(".intel_syntax noprefix\n"
".global FTA_Add_Module_autofitter\n"
".type FTA_Add_Module_autofitter @function\n"
"FTA_Add_Module_autofitter:\n"
"jmp qword ptr [rip + __ptr_FTA_Add_Module_autofitter]\n");
static __attribute__ ((used)) void* __ptr_FTA_Add_Module_bdf;
asm(".intel_syntax noprefix\n"
".global FTA_Add_Module_bdf\n"
".type FTA_Add_Module_bdf @function\n"
"FTA_Add_Module_bdf:\n"
"jmp qword ptr [rip + __ptr_FTA_Add_Module_bdf]\n");
static __attribute__ ((used)) void* __ptr_FTA_Add_Module_cff;
asm(".intel_syntax noprefix\n"
".global FTA_Add_Module_cff\n"
".type FTA_Add_Module_cff @function\n"
"FTA_Add_Module_cff:\n"
"jmp qword ptr [rip + __ptr_FTA_Add_Module_cff]\n");
static __attribute__ ((used)) void* __ptr_FTA_Add_Module_gxvalid;
asm(".intel_syntax noprefix\n"
".global FTA_Add_Module_gxvalid\n"
".type FTA_Add_Module_gxvalid @function\n"
"FTA_Add_Module_gxvalid:\n"
"jmp qword ptr [rip + __ptr_FTA_Add_Module_gxvalid]\n");
static __attribute__ ((used)) void* __ptr_FTA_Add_Module_otvalid;
asm(".intel_syntax noprefix\n"
".global FTA_Add_Module_otvalid\n"
".type FTA_Add_Module_otvalid @function\n"
"FTA_Add_Module_otvalid:\n"
"jmp qword ptr [rip + __ptr_FTA_Add_Module_otvalid]\n");
static __attribute__ ((used)) void* __ptr_FTA_Add_Module_pcf;
asm(".intel_syntax noprefix\n"
".global FTA_Add_Module_pcf\n"
".type FTA_Add_Module_pcf @function\n"
"FTA_Add_Module_pcf:\n"
"jmp qword ptr [rip + __ptr_FTA_Add_Module_pcf]\n");
static __attribute__ ((used)) void* __ptr_FTA_Add_Module_pfr;
asm(".intel_syntax noprefix\n"
".global FTA_Add_Module_pfr\n"
".type FTA_Add_Module_pfr @function\n"
"FTA_Add_Module_pfr:\n"
"jmp qword ptr [rip + __ptr_FTA_Add_Module_pfr]\n");
static __attribute__ ((used)) void* __ptr_FTA_Add_Module_psaux;
asm(".intel_syntax noprefix\n"
".global FTA_Add_Module_psaux\n"
".type FTA_Add_Module_psaux @function\n"
"FTA_Add_Module_psaux:\n"
"jmp qword ptr [rip + __ptr_FTA_Add_Module_psaux]\n");
static __attribute__ ((used)) void* __ptr_FTA_Add_Module_pshinter;
asm(".intel_syntax noprefix\n"
".global FTA_Add_Module_pshinter\n"
".type FTA_Add_Module_pshinter @function\n"
"FTA_Add_Module_pshinter:\n"
"jmp qword ptr [rip + __ptr_FTA_Add_Module_pshinter]\n");
static __attribute__ ((used)) void* __ptr_FTA_Add_Module_psnames;
asm(".intel_syntax noprefix\n"
".global FTA_Add_Module_psnames\n"
".type FTA_Add_Module_psnames @function\n"
"FTA_Add_Module_psnames:\n"
"jmp qword ptr [rip + __ptr_FTA_Add_Module_psnames]\n");
static __attribute__ ((used)) void* __ptr_FTA_Add_Module_raster1;
asm(".intel_syntax noprefix\n"
".global FTA_Add_Module_raster1\n"
".type FTA_Add_Module_raster1 @function\n"
"FTA_Add_Module_raster1:\n"
"jmp qword ptr [rip + __ptr_FTA_Add_Module_raster1]\n");
static __attribute__ ((used)) void* __ptr_FTA_Add_Module_raster5;
asm(".intel_syntax noprefix\n"
".global FTA_Add_Module_raster5\n"
".type FTA_Add_Module_raster5 @function\n"
"FTA_Add_Module_raster5:\n"
"jmp qword ptr [rip + __ptr_FTA_Add_Module_raster5]\n");
static __attribute__ ((used)) void* __ptr_FTA_Add_Module_sfnt;
asm(".intel_syntax noprefix\n"
".global FTA_Add_Module_sfnt\n"
".type FTA_Add_Module_sfnt @function\n"
"FTA_Add_Module_sfnt:\n"
"jmp qword ptr [rip + __ptr_FTA_Add_Module_sfnt]\n");
static __attribute__ ((used)) void* __ptr_FTA_Add_Module_smooth;
asm(".intel_syntax noprefix\n"
".global FTA_Add_Module_smooth\n"
".type FTA_Add_Module_smooth @function\n"
"FTA_Add_Module_smooth:\n"
"jmp qword ptr [rip + __ptr_FTA_Add_Module_smooth]\n");
static __attribute__ ((used)) void* __ptr_FTA_Add_Module_smooth_lcd;
asm(".intel_syntax noprefix\n"
".global FTA_Add_Module_smooth_lcd\n"
".type FTA_Add_Module_smooth_lcd @function\n"
"FTA_Add_Module_smooth_lcd:\n"
"jmp qword ptr [rip + __ptr_FTA_Add_Module_smooth_lcd]\n");
static __attribute__ ((used)) void* __ptr_FTA_Add_Module_smooth_lcdv;
asm(".intel_syntax noprefix\n"
".global FTA_Add_Module_smooth_lcdv\n"
".type FTA_Add_Module_smooth_lcdv @function\n"
"FTA_Add_Module_smooth_lcdv:\n"
"jmp qword ptr [rip + __ptr_FTA_Add_Module_smooth_lcdv]\n");
static __attribute__ ((used)) void* __ptr_FTA_Add_Module_t1cid;
asm(".intel_syntax noprefix\n"
".global FTA_Add_Module_t1cid\n"
".type FTA_Add_Module_t1cid @function\n"
"FTA_Add_Module_t1cid:\n"
"jmp qword ptr [rip + __ptr_FTA_Add_Module_t1cid]\n");
static __attribute__ ((used)) void* __ptr_FTA_Add_Module_truetype;
asm(".intel_syntax noprefix\n"
".global FTA_Add_Module_truetype\n"
".type FTA_Add_Module_truetype @function\n"
"FTA_Add_Module_truetype:\n"
"jmp qword ptr [rip + __ptr_FTA_Add_Module_truetype]\n");
static __attribute__ ((used)) void* __ptr_FTA_Add_Module_type1;
asm(".intel_syntax noprefix\n"
".global FTA_Add_Module_type1\n"
".type FTA_Add_Module_type1 @function\n"
"FTA_Add_Module_type1:\n"
"jmp qword ptr [rip + __ptr_FTA_Add_Module_type1]\n");
static __attribute__ ((used)) void* __ptr_FTA_Add_Module_type42;
asm(".intel_syntax noprefix\n"
".global FTA_Add_Module_type42\n"
".type FTA_Add_Module_type42 @function\n"
"FTA_Add_Module_type42:\n"
"jmp qword ptr [rip + __ptr_FTA_Add_Module_type42]\n");
static __attribute__ ((used)) void* __ptr_FTA_Add_Module_winfonts;
asm(".intel_syntax noprefix\n"
".global FTA_Add_Module_winfonts\n"
".type FTA_Add_Module_winfonts @function\n"
"FTA_Add_Module_winfonts:\n"
"jmp qword ptr [rip + __ptr_FTA_Add_Module_winfonts]\n");
static __attribute__ ((used)) void* __ptr_FTA_Export_Module_autofitter;
asm(".intel_syntax noprefix\n"
".global FTA_Export_Module_autofitter\n"
".type FTA_Export_Module_autofitter @function\n"
"FTA_Export_Module_autofitter:\n"
"jmp qword ptr [rip + __ptr_FTA_Export_Module_autofitter]\n");
static __attribute__ ((used)) void* __ptr_FTA_Export_Module_bdf;
asm(".intel_syntax noprefix\n"
".global FTA_Export_Module_bdf\n"
".type FTA_Export_Module_bdf @function\n"
"FTA_Export_Module_bdf:\n"
"jmp qword ptr [rip + __ptr_FTA_Export_Module_bdf]\n");
static __attribute__ ((used)) void* __ptr_FTA_Export_Module_cff;
asm(".intel_syntax noprefix\n"
".global FTA_Export_Module_cff\n"
".type FTA_Export_Module_cff @function\n"
"FTA_Export_Module_cff:\n"
"jmp qword ptr [rip + __ptr_FTA_Export_Module_cff]\n");
static __attribute__ ((used)) void* __ptr_FTA_Export_Module_gxvalid;
asm(".intel_syntax noprefix\n"
".global FTA_Export_Module_gxvalid\n"
".type FTA_Export_Module_gxvalid @function\n"
"FTA_Export_Module_gxvalid:\n"
"jmp qword ptr [rip + __ptr_FTA_Export_Module_gxvalid]\n");
static __attribute__ ((used)) void* __ptr_FTA_Export_Module_otvalid;
asm(".intel_syntax noprefix\n"
".global FTA_Export_Module_otvalid\n"
".type FTA_Export_Module_otvalid @function\n"
"FTA_Export_Module_otvalid:\n"
"jmp qword ptr [rip + __ptr_FTA_Export_Module_otvalid]\n");
static __attribute__ ((used)) void* __ptr_FTA_Export_Module_pcf;
asm(".intel_syntax noprefix\n"
".global FTA_Export_Module_pcf\n"
".type FTA_Export_Module_pcf @function\n"
"FTA_Export_Module_pcf:\n"
"jmp qword ptr [rip + __ptr_FTA_Export_Module_pcf]\n");
static __attribute__ ((used)) void* __ptr_FTA_Export_Module_pfr;
asm(".intel_syntax noprefix\n"
".global FTA_Export_Module_pfr\n"
".type FTA_Export_Module_pfr @function\n"
"FTA_Export_Module_pfr:\n"
"jmp qword ptr [rip + __ptr_FTA_Export_Module_pfr]\n");
static __attribute__ ((used)) void* __ptr_FTA_Export_Module_psaux;
asm(".intel_syntax noprefix\n"
".global FTA_Export_Module_psaux\n"
".type FTA_Export_Module_psaux @function\n"
"FTA_Export_Module_psaux:\n"
"jmp qword ptr [rip + __ptr_FTA_Export_Module_psaux]\n");
static __attribute__ ((used)) void* __ptr_FTA_Export_Module_pshinter;
asm(".intel_syntax noprefix\n"
".global FTA_Export_Module_pshinter\n"
".type FTA_Export_Module_pshinter @function\n"
"FTA_Export_Module_pshinter:\n"
"jmp qword ptr [rip + __ptr_FTA_Export_Module_pshinter]\n");
static __attribute__ ((used)) void* __ptr_FTA_Export_Module_psnames;
asm(".intel_syntax noprefix\n"
".global FTA_Export_Module_psnames\n"
".type FTA_Export_Module_psnames @function\n"
"FTA_Export_Module_psnames:\n"
"jmp qword ptr [rip + __ptr_FTA_Export_Module_psnames]\n");
static __attribute__ ((used)) void* __ptr_FTA_Export_Module_raster1;
asm(".intel_syntax noprefix\n"
".global FTA_Export_Module_raster1\n"
".type FTA_Export_Module_raster1 @function\n"
"FTA_Export_Module_raster1:\n"
"jmp qword ptr [rip + __ptr_FTA_Export_Module_raster1]\n");
static __attribute__ ((used)) void* __ptr_FTA_Export_Module_raster5;
asm(".intel_syntax noprefix\n"
".global FTA_Export_Module_raster5\n"
".type FTA_Export_Module_raster5 @function\n"
"FTA_Export_Module_raster5:\n"
"jmp qword ptr [rip + __ptr_FTA_Export_Module_raster5]\n");
static __attribute__ ((used)) void* __ptr_FTA_Export_Module_sfnt;
asm(".intel_syntax noprefix\n"
".global FTA_Export_Module_sfnt\n"
".type FTA_Export_Module_sfnt @function\n"
"FTA_Export_Module_sfnt:\n"
"jmp qword ptr [rip + __ptr_FTA_Export_Module_sfnt]\n");
static __attribute__ ((used)) void* __ptr_FTA_Export_Module_smooth;
asm(".intel_syntax noprefix\n"
".global FTA_Export_Module_smooth\n"
".type FTA_Export_Module_smooth @function\n"
"FTA_Export_Module_smooth:\n"
"jmp qword ptr [rip + __ptr_FTA_Export_Module_smooth]\n");
static __attribute__ ((used)) void* __ptr_FTA_Export_Module_smooth_lcd;
asm(".intel_syntax noprefix\n"
".global FTA_Export_Module_smooth_lcd\n"
".type FTA_Export_Module_smooth_lcd @function\n"
"FTA_Export_Module_smooth_lcd:\n"
"jmp qword ptr [rip + __ptr_FTA_Export_Module_smooth_lcd]\n");
static __attribute__ ((used)) void* __ptr_FTA_Export_Module_smooth_lcdv;
asm(".intel_syntax noprefix\n"
".global FTA_Export_Module_smooth_lcdv\n"
".type FTA_Export_Module_smooth_lcdv @function\n"
"FTA_Export_Module_smooth_lcdv:\n"
"jmp qword ptr [rip + __ptr_FTA_Export_Module_smooth_lcdv]\n");
static __attribute__ ((used)) void* __ptr_FTA_Export_Module_t1cid;
asm(".intel_syntax noprefix\n"
".global FTA_Export_Module_t1cid\n"
".type FTA_Export_Module_t1cid @function\n"
"FTA_Export_Module_t1cid:\n"
"jmp qword ptr [rip + __ptr_FTA_Export_Module_t1cid]\n");
static __attribute__ ((used)) void* __ptr_FTA_Export_Module_truetype;
asm(".intel_syntax noprefix\n"
".global FTA_Export_Module_truetype\n"
".type FTA_Export_Module_truetype @function\n"
"FTA_Export_Module_truetype:\n"
"jmp qword ptr [rip + __ptr_FTA_Export_Module_truetype]\n");
static __attribute__ ((used)) void* __ptr_FTA_Export_Module_type1;
asm(".intel_syntax noprefix\n"
".global FTA_Export_Module_type1\n"
".type FTA_Export_Module_type1 @function\n"
"FTA_Export_Module_type1:\n"
"jmp qword ptr [rip + __ptr_FTA_Export_Module_type1]\n");
static __attribute__ ((used)) void* __ptr_FTA_Export_Module_type42;
asm(".intel_syntax noprefix\n"
".global FTA_Export_Module_type42\n"
".type FTA_Export_Module_type42 @function\n"
"FTA_Export_Module_type42:\n"
"jmp qword ptr [rip + __ptr_FTA_Export_Module_type42]\n");
static __attribute__ ((used)) void* __ptr_FTA_Export_Module_winfonts;
asm(".intel_syntax noprefix\n"
".global FTA_Export_Module_winfonts\n"
".type FTA_Export_Module_winfonts @function\n"
"FTA_Export_Module_winfonts:\n"
"jmp qword ptr [rip + __ptr_FTA_Export_Module_winfonts]\n");
static __attribute__ ((used)) void* __ptr_FTA_Remove_Module_autofitter;
asm(".intel_syntax noprefix\n"
".global FTA_Remove_Module_autofitter\n"
".type FTA_Remove_Module_autofitter @function\n"
"FTA_Remove_Module_autofitter:\n"
"jmp qword ptr [rip + __ptr_FTA_Remove_Module_autofitter]\n");
static __attribute__ ((used)) void* __ptr_FTA_Remove_Module_bdf;
asm(".intel_syntax noprefix\n"
".global FTA_Remove_Module_bdf\n"
".type FTA_Remove_Module_bdf @function\n"
"FTA_Remove_Module_bdf:\n"
"jmp qword ptr [rip + __ptr_FTA_Remove_Module_bdf]\n");
static __attribute__ ((used)) void* __ptr_FTA_Remove_Module_cff;
asm(".intel_syntax noprefix\n"
".global FTA_Remove_Module_cff\n"
".type FTA_Remove_Module_cff @function\n"
"FTA_Remove_Module_cff:\n"
"jmp qword ptr [rip + __ptr_FTA_Remove_Module_cff]\n");
static __attribute__ ((used)) void* __ptr_FTA_Remove_Module_gxvalid;
asm(".intel_syntax noprefix\n"
".global FTA_Remove_Module_gxvalid\n"
".type FTA_Remove_Module_gxvalid @function\n"
"FTA_Remove_Module_gxvalid:\n"
"jmp qword ptr [rip + __ptr_FTA_Remove_Module_gxvalid]\n");
static __attribute__ ((used)) void* __ptr_FTA_Remove_Module_otvalid;
asm(".intel_syntax noprefix\n"
".global FTA_Remove_Module_otvalid\n"
".type FTA_Remove_Module_otvalid @function\n"
"FTA_Remove_Module_otvalid:\n"
"jmp qword ptr [rip + __ptr_FTA_Remove_Module_otvalid]\n");
static __attribute__ ((used)) void* __ptr_FTA_Remove_Module_pcf;
asm(".intel_syntax noprefix\n"
".global FTA_Remove_Module_pcf\n"
".type FTA_Remove_Module_pcf @function\n"
"FTA_Remove_Module_pcf:\n"
"jmp qword ptr [rip + __ptr_FTA_Remove_Module_pcf]\n");
static __attribute__ ((used)) void* __ptr_FTA_Remove_Module_pfr;
asm(".intel_syntax noprefix\n"
".global FTA_Remove_Module_pfr\n"
".type FTA_Remove_Module_pfr @function\n"
"FTA_Remove_Module_pfr:\n"
"jmp qword ptr [rip + __ptr_FTA_Remove_Module_pfr]\n");
static __attribute__ ((used)) void* __ptr_FTA_Remove_Module_psaux;
asm(".intel_syntax noprefix\n"
".global FTA_Remove_Module_psaux\n"
".type FTA_Remove_Module_psaux @function\n"
"FTA_Remove_Module_psaux:\n"
"jmp qword ptr [rip + __ptr_FTA_Remove_Module_psaux]\n");
static __attribute__ ((used)) void* __ptr_FTA_Remove_Module_pshinter;
asm(".intel_syntax noprefix\n"
".global FTA_Remove_Module_pshinter\n"
".type FTA_Remove_Module_pshinter @function\n"
"FTA_Remove_Module_pshinter:\n"
"jmp qword ptr [rip + __ptr_FTA_Remove_Module_pshinter]\n");
static __attribute__ ((used)) void* __ptr_FTA_Remove_Module_psnames;
asm(".intel_syntax noprefix\n"
".global FTA_Remove_Module_psnames\n"
".type FTA_Remove_Module_psnames @function\n"
"FTA_Remove_Module_psnames:\n"
"jmp qword ptr [rip + __ptr_FTA_Remove_Module_psnames]\n");
static __attribute__ ((used)) void* __ptr_FTA_Remove_Module_raster1;
asm(".intel_syntax noprefix\n"
".global FTA_Remove_Module_raster1\n"
".type FTA_Remove_Module_raster1 @function\n"
"FTA_Remove_Module_raster1:\n"
"jmp qword ptr [rip + __ptr_FTA_Remove_Module_raster1]\n");
static __attribute__ ((used)) void* __ptr_FTA_Remove_Module_raster5;
asm(".intel_syntax noprefix\n"
".global FTA_Remove_Module_raster5\n"
".type FTA_Remove_Module_raster5 @function\n"
"FTA_Remove_Module_raster5:\n"
"jmp qword ptr [rip + __ptr_FTA_Remove_Module_raster5]\n");
static __attribute__ ((used)) void* __ptr_FTA_Remove_Module_sfnt;
asm(".intel_syntax noprefix\n"
".global FTA_Remove_Module_sfnt\n"
".type FTA_Remove_Module_sfnt @function\n"
"FTA_Remove_Module_sfnt:\n"
"jmp qword ptr [rip + __ptr_FTA_Remove_Module_sfnt]\n");
static __attribute__ ((used)) void* __ptr_FTA_Remove_Module_smooth;
asm(".intel_syntax noprefix\n"
".global FTA_Remove_Module_smooth\n"
".type FTA_Remove_Module_smooth @function\n"
"FTA_Remove_Module_smooth:\n"
"jmp qword ptr [rip + __ptr_FTA_Remove_Module_smooth]\n");
static __attribute__ ((used)) void* __ptr_FTA_Remove_Module_smooth_lcd;
asm(".intel_syntax noprefix\n"
".global FTA_Remove_Module_smooth_lcd\n"
".type FTA_Remove_Module_smooth_lcd @function\n"
"FTA_Remove_Module_smooth_lcd:\n"
"jmp qword ptr [rip + __ptr_FTA_Remove_Module_smooth_lcd]\n");
static __attribute__ ((used)) void* __ptr_FTA_Remove_Module_smooth_lcdv;
asm(".intel_syntax noprefix\n"
".global FTA_Remove_Module_smooth_lcdv\n"
".type FTA_Remove_Module_smooth_lcdv @function\n"
"FTA_Remove_Module_smooth_lcdv:\n"
"jmp qword ptr [rip + __ptr_FTA_Remove_Module_smooth_lcdv]\n");
static __attribute__ ((used)) void* __ptr_FTA_Remove_Module_t1cid;
asm(".intel_syntax noprefix\n"
".global FTA_Remove_Module_t1cid\n"
".type FTA_Remove_Module_t1cid @function\n"
"FTA_Remove_Module_t1cid:\n"
"jmp qword ptr [rip + __ptr_FTA_Remove_Module_t1cid]\n");
static __attribute__ ((used)) void* __ptr_FTA_Remove_Module_truetype;
asm(".intel_syntax noprefix\n"
".global FTA_Remove_Module_truetype\n"
".type FTA_Remove_Module_truetype @function\n"
"FTA_Remove_Module_truetype:\n"
"jmp qword ptr [rip + __ptr_FTA_Remove_Module_truetype]\n");
static __attribute__ ((used)) void* __ptr_FTA_Remove_Module_type1;
asm(".intel_syntax noprefix\n"
".global FTA_Remove_Module_type1\n"
".type FTA_Remove_Module_type1 @function\n"
"FTA_Remove_Module_type1:\n"
"jmp qword ptr [rip + __ptr_FTA_Remove_Module_type1]\n");
static __attribute__ ((used)) void* __ptr_FTA_Remove_Module_type42;
asm(".intel_syntax noprefix\n"
".global FTA_Remove_Module_type42\n"
".type FTA_Remove_Module_type42 @function\n"
"FTA_Remove_Module_type42:\n"
"jmp qword ptr [rip + __ptr_FTA_Remove_Module_type42]\n");
static __attribute__ ((used)) void* __ptr_FTA_Remove_Module_winfonts;
asm(".intel_syntax noprefix\n"
".global FTA_Remove_Module_winfonts\n"
".type FTA_Remove_Module_winfonts @function\n"
"FTA_Remove_Module_winfonts:\n"
"jmp qword ptr [rip + __ptr_FTA_Remove_Module_winfonts]\n");
static __attribute__ ((used)) void* __ptr_FTA_Support_Format_Bdf;
asm(".intel_syntax noprefix\n"
".global FTA_Support_Format_Bdf\n"
".type FTA_Support_Format_Bdf @function\n"
"FTA_Support_Format_Bdf:\n"
"jmp qword ptr [rip + __ptr_FTA_Support_Format_Bdf]\n");
static __attribute__ ((used)) void* __ptr_FTA_Support_Format_Cid;
asm(".intel_syntax noprefix\n"
".global FTA_Support_Format_Cid\n"
".type FTA_Support_Format_Cid @function\n"
"FTA_Support_Format_Cid:\n"
"jmp qword ptr [rip + __ptr_FTA_Support_Format_Cid]\n");
static __attribute__ ((used)) void* __ptr_FTA_Support_Format_OpenType;
asm(".intel_syntax noprefix\n"
".global FTA_Support_Format_OpenType\n"
".type FTA_Support_Format_OpenType @function\n"
"FTA_Support_Format_OpenType:\n"
"jmp qword ptr [rip + __ptr_FTA_Support_Format_OpenType]\n");
static __attribute__ ((used)) void* __ptr_FTA_Support_Format_OpenType_Otf;
asm(".intel_syntax noprefix\n"
".global FTA_Support_Format_OpenType_Otf\n"
".type FTA_Support_Format_OpenType_Otf @function\n"
"FTA_Support_Format_OpenType_Otf:\n"
"jmp qword ptr [rip + __ptr_FTA_Support_Format_OpenType_Otf]\n");
static __attribute__ ((used)) void* __ptr_FTA_Support_Format_OpenType_Ttf;
asm(".intel_syntax noprefix\n"
".global FTA_Support_Format_OpenType_Ttf\n"
".type FTA_Support_Format_OpenType_Ttf @function\n"
"FTA_Support_Format_OpenType_Ttf:\n"
"jmp qword ptr [rip + __ptr_FTA_Support_Format_OpenType_Ttf]\n");
static __attribute__ ((used)) void* __ptr_FTA_Support_Format_Pcf;
asm(".intel_syntax noprefix\n"
".global FTA_Support_Format_Pcf\n"
".type FTA_Support_Format_Pcf @function\n"
"FTA_Support_Format_Pcf:\n"
"jmp qword ptr [rip + __ptr_FTA_Support_Format_Pcf]\n");
static __attribute__ ((used)) void* __ptr_FTA_Support_Format_Pfr;
asm(".intel_syntax noprefix\n"
".global FTA_Support_Format_Pfr\n"
".type FTA_Support_Format_Pfr @function\n"
"FTA_Support_Format_Pfr:\n"
"jmp qword ptr [rip + __ptr_FTA_Support_Format_Pfr]\n");
static __attribute__ ((used)) void* __ptr_FTA_Support_Format_TrueType;
asm(".intel_syntax noprefix\n"
".global FTA_Support_Format_TrueType\n"
".type FTA_Support_Format_TrueType @function\n"
"FTA_Support_Format_TrueType:\n"
"jmp qword ptr [rip + __ptr_FTA_Support_Format_TrueType]\n");
static __attribute__ ((used)) void* __ptr_FTA_Support_Format_TrueTypeGx;
asm(".intel_syntax noprefix\n"
".global FTA_Support_Format_TrueTypeGx\n"
".type FTA_Support_Format_TrueTypeGx @function\n"
"FTA_Support_Format_TrueTypeGx:\n"
"jmp qword ptr [rip + __ptr_FTA_Support_Format_TrueTypeGx]\n");
static __attribute__ ((used)) void* __ptr_FTA_Support_Format_Type1;
asm(".intel_syntax noprefix\n"
".global FTA_Support_Format_Type1\n"
".type FTA_Support_Format_Type1 @function\n"
"FTA_Support_Format_Type1:\n"
"jmp qword ptr [rip + __ptr_FTA_Support_Format_Type1]\n");
static __attribute__ ((used)) void* __ptr_FTA_Support_Format_Type42;
asm(".intel_syntax noprefix\n"
".global FTA_Support_Format_Type42\n"
".type FTA_Support_Format_Type42 @function\n"
"FTA_Support_Format_Type42:\n"
"jmp qword ptr [rip + __ptr_FTA_Support_Format_Type42]\n");
static __attribute__ ((used)) void* __ptr_FTA_Support_Format_WinFonts;
asm(".intel_syntax noprefix\n"
".global FTA_Support_Format_WinFonts\n"
".type FTA_Support_Format_WinFonts @function\n"
"FTA_Support_Format_WinFonts:\n"
"jmp qword ptr [rip + __ptr_FTA_Support_Format_WinFonts]\n");
static __attribute__ ((used)) void* __ptr_FTA_Support_Hinter_AutoFitter;
asm(".intel_syntax noprefix\n"
".global FTA_Support_Hinter_AutoFitter\n"
".type FTA_Support_Hinter_AutoFitter @function\n"
"FTA_Support_Hinter_AutoFitter:\n"
"jmp qword ptr [rip + __ptr_FTA_Support_Hinter_AutoFitter]\n");
static __attribute__ ((used)) void* __ptr_FTA_Support_Modules;
asm(".intel_syntax noprefix\n"
".global FTA_Support_Modules\n"
".type FTA_Support_Modules @function\n"
"FTA_Support_Modules:\n"
"jmp qword ptr [rip + __ptr_FTA_Support_Modules]\n");
static __attribute__ ((used)) void* __ptr_FTA_Support_Renderer_Raster1;
asm(".intel_syntax noprefix\n"
".global FTA_Support_Renderer_Raster1\n"
".type FTA_Support_Renderer_Raster1 @function\n"
"FTA_Support_Renderer_Raster1:\n"
"jmp qword ptr [rip + __ptr_FTA_Support_Renderer_Raster1]\n");
static __attribute__ ((used)) void* __ptr_FTA_Support_Renderer_Raster5;
asm(".intel_syntax noprefix\n"
".global FTA_Support_Renderer_Raster5\n"
".type FTA_Support_Renderer_Raster5 @function\n"
"FTA_Support_Renderer_Raster5:\n"
"jmp qword ptr [rip + __ptr_FTA_Support_Renderer_Raster5]\n");
static __attribute__ ((used)) void* __ptr_FTA_Support_Renderer_Smooth;
asm(".intel_syntax noprefix\n"
".global FTA_Support_Renderer_Smooth\n"
".type FTA_Support_Renderer_Smooth @function\n"
"FTA_Support_Renderer_Smooth:\n"
"jmp qword ptr [rip + __ptr_FTA_Support_Renderer_Smooth]\n");
static __attribute__ ((used)) void* __ptr_FTA_Support_Renderer_Smooth_Lcd;
asm(".intel_syntax noprefix\n"
".global FTA_Support_Renderer_Smooth_Lcd\n"
".type FTA_Support_Renderer_Smooth_Lcd @function\n"
"FTA_Support_Renderer_Smooth_Lcd:\n"
"jmp qword ptr [rip + __ptr_FTA_Support_Renderer_Smooth_Lcd]\n");
static __attribute__ ((used)) void* __ptr_FTA_Support_Renderer_Smooth_Lcdv;
asm(".intel_syntax noprefix\n"
".global FTA_Support_Renderer_Smooth_Lcdv\n"
".type FTA_Support_Renderer_Smooth_Lcdv @function\n"
"FTA_Support_Renderer_Smooth_Lcdv:\n"
"jmp qword ptr [rip + __ptr_FTA_Support_Renderer_Smooth_Lcdv]\n");
static __attribute__ ((used)) void* __ptr_FT_Activate_Size;
asm(".intel_syntax noprefix\n"
".global FT_Activate_Size\n"
".type FT_Activate_Size @function\n"
"FT_Activate_Size:\n"
"jmp qword ptr [rip + __ptr_FT_Activate_Size]\n");
static __attribute__ ((used)) void* __ptr_FT_Add_Default_Modules;
asm(".intel_syntax noprefix\n"
".global FT_Add_Default_Modules\n"
".type FT_Add_Default_Modules @function\n"
"FT_Add_Default_Modules:\n"
"jmp qword ptr [rip + __ptr_FT_Add_Default_Modules]\n");
static __attribute__ ((used)) void* __ptr_FT_Add_Module;
asm(".intel_syntax noprefix\n"
".global FT_Add_Module\n"
".type FT_Add_Module @function\n"
"FT_Add_Module:\n"
"jmp qword ptr [rip + __ptr_FT_Add_Module]\n");
static __attribute__ ((used)) void* __ptr_FT_Alloc;
asm(".intel_syntax noprefix\n"
".global FT_Alloc\n"
".type FT_Alloc @function\n"
"FT_Alloc:\n"
"jmp qword ptr [rip + __ptr_FT_Alloc]\n");
static __attribute__ ((used)) void* __ptr_FT_Angle_Diff;
asm(".intel_syntax noprefix\n"
".global FT_Angle_Diff\n"
".type FT_Angle_Diff @function\n"
"FT_Angle_Diff:\n"
"jmp qword ptr [rip + __ptr_FT_Angle_Diff]\n");
static __attribute__ ((used)) void* __ptr_FT_Atan2;
asm(".intel_syntax noprefix\n"
".global FT_Atan2\n"
".type FT_Atan2 @function\n"
"FT_Atan2:\n"
"jmp qword ptr [rip + __ptr_FT_Atan2]\n");
static __attribute__ ((used)) void* __ptr_FT_Attach_File;
asm(".intel_syntax noprefix\n"
".global FT_Attach_File\n"
".type FT_Attach_File @function\n"
"FT_Attach_File:\n"
"jmp qword ptr [rip + __ptr_FT_Attach_File]\n");
static __attribute__ ((used)) void* __ptr_FT_Attach_Stream;
asm(".intel_syntax noprefix\n"
".global FT_Attach_Stream\n"
".type FT_Attach_Stream @function\n"
"FT_Attach_Stream:\n"
"jmp qword ptr [rip + __ptr_FT_Attach_Stream]\n");
static __attribute__ ((used)) void* __ptr_FT_Bitmap_Convert;
asm(".intel_syntax noprefix\n"
".global FT_Bitmap_Convert\n"
".type FT_Bitmap_Convert @function\n"
"FT_Bitmap_Convert:\n"
"jmp qword ptr [rip + __ptr_FT_Bitmap_Convert]\n");
static __attribute__ ((used)) void* __ptr_FT_Bitmap_Copy;
asm(".intel_syntax noprefix\n"
".global FT_Bitmap_Copy\n"
".type FT_Bitmap_Copy @function\n"
"FT_Bitmap_Copy:\n"
"jmp qword ptr [rip + __ptr_FT_Bitmap_Copy]\n");
static __attribute__ ((used)) void* __ptr_FT_Bitmap_Done;
asm(".intel_syntax noprefix\n"
".global FT_Bitmap_Done\n"
".type FT_Bitmap_Done @function\n"
"FT_Bitmap_Done:\n"
"jmp qword ptr [rip + __ptr_FT_Bitmap_Done]\n");
static __attribute__ ((used)) void* __ptr_FT_Bitmap_Embolden;
asm(".intel_syntax noprefix\n"
".global FT_Bitmap_Embolden\n"
".type FT_Bitmap_Embolden @function\n"
"FT_Bitmap_Embolden:\n"
"jmp qword ptr [rip + __ptr_FT_Bitmap_Embolden]\n");
static __attribute__ ((used)) void* __ptr_FT_Bitmap_New;
asm(".intel_syntax noprefix\n"
".global FT_Bitmap_New\n"
".type FT_Bitmap_New @function\n"
"FT_Bitmap_New:\n"
"jmp qword ptr [rip + __ptr_FT_Bitmap_New]\n");
static __attribute__ ((used)) void* __ptr_FT_CMap_Done;
asm(".intel_syntax noprefix\n"
".global FT_CMap_Done\n"
".type FT_CMap_Done @function\n"
"FT_CMap_Done:\n"
"jmp qword ptr [rip + __ptr_FT_CMap_Done]\n");
static __attribute__ ((used)) void* __ptr_FT_CMap_New;
asm(".intel_syntax noprefix\n"
".global FT_CMap_New\n"
".type FT_CMap_New @function\n"
"FT_CMap_New:\n"
"jmp qword ptr [rip + __ptr_FT_CMap_New]\n");
static __attribute__ ((used)) void* __ptr_FT_CeilFix;
asm(".intel_syntax noprefix\n"
".global FT_CeilFix\n"
".type FT_CeilFix @function\n"
"FT_CeilFix:\n"
"jmp qword ptr [rip + __ptr_FT_CeilFix]\n");
static __attribute__ ((used)) void* __ptr_FT_ClassicKern_Free;
asm(".intel_syntax noprefix\n"
".global FT_ClassicKern_Free\n"
".type FT_ClassicKern_Free @function\n"
"FT_ClassicKern_Free:\n"
"jmp qword ptr [rip + __ptr_FT_ClassicKern_Free]\n");
static __attribute__ ((used)) void* __ptr_FT_ClassicKern_Validate;
asm(".intel_syntax noprefix\n"
".global FT_ClassicKern_Validate\n"
".type FT_ClassicKern_Validate @function\n"
"FT_ClassicKern_Validate:\n"
"jmp qword ptr [rip + __ptr_FT_ClassicKern_Validate]\n");
static __attribute__ ((used)) void* __ptr_FT_Cos;
asm(".intel_syntax noprefix\n"
".global FT_Cos\n"
".type FT_Cos @function\n"
"FT_Cos:\n"
"jmp qword ptr [rip + __ptr_FT_Cos]\n");
static __attribute__ ((used)) void* __ptr_FT_DivFix;
asm(".intel_syntax noprefix\n"
".global FT_DivFix\n"
".type FT_DivFix @function\n"
"FT_DivFix:\n"
"jmp qword ptr [rip + __ptr_FT_DivFix]\n");
static __attribute__ ((used)) void* __ptr_FT_Done_Face;
asm(".intel_syntax noprefix\n"
".global FT_Done_Face\n"
".type FT_Done_Face @function\n"
"FT_Done_Face:\n"
"jmp qword ptr [rip + __ptr_FT_Done_Face]\n");
static __attribute__ ((used)) void* __ptr_FT_Done_FreeType;
asm(".intel_syntax noprefix\n"
".global FT_Done_FreeType\n"
".type FT_Done_FreeType @function\n"
"FT_Done_FreeType:\n"
"jmp qword ptr [rip + __ptr_FT_Done_FreeType]\n");
static __attribute__ ((used)) void* __ptr_FT_Done_Glyph;
asm(".intel_syntax noprefix\n"
".global FT_Done_Glyph\n"
".type FT_Done_Glyph @function\n"
"FT_Done_Glyph:\n"
"jmp qword ptr [rip + __ptr_FT_Done_Glyph]\n");
static __attribute__ ((used)) void* __ptr_FT_Done_GlyphSlot;
asm(".intel_syntax noprefix\n"
".global FT_Done_GlyphSlot\n"
".type FT_Done_GlyphSlot @function\n"
"FT_Done_GlyphSlot:\n"
"jmp qword ptr [rip + __ptr_FT_Done_GlyphSlot]\n");
static __attribute__ ((used)) void* __ptr_FT_Done_Library;
asm(".intel_syntax noprefix\n"
".global FT_Done_Library\n"
".type FT_Done_Library @function\n"
"FT_Done_Library:\n"
"jmp qword ptr [rip + __ptr_FT_Done_Library]\n");
static __attribute__ ((used)) void* __ptr_FT_Done_Memory;
asm(".intel_syntax noprefix\n"
".global FT_Done_Memory\n"
".type FT_Done_Memory @function\n"
"FT_Done_Memory:\n"
"jmp qword ptr [rip + __ptr_FT_Done_Memory]\n");
static __attribute__ ((used)) void* __ptr_FT_Done_Size;
asm(".intel_syntax noprefix\n"
".global FT_Done_Size\n"
".type FT_Done_Size @function\n"
"FT_Done_Size:\n"
"jmp qword ptr [rip + __ptr_FT_Done_Size]\n");
static __attribute__ ((used)) void* __ptr_FT_Face_CheckTrueTypePatents;
asm(".intel_syntax noprefix\n"
".global FT_Face_CheckTrueTypePatents\n"
".type FT_Face_CheckTrueTypePatents @function\n"
"FT_Face_CheckTrueTypePatents:\n"
"jmp qword ptr [rip + __ptr_FT_Face_CheckTrueTypePatents]\n");
static __attribute__ ((used)) void* __ptr_FT_Face_GetCharVariantIndex;
asm(".intel_syntax noprefix\n"
".global FT_Face_GetCharVariantIndex\n"
".type FT_Face_GetCharVariantIndex @function\n"
"FT_Face_GetCharVariantIndex:\n"
"jmp qword ptr [rip + __ptr_FT_Face_GetCharVariantIndex]\n");
static __attribute__ ((used)) void* __ptr_FT_Face_GetCharVariantIsDefault;
asm(".intel_syntax noprefix\n"
".global FT_Face_GetCharVariantIsDefault\n"
".type FT_Face_GetCharVariantIsDefault @function\n"
"FT_Face_GetCharVariantIsDefault:\n"
"jmp qword ptr [rip + __ptr_FT_Face_GetCharVariantIsDefault]\n");
static __attribute__ ((used)) void* __ptr_FT_Face_GetCharsOfVariant;
asm(".intel_syntax noprefix\n"
".global FT_Face_GetCharsOfVariant\n"
".type FT_Face_GetCharsOfVariant @function\n"
"FT_Face_GetCharsOfVariant:\n"
"jmp qword ptr [rip + __ptr_FT_Face_GetCharsOfVariant]\n");
static __attribute__ ((used)) void* __ptr_FT_Face_GetVariantSelectors;
asm(".intel_syntax noprefix\n"
".global FT_Face_GetVariantSelectors\n"
".type FT_Face_GetVariantSelectors @function\n"
"FT_Face_GetVariantSelectors:\n"
"jmp qword ptr [rip + __ptr_FT_Face_GetVariantSelectors]\n");
static __attribute__ ((used)) void* __ptr_FT_Face_GetVariantsOfChar;
asm(".intel_syntax noprefix\n"
".global FT_Face_GetVariantsOfChar\n"
".type FT_Face_GetVariantsOfChar @function\n"
"FT_Face_GetVariantsOfChar:\n"
"jmp qword ptr [rip + __ptr_FT_Face_GetVariantsOfChar]\n");
static __attribute__ ((used)) void* __ptr_FT_Face_SetUnpatentedHinting;
asm(".intel_syntax noprefix\n"
".global FT_Face_SetUnpatentedHinting\n"
".type FT_Face_SetUnpatentedHinting @function\n"
"FT_Face_SetUnpatentedHinting:\n"
"jmp qword ptr [rip + __ptr_FT_Face_SetUnpatentedHinting]\n");
static __attribute__ ((used)) void* __ptr_FT_FloorFix;
asm(".intel_syntax noprefix\n"
".global FT_FloorFix\n"
".type FT_FloorFix @function\n"
"FT_FloorFix:\n"
"jmp qword ptr [rip + __ptr_FT_FloorFix]\n");
static __attribute__ ((used)) void* __ptr_FT_Free;
asm(".intel_syntax noprefix\n"
".global FT_Free\n"
".type FT_Free @function\n"
"FT_Free:\n"
"jmp qword ptr [rip + __ptr_FT_Free]\n");
static __attribute__ ((used)) void* __ptr_FT_Get_Advance;
asm(".intel_syntax noprefix\n"
".global FT_Get_Advance\n"
".type FT_Get_Advance @function\n"
"FT_Get_Advance:\n"
"jmp qword ptr [rip + __ptr_FT_Get_Advance]\n");
static __attribute__ ((used)) void* __ptr_FT_Get_Advances;
asm(".intel_syntax noprefix\n"
".global FT_Get_Advances\n"
".type FT_Get_Advances @function\n"
"FT_Get_Advances:\n"
"jmp qword ptr [rip + __ptr_FT_Get_Advances]\n");
static __attribute__ ((used)) void* __ptr_FT_Get_CID_From_Glyph_Index;
asm(".intel_syntax noprefix\n"
".global FT_Get_CID_From_Glyph_Index\n"
".type FT_Get_CID_From_Glyph_Index @function\n"
"FT_Get_CID_From_Glyph_Index:\n"
"jmp qword ptr [rip + __ptr_FT_Get_CID_From_Glyph_Index]\n");
static __attribute__ ((used)) void* __ptr_FT_Get_CID_Is_Internally_CID_Keyed;
asm(".intel_syntax noprefix\n"
".global FT_Get_CID_Is_Internally_CID_Keyed\n"
".type FT_Get_CID_Is_Internally_CID_Keyed @function\n"
"FT_Get_CID_Is_Internally_CID_Keyed:\n"
"jmp qword ptr [rip + __ptr_FT_Get_CID_Is_Internally_CID_Keyed]\n");
static __attribute__ ((used)) void* __ptr_FT_Get_CID_Registry_Ordering_Supplement;
asm(".intel_syntax noprefix\n"
".global FT_Get_CID_Registry_Ordering_Supplement\n"
".type FT_Get_CID_Registry_Ordering_Supplement @function\n"
"FT_Get_CID_Registry_Ordering_Supplement:\n"
"jmp qword ptr [rip + __ptr_FT_Get_CID_Registry_Ordering_Supplement]\n");
static __attribute__ ((used)) void* __ptr_FT_Get_CMap_Format;
asm(".intel_syntax noprefix\n"
".global FT_Get_CMap_Format\n"
".type FT_Get_CMap_Format @function\n"
"FT_Get_CMap_Format:\n"
"jmp qword ptr [rip + __ptr_FT_Get_CMap_Format]\n");
static __attribute__ ((used)) void* __ptr_FT_Get_CMap_Language_ID;
asm(".intel_syntax noprefix\n"
".global FT_Get_CMap_Language_ID\n"
".type FT_Get_CMap_Language_ID @function\n"
"FT_Get_CMap_Language_ID:\n"
"jmp qword ptr [rip + __ptr_FT_Get_CMap_Language_ID]\n");
static __attribute__ ((used)) void* __ptr_FT_Get_Char_Index;
asm(".intel_syntax noprefix\n"
".global FT_Get_Char_Index\n"
".type FT_Get_Char_Index @function\n"
"FT_Get_Char_Index:\n"
"jmp qword ptr [rip + __ptr_FT_Get_Char_Index]\n");
static __attribute__ ((used)) void* __ptr_FT_Get_Charmap_Index;
asm(".intel_syntax noprefix\n"
".global FT_Get_Charmap_Index\n"
".type FT_Get_Charmap_Index @function\n"
"FT_Get_Charmap_Index:\n"
"jmp qword ptr [rip + __ptr_FT_Get_Charmap_Index]\n");
static __attribute__ ((used)) void* __ptr_FT_Get_FSType_Flags;
asm(".intel_syntax noprefix\n"
".global FT_Get_FSType_Flags\n"
".type FT_Get_FSType_Flags @function\n"
"FT_Get_FSType_Flags:\n"
"jmp qword ptr [rip + __ptr_FT_Get_FSType_Flags]\n");
static __attribute__ ((used)) void* __ptr_FT_Get_First_Char;
asm(".intel_syntax noprefix\n"
".global FT_Get_First_Char\n"
".type FT_Get_First_Char @function\n"
"FT_Get_First_Char:\n"
"jmp qword ptr [rip + __ptr_FT_Get_First_Char]\n");
static __attribute__ ((used)) void* __ptr_FT_Get_Gasp;
asm(".intel_syntax noprefix\n"
".global FT_Get_Gasp\n"
".type FT_Get_Gasp @function\n"
"FT_Get_Gasp:\n"
"jmp qword ptr [rip + __ptr_FT_Get_Gasp]\n");
static __attribute__ ((used)) void* __ptr_FT_Get_Glyph;
asm(".intel_syntax noprefix\n"
".global FT_Get_Glyph\n"
".type FT_Get_Glyph @function\n"
"FT_Get_Glyph:\n"
"jmp qword ptr [rip + __ptr_FT_Get_Glyph]\n");
static __attribute__ ((used)) void* __ptr_FT_Get_Glyph_Name;
asm(".intel_syntax noprefix\n"
".global FT_Get_Glyph_Name\n"
".type FT_Get_Glyph_Name @function\n"
"FT_Get_Glyph_Name:\n"
"jmp qword ptr [rip + __ptr_FT_Get_Glyph_Name]\n");
static __attribute__ ((used)) void* __ptr_FT_Get_Kerning;
asm(".intel_syntax noprefix\n"
".global FT_Get_Kerning\n"
".type FT_Get_Kerning @function\n"
"FT_Get_Kerning:\n"
"jmp qword ptr [rip + __ptr_FT_Get_Kerning]\n");
static __attribute__ ((used)) void* __ptr_FT_Get_MM_Var;
asm(".intel_syntax noprefix\n"
".global FT_Get_MM_Var\n"
".type FT_Get_MM_Var @function\n"
"FT_Get_MM_Var:\n"
"jmp qword ptr [rip + __ptr_FT_Get_MM_Var]\n");
static __attribute__ ((used)) void* __ptr_FT_Get_Module;
asm(".intel_syntax noprefix\n"
".global FT_Get_Module\n"
".type FT_Get_Module @function\n"
"FT_Get_Module:\n"
"jmp qword ptr [rip + __ptr_FT_Get_Module]\n");
static __attribute__ ((used)) void* __ptr_FT_Get_Module_Interface;
asm(".intel_syntax noprefix\n"
".global FT_Get_Module_Interface\n"
".type FT_Get_Module_Interface @function\n"
"FT_Get_Module_Interface:\n"
"jmp qword ptr [rip + __ptr_FT_Get_Module_Interface]\n");
static __attribute__ ((used)) void* __ptr_FT_Get_Multi_Master;
asm(".intel_syntax noprefix\n"
".global FT_Get_Multi_Master\n"
".type FT_Get_Multi_Master @function\n"
"FT_Get_Multi_Master:\n"
"jmp qword ptr [rip + __ptr_FT_Get_Multi_Master]\n");
static __attribute__ ((used)) void* __ptr_FT_Get_Name_Index;
asm(".intel_syntax noprefix\n"
".global FT_Get_Name_Index\n"
".type FT_Get_Name_Index @function\n"
"FT_Get_Name_Index:\n"
"jmp qword ptr [rip + __ptr_FT_Get_Name_Index]\n");
static __attribute__ ((used)) void* __ptr_FT_Get_Next_Char;
asm(".intel_syntax noprefix\n"
".global FT_Get_Next_Char\n"
".type FT_Get_Next_Char @function\n"
"FT_Get_Next_Char:\n"
"jmp qword ptr [rip + __ptr_FT_Get_Next_Char]\n");
static __attribute__ ((used)) void* __ptr_FT_Get_PFR_Advance;
asm(".intel_syntax noprefix\n"
".global FT_Get_PFR_Advance\n"
".type FT_Get_PFR_Advance @function\n"
"FT_Get_PFR_Advance:\n"
"jmp qword ptr [rip + __ptr_FT_Get_PFR_Advance]\n");
static __attribute__ ((used)) void* __ptr_FT_Get_PFR_Kerning;
asm(".intel_syntax noprefix\n"
".global FT_Get_PFR_Kerning\n"
".type FT_Get_PFR_Kerning @function\n"
"FT_Get_PFR_Kerning:\n"