| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091 |
- // This file is generated. Do not edit!
- // see https://github.com/hpvb/dynload-wrapper for details
- // generated by ./generate-wrapper.py 0.3 on 2022-07-29 05:40:07
- // flags: ./generate-wrapper.py --include /usr/include/fontconfig/fontconfig.h --sys-include <fontconfig/fontconfig.h> --soname libfontconfig.so --init-name fontconfig --output-header fontconfig-so_wrap.h --output-implementation fontconfig-so_wrap.c --omit-prefix FcCharSet
- //
- #include <stdint.h>
- #define FcBlanksCreate FcBlanksCreate_dylibloader_orig_fontconfig
- #define FcBlanksDestroy FcBlanksDestroy_dylibloader_orig_fontconfig
- #define FcBlanksAdd FcBlanksAdd_dylibloader_orig_fontconfig
- #define FcBlanksIsMember FcBlanksIsMember_dylibloader_orig_fontconfig
- #define FcCacheDir FcCacheDir_dylibloader_orig_fontconfig
- #define FcCacheCopySet FcCacheCopySet_dylibloader_orig_fontconfig
- #define FcCacheSubdir FcCacheSubdir_dylibloader_orig_fontconfig
- #define FcCacheNumSubdir FcCacheNumSubdir_dylibloader_orig_fontconfig
- #define FcCacheNumFont FcCacheNumFont_dylibloader_orig_fontconfig
- #define FcDirCacheUnlink FcDirCacheUnlink_dylibloader_orig_fontconfig
- #define FcDirCacheValid FcDirCacheValid_dylibloader_orig_fontconfig
- #define FcDirCacheClean FcDirCacheClean_dylibloader_orig_fontconfig
- #define FcCacheCreateTagFile FcCacheCreateTagFile_dylibloader_orig_fontconfig
- #define FcConfigHome FcConfigHome_dylibloader_orig_fontconfig
- #define FcConfigEnableHome FcConfigEnableHome_dylibloader_orig_fontconfig
- #define FcConfigFilename FcConfigFilename_dylibloader_orig_fontconfig
- #define FcConfigCreate FcConfigCreate_dylibloader_orig_fontconfig
- #define FcConfigReference FcConfigReference_dylibloader_orig_fontconfig
- #define FcConfigDestroy FcConfigDestroy_dylibloader_orig_fontconfig
- #define FcConfigSetCurrent FcConfigSetCurrent_dylibloader_orig_fontconfig
- #define FcConfigGetCurrent FcConfigGetCurrent_dylibloader_orig_fontconfig
- #define FcConfigUptoDate FcConfigUptoDate_dylibloader_orig_fontconfig
- #define FcConfigBuildFonts FcConfigBuildFonts_dylibloader_orig_fontconfig
- #define FcConfigGetFontDirs FcConfigGetFontDirs_dylibloader_orig_fontconfig
- #define FcConfigGetConfigDirs FcConfigGetConfigDirs_dylibloader_orig_fontconfig
- #define FcConfigGetConfigFiles FcConfigGetConfigFiles_dylibloader_orig_fontconfig
- #define FcConfigGetCache FcConfigGetCache_dylibloader_orig_fontconfig
- #define FcConfigGetBlanks FcConfigGetBlanks_dylibloader_orig_fontconfig
- #define FcConfigGetCacheDirs FcConfigGetCacheDirs_dylibloader_orig_fontconfig
- #define FcConfigGetRescanInterval FcConfigGetRescanInterval_dylibloader_orig_fontconfig
- #define FcConfigSetRescanInterval FcConfigSetRescanInterval_dylibloader_orig_fontconfig
- #define FcConfigGetFonts FcConfigGetFonts_dylibloader_orig_fontconfig
- #define FcConfigAppFontAddFile FcConfigAppFontAddFile_dylibloader_orig_fontconfig
- #define FcConfigAppFontAddDir FcConfigAppFontAddDir_dylibloader_orig_fontconfig
- #define FcConfigAppFontClear FcConfigAppFontClear_dylibloader_orig_fontconfig
- #define FcConfigSubstituteWithPat FcConfigSubstituteWithPat_dylibloader_orig_fontconfig
- #define FcConfigSubstitute FcConfigSubstitute_dylibloader_orig_fontconfig
- #define FcConfigGetSysRoot FcConfigGetSysRoot_dylibloader_orig_fontconfig
- #define FcConfigSetSysRoot FcConfigSetSysRoot_dylibloader_orig_fontconfig
- #define FcValuePrint FcValuePrint_dylibloader_orig_fontconfig
- #define FcPatternPrint FcPatternPrint_dylibloader_orig_fontconfig
- #define FcFontSetPrint FcFontSetPrint_dylibloader_orig_fontconfig
- #define FcGetDefaultLangs FcGetDefaultLangs_dylibloader_orig_fontconfig
- #define FcDefaultSubstitute FcDefaultSubstitute_dylibloader_orig_fontconfig
- #define FcFileIsDir FcFileIsDir_dylibloader_orig_fontconfig
- #define FcFileScan FcFileScan_dylibloader_orig_fontconfig
- #define FcDirScan FcDirScan_dylibloader_orig_fontconfig
- #define FcDirSave FcDirSave_dylibloader_orig_fontconfig
- #define FcDirCacheLoad FcDirCacheLoad_dylibloader_orig_fontconfig
- #define FcDirCacheRescan FcDirCacheRescan_dylibloader_orig_fontconfig
- #define FcDirCacheRead FcDirCacheRead_dylibloader_orig_fontconfig
- #define FcDirCacheLoadFile FcDirCacheLoadFile_dylibloader_orig_fontconfig
- #define FcDirCacheUnload FcDirCacheUnload_dylibloader_orig_fontconfig
- #define FcFreeTypeQuery FcFreeTypeQuery_dylibloader_orig_fontconfig
- #define FcFontSetCreate FcFontSetCreate_dylibloader_orig_fontconfig
- #define FcFontSetDestroy FcFontSetDestroy_dylibloader_orig_fontconfig
- #define FcFontSetAdd FcFontSetAdd_dylibloader_orig_fontconfig
- #define FcInitLoadConfig FcInitLoadConfig_dylibloader_orig_fontconfig
- #define FcInitLoadConfigAndFonts FcInitLoadConfigAndFonts_dylibloader_orig_fontconfig
- #define FcInit FcInit_dylibloader_orig_fontconfig
- #define FcFini FcFini_dylibloader_orig_fontconfig
- #define FcGetVersion FcGetVersion_dylibloader_orig_fontconfig
- #define FcInitReinitialize FcInitReinitialize_dylibloader_orig_fontconfig
- #define FcInitBringUptoDate FcInitBringUptoDate_dylibloader_orig_fontconfig
- #define FcGetLangs FcGetLangs_dylibloader_orig_fontconfig
- #define FcLangNormalize FcLangNormalize_dylibloader_orig_fontconfig
- #define FcLangGetCharSet FcLangGetCharSet_dylibloader_orig_fontconfig
- #define FcLangSetCreate FcLangSetCreate_dylibloader_orig_fontconfig
- #define FcLangSetDestroy FcLangSetDestroy_dylibloader_orig_fontconfig
- #define FcLangSetCopy FcLangSetCopy_dylibloader_orig_fontconfig
- #define FcLangSetAdd FcLangSetAdd_dylibloader_orig_fontconfig
- #define FcLangSetDel FcLangSetDel_dylibloader_orig_fontconfig
- #define FcLangSetHasLang FcLangSetHasLang_dylibloader_orig_fontconfig
- #define FcLangSetCompare FcLangSetCompare_dylibloader_orig_fontconfig
- #define FcLangSetContains FcLangSetContains_dylibloader_orig_fontconfig
- #define FcLangSetEqual FcLangSetEqual_dylibloader_orig_fontconfig
- #define FcLangSetHash FcLangSetHash_dylibloader_orig_fontconfig
- #define FcLangSetGetLangs FcLangSetGetLangs_dylibloader_orig_fontconfig
- #define FcLangSetUnion FcLangSetUnion_dylibloader_orig_fontconfig
- #define FcLangSetSubtract FcLangSetSubtract_dylibloader_orig_fontconfig
- #define FcObjectSetCreate FcObjectSetCreate_dylibloader_orig_fontconfig
- #define FcObjectSetAdd FcObjectSetAdd_dylibloader_orig_fontconfig
- #define FcObjectSetDestroy FcObjectSetDestroy_dylibloader_orig_fontconfig
- #define FcObjectSetVaBuild FcObjectSetVaBuild_dylibloader_orig_fontconfig
- #define FcObjectSetBuild FcObjectSetBuild_dylibloader_orig_fontconfig
- #define FcFontSetList FcFontSetList_dylibloader_orig_fontconfig
- #define FcFontList FcFontList_dylibloader_orig_fontconfig
- #define FcAtomicCreate FcAtomicCreate_dylibloader_orig_fontconfig
- #define FcAtomicLock FcAtomicLock_dylibloader_orig_fontconfig
- #define FcAtomicNewFile FcAtomicNewFile_dylibloader_orig_fontconfig
- #define FcAtomicOrigFile FcAtomicOrigFile_dylibloader_orig_fontconfig
- #define FcAtomicReplaceOrig FcAtomicReplaceOrig_dylibloader_orig_fontconfig
- #define FcAtomicDeleteNew FcAtomicDeleteNew_dylibloader_orig_fontconfig
- #define FcAtomicUnlock FcAtomicUnlock_dylibloader_orig_fontconfig
- #define FcAtomicDestroy FcAtomicDestroy_dylibloader_orig_fontconfig
- #define FcFontSetMatch FcFontSetMatch_dylibloader_orig_fontconfig
- #define FcFontMatch FcFontMatch_dylibloader_orig_fontconfig
- #define FcFontRenderPrepare FcFontRenderPrepare_dylibloader_orig_fontconfig
- #define FcFontSetSort FcFontSetSort_dylibloader_orig_fontconfig
- #define FcFontSort FcFontSort_dylibloader_orig_fontconfig
- #define FcFontSetSortDestroy FcFontSetSortDestroy_dylibloader_orig_fontconfig
- #define FcMatrixCopy FcMatrixCopy_dylibloader_orig_fontconfig
- #define FcMatrixEqual FcMatrixEqual_dylibloader_orig_fontconfig
- #define FcMatrixMultiply FcMatrixMultiply_dylibloader_orig_fontconfig
- #define FcMatrixRotate FcMatrixRotate_dylibloader_orig_fontconfig
- #define FcMatrixScale FcMatrixScale_dylibloader_orig_fontconfig
- #define FcMatrixShear FcMatrixShear_dylibloader_orig_fontconfig
- #define FcNameRegisterObjectTypes FcNameRegisterObjectTypes_dylibloader_orig_fontconfig
- #define FcNameUnregisterObjectTypes FcNameUnregisterObjectTypes_dylibloader_orig_fontconfig
- #define FcNameGetObjectType FcNameGetObjectType_dylibloader_orig_fontconfig
- #define FcNameRegisterConstants FcNameRegisterConstants_dylibloader_orig_fontconfig
- #define FcNameUnregisterConstants FcNameUnregisterConstants_dylibloader_orig_fontconfig
- #define FcNameGetConstant FcNameGetConstant_dylibloader_orig_fontconfig
- #define FcNameConstant FcNameConstant_dylibloader_orig_fontconfig
- #define FcNameParse FcNameParse_dylibloader_orig_fontconfig
- #define FcNameUnparse FcNameUnparse_dylibloader_orig_fontconfig
- #define FcPatternCreate FcPatternCreate_dylibloader_orig_fontconfig
- #define FcPatternDuplicate FcPatternDuplicate_dylibloader_orig_fontconfig
- #define FcPatternReference FcPatternReference_dylibloader_orig_fontconfig
- #define FcPatternFilter FcPatternFilter_dylibloader_orig_fontconfig
- #define FcValueDestroy FcValueDestroy_dylibloader_orig_fontconfig
- #define FcValueEqual FcValueEqual_dylibloader_orig_fontconfig
- #define FcValueSave FcValueSave_dylibloader_orig_fontconfig
- #define FcPatternDestroy FcPatternDestroy_dylibloader_orig_fontconfig
- #define FcPatternEqual FcPatternEqual_dylibloader_orig_fontconfig
- #define FcPatternEqualSubset FcPatternEqualSubset_dylibloader_orig_fontconfig
- #define FcPatternHash FcPatternHash_dylibloader_orig_fontconfig
- #define FcPatternAdd FcPatternAdd_dylibloader_orig_fontconfig
- #define FcPatternAddWeak FcPatternAddWeak_dylibloader_orig_fontconfig
- #define FcPatternGet FcPatternGet_dylibloader_orig_fontconfig
- #define FcPatternGetWithBinding FcPatternGetWithBinding_dylibloader_orig_fontconfig
- #define FcPatternDel FcPatternDel_dylibloader_orig_fontconfig
- #define FcPatternRemove FcPatternRemove_dylibloader_orig_fontconfig
- #define FcPatternAddInteger FcPatternAddInteger_dylibloader_orig_fontconfig
- #define FcPatternAddDouble FcPatternAddDouble_dylibloader_orig_fontconfig
- #define FcPatternAddString FcPatternAddString_dylibloader_orig_fontconfig
- #define FcPatternAddMatrix FcPatternAddMatrix_dylibloader_orig_fontconfig
- #define FcPatternAddCharSet FcPatternAddCharSet_dylibloader_orig_fontconfig
- #define FcPatternAddBool FcPatternAddBool_dylibloader_orig_fontconfig
- #define FcPatternAddLangSet FcPatternAddLangSet_dylibloader_orig_fontconfig
- #define FcPatternAddRange FcPatternAddRange_dylibloader_orig_fontconfig
- #define FcPatternGetInteger FcPatternGetInteger_dylibloader_orig_fontconfig
- #define FcPatternGetDouble FcPatternGetDouble_dylibloader_orig_fontconfig
- #define FcPatternGetString FcPatternGetString_dylibloader_orig_fontconfig
- #define FcPatternGetMatrix FcPatternGetMatrix_dylibloader_orig_fontconfig
- #define FcPatternGetCharSet FcPatternGetCharSet_dylibloader_orig_fontconfig
- #define FcPatternGetBool FcPatternGetBool_dylibloader_orig_fontconfig
- #define FcPatternGetLangSet FcPatternGetLangSet_dylibloader_orig_fontconfig
- #define FcPatternGetRange FcPatternGetRange_dylibloader_orig_fontconfig
- #define FcPatternVaBuild FcPatternVaBuild_dylibloader_orig_fontconfig
- #define FcPatternBuild FcPatternBuild_dylibloader_orig_fontconfig
- #define FcPatternFormat FcPatternFormat_dylibloader_orig_fontconfig
- #define FcRangeCreateDouble FcRangeCreateDouble_dylibloader_orig_fontconfig
- #define FcRangeCreateInteger FcRangeCreateInteger_dylibloader_orig_fontconfig
- #define FcRangeDestroy FcRangeDestroy_dylibloader_orig_fontconfig
- #define FcRangeCopy FcRangeCopy_dylibloader_orig_fontconfig
- #define FcRangeGetDouble FcRangeGetDouble_dylibloader_orig_fontconfig
- #define FcWeightFromOpenType FcWeightFromOpenType_dylibloader_orig_fontconfig
- #define FcWeightToOpenType FcWeightToOpenType_dylibloader_orig_fontconfig
- #define FcStrCopy FcStrCopy_dylibloader_orig_fontconfig
- #define FcStrCopyFilename FcStrCopyFilename_dylibloader_orig_fontconfig
- #define FcStrPlus FcStrPlus_dylibloader_orig_fontconfig
- #define FcStrFree FcStrFree_dylibloader_orig_fontconfig
- #define FcStrDowncase FcStrDowncase_dylibloader_orig_fontconfig
- #define FcStrCmpIgnoreCase FcStrCmpIgnoreCase_dylibloader_orig_fontconfig
- #define FcStrCmp FcStrCmp_dylibloader_orig_fontconfig
- #define FcStrStrIgnoreCase FcStrStrIgnoreCase_dylibloader_orig_fontconfig
- #define FcStrStr FcStrStr_dylibloader_orig_fontconfig
- #define FcUtf8ToUcs4 FcUtf8ToUcs4_dylibloader_orig_fontconfig
- #define FcUtf8Len FcUtf8Len_dylibloader_orig_fontconfig
- #define FcUcs4ToUtf8 FcUcs4ToUtf8_dylibloader_orig_fontconfig
- #define FcUtf16ToUcs4 FcUtf16ToUcs4_dylibloader_orig_fontconfig
- #define FcUtf16Len FcUtf16Len_dylibloader_orig_fontconfig
- #define FcStrDirname FcStrDirname_dylibloader_orig_fontconfig
- #define FcStrBasename FcStrBasename_dylibloader_orig_fontconfig
- #define FcStrSetCreate FcStrSetCreate_dylibloader_orig_fontconfig
- #define FcStrSetMember FcStrSetMember_dylibloader_orig_fontconfig
- #define FcStrSetEqual FcStrSetEqual_dylibloader_orig_fontconfig
- #define FcStrSetAdd FcStrSetAdd_dylibloader_orig_fontconfig
- #define FcStrSetAddFilename FcStrSetAddFilename_dylibloader_orig_fontconfig
- #define FcStrSetDel FcStrSetDel_dylibloader_orig_fontconfig
- #define FcStrSetDestroy FcStrSetDestroy_dylibloader_orig_fontconfig
- #define FcStrListCreate FcStrListCreate_dylibloader_orig_fontconfig
- #define FcStrListFirst FcStrListFirst_dylibloader_orig_fontconfig
- #define FcStrListNext FcStrListNext_dylibloader_orig_fontconfig
- #define FcStrListDone FcStrListDone_dylibloader_orig_fontconfig
- #define FcConfigParseAndLoad FcConfigParseAndLoad_dylibloader_orig_fontconfig
- #define FcConfigParseAndLoadFromMemory FcConfigParseAndLoadFromMemory_dylibloader_orig_fontconfig
- #include <fontconfig/fontconfig.h>
- #undef FcBlanksCreate
- #undef FcBlanksDestroy
- #undef FcBlanksAdd
- #undef FcBlanksIsMember
- #undef FcCacheDir
- #undef FcCacheCopySet
- #undef FcCacheSubdir
- #undef FcCacheNumSubdir
- #undef FcCacheNumFont
- #undef FcDirCacheUnlink
- #undef FcDirCacheValid
- #undef FcDirCacheClean
- #undef FcCacheCreateTagFile
- #undef FcConfigHome
- #undef FcConfigEnableHome
- #undef FcConfigFilename
- #undef FcConfigCreate
- #undef FcConfigReference
- #undef FcConfigDestroy
- #undef FcConfigSetCurrent
- #undef FcConfigGetCurrent
- #undef FcConfigUptoDate
- #undef FcConfigBuildFonts
- #undef FcConfigGetFontDirs
- #undef FcConfigGetConfigDirs
- #undef FcConfigGetConfigFiles
- #undef FcConfigGetCache
- #undef FcConfigGetBlanks
- #undef FcConfigGetCacheDirs
- #undef FcConfigGetRescanInterval
- #undef FcConfigSetRescanInterval
- #undef FcConfigGetFonts
- #undef FcConfigAppFontAddFile
- #undef FcConfigAppFontAddDir
- #undef FcConfigAppFontClear
- #undef FcConfigSubstituteWithPat
- #undef FcConfigSubstitute
- #undef FcConfigGetSysRoot
- #undef FcConfigSetSysRoot
- #undef FcValuePrint
- #undef FcPatternPrint
- #undef FcFontSetPrint
- #undef FcGetDefaultLangs
- #undef FcDefaultSubstitute
- #undef FcFileIsDir
- #undef FcFileScan
- #undef FcDirScan
- #undef FcDirSave
- #undef FcDirCacheLoad
- #undef FcDirCacheRescan
- #undef FcDirCacheRead
- #undef FcDirCacheLoadFile
- #undef FcDirCacheUnload
- #undef FcFreeTypeQuery
- #undef FcFontSetCreate
- #undef FcFontSetDestroy
- #undef FcFontSetAdd
- #undef FcInitLoadConfig
- #undef FcInitLoadConfigAndFonts
- #undef FcInit
- #undef FcFini
- #undef FcGetVersion
- #undef FcInitReinitialize
- #undef FcInitBringUptoDate
- #undef FcGetLangs
- #undef FcLangNormalize
- #undef FcLangGetCharSet
- #undef FcLangSetCreate
- #undef FcLangSetDestroy
- #undef FcLangSetCopy
- #undef FcLangSetAdd
- #undef FcLangSetDel
- #undef FcLangSetHasLang
- #undef FcLangSetCompare
- #undef FcLangSetContains
- #undef FcLangSetEqual
- #undef FcLangSetHash
- #undef FcLangSetGetLangs
- #undef FcLangSetUnion
- #undef FcLangSetSubtract
- #undef FcObjectSetCreate
- #undef FcObjectSetAdd
- #undef FcObjectSetDestroy
- #undef FcObjectSetVaBuild
- #undef FcObjectSetBuild
- #undef FcFontSetList
- #undef FcFontList
- #undef FcAtomicCreate
- #undef FcAtomicLock
- #undef FcAtomicNewFile
- #undef FcAtomicOrigFile
- #undef FcAtomicReplaceOrig
- #undef FcAtomicDeleteNew
- #undef FcAtomicUnlock
- #undef FcAtomicDestroy
- #undef FcFontSetMatch
- #undef FcFontMatch
- #undef FcFontRenderPrepare
- #undef FcFontSetSort
- #undef FcFontSort
- #undef FcFontSetSortDestroy
- #undef FcMatrixCopy
- #undef FcMatrixEqual
- #undef FcMatrixMultiply
- #undef FcMatrixRotate
- #undef FcMatrixScale
- #undef FcMatrixShear
- #undef FcNameRegisterObjectTypes
- #undef FcNameUnregisterObjectTypes
- #undef FcNameGetObjectType
- #undef FcNameRegisterConstants
- #undef FcNameUnregisterConstants
- #undef FcNameGetConstant
- #undef FcNameConstant
- #undef FcNameParse
- #undef FcNameUnparse
- #undef FcPatternCreate
- #undef FcPatternDuplicate
- #undef FcPatternReference
- #undef FcPatternFilter
- #undef FcValueDestroy
- #undef FcValueEqual
- #undef FcValueSave
- #undef FcPatternDestroy
- #undef FcPatternEqual
- #undef FcPatternEqualSubset
- #undef FcPatternHash
- #undef FcPatternAdd
- #undef FcPatternAddWeak
- #undef FcPatternGet
- #undef FcPatternGetWithBinding
- #undef FcPatternDel
- #undef FcPatternRemove
- #undef FcPatternAddInteger
- #undef FcPatternAddDouble
- #undef FcPatternAddString
- #undef FcPatternAddMatrix
- #undef FcPatternAddCharSet
- #undef FcPatternAddBool
- #undef FcPatternAddLangSet
- #undef FcPatternAddRange
- #undef FcPatternGetInteger
- #undef FcPatternGetDouble
- #undef FcPatternGetString
- #undef FcPatternGetMatrix
- #undef FcPatternGetCharSet
- #undef FcPatternGetBool
- #undef FcPatternGetLangSet
- #undef FcPatternGetRange
- #undef FcPatternVaBuild
- #undef FcPatternBuild
- #undef FcPatternFormat
- #undef FcRangeCreateDouble
- #undef FcRangeCreateInteger
- #undef FcRangeDestroy
- #undef FcRangeCopy
- #undef FcRangeGetDouble
- #undef FcWeightFromOpenType
- #undef FcWeightToOpenType
- #undef FcStrCopy
- #undef FcStrCopyFilename
- #undef FcStrPlus
- #undef FcStrFree
- #undef FcStrDowncase
- #undef FcStrCmpIgnoreCase
- #undef FcStrCmp
- #undef FcStrStrIgnoreCase
- #undef FcStrStr
- #undef FcUtf8ToUcs4
- #undef FcUtf8Len
- #undef FcUcs4ToUtf8
- #undef FcUtf16ToUcs4
- #undef FcUtf16Len
- #undef FcStrDirname
- #undef FcStrBasename
- #undef FcStrSetCreate
- #undef FcStrSetMember
- #undef FcStrSetEqual
- #undef FcStrSetAdd
- #undef FcStrSetAddFilename
- #undef FcStrSetDel
- #undef FcStrSetDestroy
- #undef FcStrListCreate
- #undef FcStrListFirst
- #undef FcStrListNext
- #undef FcStrListDone
- #undef FcConfigParseAndLoad
- #undef FcConfigParseAndLoadFromMemory
- #include <dlfcn.h>
- #include <stdio.h>
- FcBlanks* (*FcBlanksCreate_dylibloader_wrapper_fontconfig)( void);
- void (*FcBlanksDestroy_dylibloader_wrapper_fontconfig)( FcBlanks*);
- FcBool (*FcBlanksAdd_dylibloader_wrapper_fontconfig)( FcBlanks*, FcChar32);
- FcBool (*FcBlanksIsMember_dylibloader_wrapper_fontconfig)( FcBlanks*, FcChar32);
- const FcChar8* (*FcCacheDir_dylibloader_wrapper_fontconfig)(const FcCache*);
- FcFontSet* (*FcCacheCopySet_dylibloader_wrapper_fontconfig)(const FcCache*);
- const FcChar8* (*FcCacheSubdir_dylibloader_wrapper_fontconfig)(const FcCache*, int);
- int (*FcCacheNumSubdir_dylibloader_wrapper_fontconfig)(const FcCache*);
- int (*FcCacheNumFont_dylibloader_wrapper_fontconfig)(const FcCache*);
- FcBool (*FcDirCacheUnlink_dylibloader_wrapper_fontconfig)(const FcChar8*, FcConfig*);
- FcBool (*FcDirCacheValid_dylibloader_wrapper_fontconfig)(const FcChar8*);
- FcBool (*FcDirCacheClean_dylibloader_wrapper_fontconfig)(const FcChar8*, FcBool);
- void (*FcCacheCreateTagFile_dylibloader_wrapper_fontconfig)(const FcConfig*);
- FcChar8* (*FcConfigHome_dylibloader_wrapper_fontconfig)( void);
- FcBool (*FcConfigEnableHome_dylibloader_wrapper_fontconfig)( FcBool);
- FcChar8* (*FcConfigFilename_dylibloader_wrapper_fontconfig)(const FcChar8*);
- FcConfig* (*FcConfigCreate_dylibloader_wrapper_fontconfig)( void);
- FcConfig* (*FcConfigReference_dylibloader_wrapper_fontconfig)( FcConfig*);
- void (*FcConfigDestroy_dylibloader_wrapper_fontconfig)( FcConfig*);
- FcBool (*FcConfigSetCurrent_dylibloader_wrapper_fontconfig)( FcConfig*);
- FcConfig* (*FcConfigGetCurrent_dylibloader_wrapper_fontconfig)( void);
- FcBool (*FcConfigUptoDate_dylibloader_wrapper_fontconfig)( FcConfig*);
- FcBool (*FcConfigBuildFonts_dylibloader_wrapper_fontconfig)( FcConfig*);
- FcStrList* (*FcConfigGetFontDirs_dylibloader_wrapper_fontconfig)( FcConfig*);
- FcStrList* (*FcConfigGetConfigDirs_dylibloader_wrapper_fontconfig)( FcConfig*);
- FcStrList* (*FcConfigGetConfigFiles_dylibloader_wrapper_fontconfig)( FcConfig*);
- FcChar8* (*FcConfigGetCache_dylibloader_wrapper_fontconfig)( FcConfig*);
- FcBlanks* (*FcConfigGetBlanks_dylibloader_wrapper_fontconfig)( FcConfig*);
- FcStrList* (*FcConfigGetCacheDirs_dylibloader_wrapper_fontconfig)(const FcConfig*);
- int (*FcConfigGetRescanInterval_dylibloader_wrapper_fontconfig)( FcConfig*);
- FcBool (*FcConfigSetRescanInterval_dylibloader_wrapper_fontconfig)( FcConfig*, int);
- FcFontSet* (*FcConfigGetFonts_dylibloader_wrapper_fontconfig)( FcConfig*, FcSetName);
- FcBool (*FcConfigAppFontAddFile_dylibloader_wrapper_fontconfig)( FcConfig*,const FcChar8*);
- FcBool (*FcConfigAppFontAddDir_dylibloader_wrapper_fontconfig)( FcConfig*,const FcChar8*);
- void (*FcConfigAppFontClear_dylibloader_wrapper_fontconfig)( FcConfig*);
- FcBool (*FcConfigSubstituteWithPat_dylibloader_wrapper_fontconfig)( FcConfig*, FcPattern*, FcPattern*, FcMatchKind);
- FcBool (*FcConfigSubstitute_dylibloader_wrapper_fontconfig)( FcConfig*, FcPattern*, FcMatchKind);
- const FcChar8* (*FcConfigGetSysRoot_dylibloader_wrapper_fontconfig)(const FcConfig*);
- void (*FcConfigSetSysRoot_dylibloader_wrapper_fontconfig)( FcConfig*,const FcChar8*);
- void (*FcValuePrint_dylibloader_wrapper_fontconfig)(const FcValue);
- void (*FcPatternPrint_dylibloader_wrapper_fontconfig)(const FcPattern*);
- void (*FcFontSetPrint_dylibloader_wrapper_fontconfig)(const FcFontSet*);
- FcStrSet* (*FcGetDefaultLangs_dylibloader_wrapper_fontconfig)( void);
- void (*FcDefaultSubstitute_dylibloader_wrapper_fontconfig)( FcPattern*);
- FcBool (*FcFileIsDir_dylibloader_wrapper_fontconfig)(const FcChar8*);
- FcBool (*FcFileScan_dylibloader_wrapper_fontconfig)( FcFontSet*, FcStrSet*, FcFileCache*, FcBlanks*,const FcChar8*, FcBool);
- FcBool (*FcDirScan_dylibloader_wrapper_fontconfig)( FcFontSet*, FcStrSet*, FcFileCache*, FcBlanks*,const FcChar8*, FcBool);
- FcBool (*FcDirSave_dylibloader_wrapper_fontconfig)( FcFontSet*, FcStrSet*,const FcChar8*);
- FcCache* (*FcDirCacheLoad_dylibloader_wrapper_fontconfig)(const FcChar8*, FcConfig*, FcChar8**);
- FcCache* (*FcDirCacheRescan_dylibloader_wrapper_fontconfig)(const FcChar8*, FcConfig*);
- FcCache* (*FcDirCacheRead_dylibloader_wrapper_fontconfig)(const FcChar8*, FcBool, FcConfig*);
- FcCache* (*FcDirCacheLoadFile_dylibloader_wrapper_fontconfig)(const FcChar8*,struct stat*);
- void (*FcDirCacheUnload_dylibloader_wrapper_fontconfig)( FcCache*);
- FcPattern* (*FcFreeTypeQuery_dylibloader_wrapper_fontconfig)(const FcChar8*, int, FcBlanks*, int*);
- FcFontSet* (*FcFontSetCreate_dylibloader_wrapper_fontconfig)( void);
- void (*FcFontSetDestroy_dylibloader_wrapper_fontconfig)( FcFontSet*);
- FcBool (*FcFontSetAdd_dylibloader_wrapper_fontconfig)( FcFontSet*, FcPattern*);
- FcConfig* (*FcInitLoadConfig_dylibloader_wrapper_fontconfig)( void);
- FcConfig* (*FcInitLoadConfigAndFonts_dylibloader_wrapper_fontconfig)( void);
- FcBool (*FcInit_dylibloader_wrapper_fontconfig)( void);
- void (*FcFini_dylibloader_wrapper_fontconfig)( void);
- int (*FcGetVersion_dylibloader_wrapper_fontconfig)( void);
- FcBool (*FcInitReinitialize_dylibloader_wrapper_fontconfig)( void);
- FcBool (*FcInitBringUptoDate_dylibloader_wrapper_fontconfig)( void);
- FcStrSet* (*FcGetLangs_dylibloader_wrapper_fontconfig)( void);
- FcChar8* (*FcLangNormalize_dylibloader_wrapper_fontconfig)(const FcChar8*);
- const FcCharSet* (*FcLangGetCharSet_dylibloader_wrapper_fontconfig)(const FcChar8*);
- FcLangSet* (*FcLangSetCreate_dylibloader_wrapper_fontconfig)( void);
- void (*FcLangSetDestroy_dylibloader_wrapper_fontconfig)( FcLangSet*);
- FcLangSet* (*FcLangSetCopy_dylibloader_wrapper_fontconfig)(const FcLangSet*);
- FcBool (*FcLangSetAdd_dylibloader_wrapper_fontconfig)( FcLangSet*,const FcChar8*);
- FcBool (*FcLangSetDel_dylibloader_wrapper_fontconfig)( FcLangSet*,const FcChar8*);
- FcLangResult (*FcLangSetHasLang_dylibloader_wrapper_fontconfig)(const FcLangSet*,const FcChar8*);
- FcLangResult (*FcLangSetCompare_dylibloader_wrapper_fontconfig)(const FcLangSet*,const FcLangSet*);
- FcBool (*FcLangSetContains_dylibloader_wrapper_fontconfig)(const FcLangSet*,const FcLangSet*);
- FcBool (*FcLangSetEqual_dylibloader_wrapper_fontconfig)(const FcLangSet*,const FcLangSet*);
- FcChar32 (*FcLangSetHash_dylibloader_wrapper_fontconfig)(const FcLangSet*);
- FcStrSet* (*FcLangSetGetLangs_dylibloader_wrapper_fontconfig)(const FcLangSet*);
- FcLangSet* (*FcLangSetUnion_dylibloader_wrapper_fontconfig)(const FcLangSet*,const FcLangSet*);
- FcLangSet* (*FcLangSetSubtract_dylibloader_wrapper_fontconfig)(const FcLangSet*,const FcLangSet*);
- FcObjectSet* (*FcObjectSetCreate_dylibloader_wrapper_fontconfig)( void);
- FcBool (*FcObjectSetAdd_dylibloader_wrapper_fontconfig)( FcObjectSet*,const char*);
- void (*FcObjectSetDestroy_dylibloader_wrapper_fontconfig)( FcObjectSet*);
- FcObjectSet* (*FcObjectSetVaBuild_dylibloader_wrapper_fontconfig)(const char*, va_list);
- FcObjectSet* (*FcObjectSetBuild_dylibloader_wrapper_fontconfig)(const char*,...);
- FcFontSet* (*FcFontSetList_dylibloader_wrapper_fontconfig)( FcConfig*, FcFontSet**, int, FcPattern*, FcObjectSet*);
- FcFontSet* (*FcFontList_dylibloader_wrapper_fontconfig)( FcConfig*, FcPattern*, FcObjectSet*);
- FcAtomic* (*FcAtomicCreate_dylibloader_wrapper_fontconfig)(const FcChar8*);
- FcBool (*FcAtomicLock_dylibloader_wrapper_fontconfig)( FcAtomic*);
- FcChar8* (*FcAtomicNewFile_dylibloader_wrapper_fontconfig)( FcAtomic*);
- FcChar8* (*FcAtomicOrigFile_dylibloader_wrapper_fontconfig)( FcAtomic*);
- FcBool (*FcAtomicReplaceOrig_dylibloader_wrapper_fontconfig)( FcAtomic*);
- void (*FcAtomicDeleteNew_dylibloader_wrapper_fontconfig)( FcAtomic*);
- void (*FcAtomicUnlock_dylibloader_wrapper_fontconfig)( FcAtomic*);
- void (*FcAtomicDestroy_dylibloader_wrapper_fontconfig)( FcAtomic*);
- FcPattern* (*FcFontSetMatch_dylibloader_wrapper_fontconfig)( FcConfig*, FcFontSet**, int, FcPattern*, FcResult*);
- FcPattern* (*FcFontMatch_dylibloader_wrapper_fontconfig)( FcConfig*, FcPattern*, FcResult*);
- FcPattern* (*FcFontRenderPrepare_dylibloader_wrapper_fontconfig)( FcConfig*, FcPattern*, FcPattern*);
- FcFontSet* (*FcFontSetSort_dylibloader_wrapper_fontconfig)( FcConfig*, FcFontSet**, int, FcPattern*, FcBool, FcCharSet**, FcResult*);
- FcFontSet* (*FcFontSort_dylibloader_wrapper_fontconfig)( FcConfig*, FcPattern*, FcBool, FcCharSet**, FcResult*);
- void (*FcFontSetSortDestroy_dylibloader_wrapper_fontconfig)( FcFontSet*);
- FcMatrix* (*FcMatrixCopy_dylibloader_wrapper_fontconfig)(const FcMatrix*);
- FcBool (*FcMatrixEqual_dylibloader_wrapper_fontconfig)(const FcMatrix*,const FcMatrix*);
- void (*FcMatrixMultiply_dylibloader_wrapper_fontconfig)( FcMatrix*,const FcMatrix*,const FcMatrix*);
- void (*FcMatrixRotate_dylibloader_wrapper_fontconfig)( FcMatrix*, double, double);
- void (*FcMatrixScale_dylibloader_wrapper_fontconfig)( FcMatrix*, double, double);
- void (*FcMatrixShear_dylibloader_wrapper_fontconfig)( FcMatrix*, double, double);
- FcBool (*FcNameRegisterObjectTypes_dylibloader_wrapper_fontconfig)(const FcObjectType*, int);
- FcBool (*FcNameUnregisterObjectTypes_dylibloader_wrapper_fontconfig)(const FcObjectType*, int);
- const FcObjectType* (*FcNameGetObjectType_dylibloader_wrapper_fontconfig)(const char*);
- FcBool (*FcNameRegisterConstants_dylibloader_wrapper_fontconfig)(const FcConstant*, int);
- FcBool (*FcNameUnregisterConstants_dylibloader_wrapper_fontconfig)(const FcConstant*, int);
- const FcConstant* (*FcNameGetConstant_dylibloader_wrapper_fontconfig)(const FcChar8*);
- FcBool (*FcNameConstant_dylibloader_wrapper_fontconfig)(const FcChar8*, int*);
- FcPattern* (*FcNameParse_dylibloader_wrapper_fontconfig)(const FcChar8*);
- FcChar8* (*FcNameUnparse_dylibloader_wrapper_fontconfig)( FcPattern*);
- FcPattern* (*FcPatternCreate_dylibloader_wrapper_fontconfig)( void);
- FcPattern* (*FcPatternDuplicate_dylibloader_wrapper_fontconfig)(const FcPattern*);
- void (*FcPatternReference_dylibloader_wrapper_fontconfig)( FcPattern*);
- FcPattern* (*FcPatternFilter_dylibloader_wrapper_fontconfig)( FcPattern*,const FcObjectSet*);
- void (*FcValueDestroy_dylibloader_wrapper_fontconfig)( FcValue);
- FcBool (*FcValueEqual_dylibloader_wrapper_fontconfig)( FcValue, FcValue);
- FcValue (*FcValueSave_dylibloader_wrapper_fontconfig)( FcValue);
- void (*FcPatternDestroy_dylibloader_wrapper_fontconfig)( FcPattern*);
- FcBool (*FcPatternEqual_dylibloader_wrapper_fontconfig)(const FcPattern*,const FcPattern*);
- FcBool (*FcPatternEqualSubset_dylibloader_wrapper_fontconfig)(const FcPattern*,const FcPattern*,const FcObjectSet*);
- FcChar32 (*FcPatternHash_dylibloader_wrapper_fontconfig)(const FcPattern*);
- FcBool (*FcPatternAdd_dylibloader_wrapper_fontconfig)( FcPattern*,const char*, FcValue, FcBool);
- FcBool (*FcPatternAddWeak_dylibloader_wrapper_fontconfig)( FcPattern*,const char*, FcValue, FcBool);
- FcResult (*FcPatternGet_dylibloader_wrapper_fontconfig)(const FcPattern*,const char*, int, FcValue*);
- FcResult (*FcPatternGetWithBinding_dylibloader_wrapper_fontconfig)(const FcPattern*,const char*, int, FcValue*, FcValueBinding*);
- FcBool (*FcPatternDel_dylibloader_wrapper_fontconfig)( FcPattern*,const char*);
- FcBool (*FcPatternRemove_dylibloader_wrapper_fontconfig)( FcPattern*,const char*, int);
- FcBool (*FcPatternAddInteger_dylibloader_wrapper_fontconfig)( FcPattern*,const char*, int);
- FcBool (*FcPatternAddDouble_dylibloader_wrapper_fontconfig)( FcPattern*,const char*, double);
- FcBool (*FcPatternAddString_dylibloader_wrapper_fontconfig)( FcPattern*,const char*,const FcChar8*);
- FcBool (*FcPatternAddMatrix_dylibloader_wrapper_fontconfig)( FcPattern*,const char*,const FcMatrix*);
- FcBool (*FcPatternAddCharSet_dylibloader_wrapper_fontconfig)( FcPattern*,const char*,const FcCharSet*);
- FcBool (*FcPatternAddBool_dylibloader_wrapper_fontconfig)( FcPattern*,const char*, FcBool);
- FcBool (*FcPatternAddLangSet_dylibloader_wrapper_fontconfig)( FcPattern*,const char*,const FcLangSet*);
- FcBool (*FcPatternAddRange_dylibloader_wrapper_fontconfig)( FcPattern*,const char*,const FcRange*);
- FcResult (*FcPatternGetInteger_dylibloader_wrapper_fontconfig)(const FcPattern*,const char*, int, int*);
- FcResult (*FcPatternGetDouble_dylibloader_wrapper_fontconfig)(const FcPattern*,const char*, int, double*);
- FcResult (*FcPatternGetString_dylibloader_wrapper_fontconfig)(const FcPattern*,const char*, int, FcChar8**);
- FcResult (*FcPatternGetMatrix_dylibloader_wrapper_fontconfig)(const FcPattern*,const char*, int, FcMatrix**);
- FcResult (*FcPatternGetCharSet_dylibloader_wrapper_fontconfig)(const FcPattern*,const char*, int, FcCharSet**);
- FcResult (*FcPatternGetBool_dylibloader_wrapper_fontconfig)(const FcPattern*,const char*, int, FcBool*);
- FcResult (*FcPatternGetLangSet_dylibloader_wrapper_fontconfig)(const FcPattern*,const char*, int, FcLangSet**);
- FcResult (*FcPatternGetRange_dylibloader_wrapper_fontconfig)(const FcPattern*,const char*, int, FcRange**);
- FcPattern* (*FcPatternVaBuild_dylibloader_wrapper_fontconfig)( FcPattern*, va_list);
- FcPattern* (*FcPatternBuild_dylibloader_wrapper_fontconfig)( FcPattern*,...);
- FcChar8* (*FcPatternFormat_dylibloader_wrapper_fontconfig)( FcPattern*,const FcChar8*);
- FcRange* (*FcRangeCreateDouble_dylibloader_wrapper_fontconfig)( double, double);
- FcRange* (*FcRangeCreateInteger_dylibloader_wrapper_fontconfig)( FcChar32, FcChar32);
- void (*FcRangeDestroy_dylibloader_wrapper_fontconfig)( FcRange*);
- FcRange* (*FcRangeCopy_dylibloader_wrapper_fontconfig)(const FcRange*);
- FcBool (*FcRangeGetDouble_dylibloader_wrapper_fontconfig)(const FcRange*, double*, double*);
- int (*FcWeightFromOpenType_dylibloader_wrapper_fontconfig)( int);
- int (*FcWeightToOpenType_dylibloader_wrapper_fontconfig)( int);
- FcChar8* (*FcStrCopy_dylibloader_wrapper_fontconfig)(const FcChar8*);
- FcChar8* (*FcStrCopyFilename_dylibloader_wrapper_fontconfig)(const FcChar8*);
- FcChar8* (*FcStrPlus_dylibloader_wrapper_fontconfig)(const FcChar8*,const FcChar8*);
- void (*FcStrFree_dylibloader_wrapper_fontconfig)( FcChar8*);
- FcChar8* (*FcStrDowncase_dylibloader_wrapper_fontconfig)(const FcChar8*);
- int (*FcStrCmpIgnoreCase_dylibloader_wrapper_fontconfig)(const FcChar8*,const FcChar8*);
- int (*FcStrCmp_dylibloader_wrapper_fontconfig)(const FcChar8*,const FcChar8*);
- const FcChar8* (*FcStrStrIgnoreCase_dylibloader_wrapper_fontconfig)(const FcChar8*,const FcChar8*);
- const FcChar8* (*FcStrStr_dylibloader_wrapper_fontconfig)(const FcChar8*,const FcChar8*);
- int (*FcUtf8ToUcs4_dylibloader_wrapper_fontconfig)(const FcChar8*, FcChar32*, int);
- FcBool (*FcUtf8Len_dylibloader_wrapper_fontconfig)(const FcChar8*, int, int*, int*);
- int (*FcUcs4ToUtf8_dylibloader_wrapper_fontconfig)( FcChar32, FcChar8 [6]);
- int (*FcUtf16ToUcs4_dylibloader_wrapper_fontconfig)(const FcChar8*, FcEndian, FcChar32*, int);
- FcBool (*FcUtf16Len_dylibloader_wrapper_fontconfig)(const FcChar8*, FcEndian, int, int*, int*);
- FcChar8* (*FcStrDirname_dylibloader_wrapper_fontconfig)(const FcChar8*);
- FcChar8* (*FcStrBasename_dylibloader_wrapper_fontconfig)(const FcChar8*);
- FcStrSet* (*FcStrSetCreate_dylibloader_wrapper_fontconfig)( void);
- FcBool (*FcStrSetMember_dylibloader_wrapper_fontconfig)( FcStrSet*,const FcChar8*);
- FcBool (*FcStrSetEqual_dylibloader_wrapper_fontconfig)( FcStrSet*, FcStrSet*);
- FcBool (*FcStrSetAdd_dylibloader_wrapper_fontconfig)( FcStrSet*,const FcChar8*);
- FcBool (*FcStrSetAddFilename_dylibloader_wrapper_fontconfig)( FcStrSet*,const FcChar8*);
- FcBool (*FcStrSetDel_dylibloader_wrapper_fontconfig)( FcStrSet*,const FcChar8*);
- void (*FcStrSetDestroy_dylibloader_wrapper_fontconfig)( FcStrSet*);
- FcStrList* (*FcStrListCreate_dylibloader_wrapper_fontconfig)( FcStrSet*);
- void (*FcStrListFirst_dylibloader_wrapper_fontconfig)( FcStrList*);
- FcChar8* (*FcStrListNext_dylibloader_wrapper_fontconfig)( FcStrList*);
- void (*FcStrListDone_dylibloader_wrapper_fontconfig)( FcStrList*);
- FcBool (*FcConfigParseAndLoad_dylibloader_wrapper_fontconfig)( FcConfig*,const FcChar8*, FcBool);
- FcBool (*FcConfigParseAndLoadFromMemory_dylibloader_wrapper_fontconfig)( FcConfig*,const FcChar8*, FcBool);
- int initialize_fontconfig(int verbose) {
- void *handle;
- char *error;
- handle = dlopen("libfontconfig.so", RTLD_LAZY);
- if (!handle) {
- if (verbose) {
- fprintf(stderr, "%s\n", dlerror());
- }
- return(1);
- }
- dlerror();
- // FcBlanksCreate
- *(void **) (&FcBlanksCreate_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcBlanksCreate");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcBlanksDestroy
- *(void **) (&FcBlanksDestroy_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcBlanksDestroy");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcBlanksAdd
- *(void **) (&FcBlanksAdd_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcBlanksAdd");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcBlanksIsMember
- *(void **) (&FcBlanksIsMember_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcBlanksIsMember");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcCacheDir
- *(void **) (&FcCacheDir_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcCacheDir");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcCacheCopySet
- *(void **) (&FcCacheCopySet_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcCacheCopySet");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcCacheSubdir
- *(void **) (&FcCacheSubdir_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcCacheSubdir");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcCacheNumSubdir
- *(void **) (&FcCacheNumSubdir_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcCacheNumSubdir");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcCacheNumFont
- *(void **) (&FcCacheNumFont_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcCacheNumFont");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcDirCacheUnlink
- *(void **) (&FcDirCacheUnlink_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcDirCacheUnlink");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcDirCacheValid
- *(void **) (&FcDirCacheValid_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcDirCacheValid");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcDirCacheClean
- *(void **) (&FcDirCacheClean_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcDirCacheClean");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcCacheCreateTagFile
- *(void **) (&FcCacheCreateTagFile_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcCacheCreateTagFile");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcConfigHome
- *(void **) (&FcConfigHome_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcConfigHome");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcConfigEnableHome
- *(void **) (&FcConfigEnableHome_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcConfigEnableHome");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcConfigFilename
- *(void **) (&FcConfigFilename_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcConfigFilename");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcConfigCreate
- *(void **) (&FcConfigCreate_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcConfigCreate");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcConfigReference
- *(void **) (&FcConfigReference_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcConfigReference");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcConfigDestroy
- *(void **) (&FcConfigDestroy_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcConfigDestroy");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcConfigSetCurrent
- *(void **) (&FcConfigSetCurrent_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcConfigSetCurrent");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcConfigGetCurrent
- *(void **) (&FcConfigGetCurrent_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcConfigGetCurrent");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcConfigUptoDate
- *(void **) (&FcConfigUptoDate_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcConfigUptoDate");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcConfigBuildFonts
- *(void **) (&FcConfigBuildFonts_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcConfigBuildFonts");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcConfigGetFontDirs
- *(void **) (&FcConfigGetFontDirs_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcConfigGetFontDirs");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcConfigGetConfigDirs
- *(void **) (&FcConfigGetConfigDirs_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcConfigGetConfigDirs");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcConfigGetConfigFiles
- *(void **) (&FcConfigGetConfigFiles_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcConfigGetConfigFiles");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcConfigGetCache
- *(void **) (&FcConfigGetCache_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcConfigGetCache");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcConfigGetBlanks
- *(void **) (&FcConfigGetBlanks_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcConfigGetBlanks");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcConfigGetCacheDirs
- *(void **) (&FcConfigGetCacheDirs_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcConfigGetCacheDirs");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcConfigGetRescanInterval
- *(void **) (&FcConfigGetRescanInterval_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcConfigGetRescanInterval");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcConfigSetRescanInterval
- *(void **) (&FcConfigSetRescanInterval_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcConfigSetRescanInterval");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcConfigGetFonts
- *(void **) (&FcConfigGetFonts_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcConfigGetFonts");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcConfigAppFontAddFile
- *(void **) (&FcConfigAppFontAddFile_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcConfigAppFontAddFile");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcConfigAppFontAddDir
- *(void **) (&FcConfigAppFontAddDir_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcConfigAppFontAddDir");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcConfigAppFontClear
- *(void **) (&FcConfigAppFontClear_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcConfigAppFontClear");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcConfigSubstituteWithPat
- *(void **) (&FcConfigSubstituteWithPat_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcConfigSubstituteWithPat");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcConfigSubstitute
- *(void **) (&FcConfigSubstitute_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcConfigSubstitute");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcConfigGetSysRoot
- *(void **) (&FcConfigGetSysRoot_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcConfigGetSysRoot");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcConfigSetSysRoot
- *(void **) (&FcConfigSetSysRoot_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcConfigSetSysRoot");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcValuePrint
- *(void **) (&FcValuePrint_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcValuePrint");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcPatternPrint
- *(void **) (&FcPatternPrint_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcPatternPrint");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcFontSetPrint
- *(void **) (&FcFontSetPrint_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcFontSetPrint");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcGetDefaultLangs
- *(void **) (&FcGetDefaultLangs_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcGetDefaultLangs");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcDefaultSubstitute
- *(void **) (&FcDefaultSubstitute_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcDefaultSubstitute");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcFileIsDir
- *(void **) (&FcFileIsDir_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcFileIsDir");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcFileScan
- *(void **) (&FcFileScan_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcFileScan");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcDirScan
- *(void **) (&FcDirScan_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcDirScan");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcDirSave
- *(void **) (&FcDirSave_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcDirSave");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcDirCacheLoad
- *(void **) (&FcDirCacheLoad_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcDirCacheLoad");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcDirCacheRescan
- *(void **) (&FcDirCacheRescan_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcDirCacheRescan");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcDirCacheRead
- *(void **) (&FcDirCacheRead_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcDirCacheRead");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcDirCacheLoadFile
- *(void **) (&FcDirCacheLoadFile_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcDirCacheLoadFile");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcDirCacheUnload
- *(void **) (&FcDirCacheUnload_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcDirCacheUnload");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcFreeTypeQuery
- *(void **) (&FcFreeTypeQuery_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcFreeTypeQuery");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcFontSetCreate
- *(void **) (&FcFontSetCreate_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcFontSetCreate");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcFontSetDestroy
- *(void **) (&FcFontSetDestroy_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcFontSetDestroy");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcFontSetAdd
- *(void **) (&FcFontSetAdd_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcFontSetAdd");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcInitLoadConfig
- *(void **) (&FcInitLoadConfig_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcInitLoadConfig");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcInitLoadConfigAndFonts
- *(void **) (&FcInitLoadConfigAndFonts_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcInitLoadConfigAndFonts");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcInit
- *(void **) (&FcInit_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcInit");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcFini
- *(void **) (&FcFini_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcFini");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcGetVersion
- *(void **) (&FcGetVersion_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcGetVersion");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcInitReinitialize
- *(void **) (&FcInitReinitialize_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcInitReinitialize");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcInitBringUptoDate
- *(void **) (&FcInitBringUptoDate_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcInitBringUptoDate");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcGetLangs
- *(void **) (&FcGetLangs_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcGetLangs");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcLangNormalize
- *(void **) (&FcLangNormalize_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcLangNormalize");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcLangGetCharSet
- *(void **) (&FcLangGetCharSet_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcLangGetCharSet");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcLangSetCreate
- *(void **) (&FcLangSetCreate_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcLangSetCreate");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcLangSetDestroy
- *(void **) (&FcLangSetDestroy_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcLangSetDestroy");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcLangSetCopy
- *(void **) (&FcLangSetCopy_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcLangSetCopy");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcLangSetAdd
- *(void **) (&FcLangSetAdd_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcLangSetAdd");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcLangSetDel
- *(void **) (&FcLangSetDel_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcLangSetDel");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcLangSetHasLang
- *(void **) (&FcLangSetHasLang_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcLangSetHasLang");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcLangSetCompare
- *(void **) (&FcLangSetCompare_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcLangSetCompare");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcLangSetContains
- *(void **) (&FcLangSetContains_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcLangSetContains");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcLangSetEqual
- *(void **) (&FcLangSetEqual_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcLangSetEqual");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcLangSetHash
- *(void **) (&FcLangSetHash_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcLangSetHash");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcLangSetGetLangs
- *(void **) (&FcLangSetGetLangs_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcLangSetGetLangs");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcLangSetUnion
- *(void **) (&FcLangSetUnion_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcLangSetUnion");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcLangSetSubtract
- *(void **) (&FcLangSetSubtract_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcLangSetSubtract");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcObjectSetCreate
- *(void **) (&FcObjectSetCreate_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcObjectSetCreate");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcObjectSetAdd
- *(void **) (&FcObjectSetAdd_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcObjectSetAdd");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcObjectSetDestroy
- *(void **) (&FcObjectSetDestroy_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcObjectSetDestroy");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcObjectSetVaBuild
- *(void **) (&FcObjectSetVaBuild_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcObjectSetVaBuild");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcObjectSetBuild
- *(void **) (&FcObjectSetBuild_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcObjectSetBuild");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcFontSetList
- *(void **) (&FcFontSetList_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcFontSetList");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcFontList
- *(void **) (&FcFontList_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcFontList");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcAtomicCreate
- *(void **) (&FcAtomicCreate_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcAtomicCreate");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcAtomicLock
- *(void **) (&FcAtomicLock_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcAtomicLock");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcAtomicNewFile
- *(void **) (&FcAtomicNewFile_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcAtomicNewFile");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcAtomicOrigFile
- *(void **) (&FcAtomicOrigFile_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcAtomicOrigFile");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcAtomicReplaceOrig
- *(void **) (&FcAtomicReplaceOrig_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcAtomicReplaceOrig");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcAtomicDeleteNew
- *(void **) (&FcAtomicDeleteNew_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcAtomicDeleteNew");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcAtomicUnlock
- *(void **) (&FcAtomicUnlock_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcAtomicUnlock");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcAtomicDestroy
- *(void **) (&FcAtomicDestroy_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcAtomicDestroy");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcFontSetMatch
- *(void **) (&FcFontSetMatch_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcFontSetMatch");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcFontMatch
- *(void **) (&FcFontMatch_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcFontMatch");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcFontRenderPrepare
- *(void **) (&FcFontRenderPrepare_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcFontRenderPrepare");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcFontSetSort
- *(void **) (&FcFontSetSort_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcFontSetSort");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcFontSort
- *(void **) (&FcFontSort_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcFontSort");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcFontSetSortDestroy
- *(void **) (&FcFontSetSortDestroy_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcFontSetSortDestroy");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcMatrixCopy
- *(void **) (&FcMatrixCopy_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcMatrixCopy");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcMatrixEqual
- *(void **) (&FcMatrixEqual_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcMatrixEqual");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcMatrixMultiply
- *(void **) (&FcMatrixMultiply_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcMatrixMultiply");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcMatrixRotate
- *(void **) (&FcMatrixRotate_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcMatrixRotate");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcMatrixScale
- *(void **) (&FcMatrixScale_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcMatrixScale");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcMatrixShear
- *(void **) (&FcMatrixShear_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcMatrixShear");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcNameRegisterObjectTypes
- *(void **) (&FcNameRegisterObjectTypes_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcNameRegisterObjectTypes");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcNameUnregisterObjectTypes
- *(void **) (&FcNameUnregisterObjectTypes_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcNameUnregisterObjectTypes");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcNameGetObjectType
- *(void **) (&FcNameGetObjectType_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcNameGetObjectType");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcNameRegisterConstants
- *(void **) (&FcNameRegisterConstants_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcNameRegisterConstants");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcNameUnregisterConstants
- *(void **) (&FcNameUnregisterConstants_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcNameUnregisterConstants");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcNameGetConstant
- *(void **) (&FcNameGetConstant_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcNameGetConstant");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcNameConstant
- *(void **) (&FcNameConstant_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcNameConstant");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcNameParse
- *(void **) (&FcNameParse_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcNameParse");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcNameUnparse
- *(void **) (&FcNameUnparse_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcNameUnparse");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcPatternCreate
- *(void **) (&FcPatternCreate_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcPatternCreate");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcPatternDuplicate
- *(void **) (&FcPatternDuplicate_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcPatternDuplicate");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcPatternReference
- *(void **) (&FcPatternReference_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcPatternReference");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcPatternFilter
- *(void **) (&FcPatternFilter_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcPatternFilter");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcValueDestroy
- *(void **) (&FcValueDestroy_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcValueDestroy");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcValueEqual
- *(void **) (&FcValueEqual_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcValueEqual");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcValueSave
- *(void **) (&FcValueSave_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcValueSave");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcPatternDestroy
- *(void **) (&FcPatternDestroy_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcPatternDestroy");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcPatternEqual
- *(void **) (&FcPatternEqual_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcPatternEqual");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcPatternEqualSubset
- *(void **) (&FcPatternEqualSubset_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcPatternEqualSubset");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcPatternHash
- *(void **) (&FcPatternHash_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcPatternHash");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcPatternAdd
- *(void **) (&FcPatternAdd_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcPatternAdd");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcPatternAddWeak
- *(void **) (&FcPatternAddWeak_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcPatternAddWeak");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcPatternGet
- *(void **) (&FcPatternGet_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcPatternGet");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcPatternGetWithBinding
- *(void **) (&FcPatternGetWithBinding_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcPatternGetWithBinding");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcPatternDel
- *(void **) (&FcPatternDel_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcPatternDel");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcPatternRemove
- *(void **) (&FcPatternRemove_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcPatternRemove");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcPatternAddInteger
- *(void **) (&FcPatternAddInteger_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcPatternAddInteger");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcPatternAddDouble
- *(void **) (&FcPatternAddDouble_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcPatternAddDouble");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcPatternAddString
- *(void **) (&FcPatternAddString_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcPatternAddString");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcPatternAddMatrix
- *(void **) (&FcPatternAddMatrix_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcPatternAddMatrix");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcPatternAddCharSet
- *(void **) (&FcPatternAddCharSet_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcPatternAddCharSet");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcPatternAddBool
- *(void **) (&FcPatternAddBool_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcPatternAddBool");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcPatternAddLangSet
- *(void **) (&FcPatternAddLangSet_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcPatternAddLangSet");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcPatternAddRange
- *(void **) (&FcPatternAddRange_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcPatternAddRange");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcPatternGetInteger
- *(void **) (&FcPatternGetInteger_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcPatternGetInteger");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcPatternGetDouble
- *(void **) (&FcPatternGetDouble_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcPatternGetDouble");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcPatternGetString
- *(void **) (&FcPatternGetString_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcPatternGetString");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcPatternGetMatrix
- *(void **) (&FcPatternGetMatrix_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcPatternGetMatrix");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcPatternGetCharSet
- *(void **) (&FcPatternGetCharSet_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcPatternGetCharSet");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcPatternGetBool
- *(void **) (&FcPatternGetBool_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcPatternGetBool");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcPatternGetLangSet
- *(void **) (&FcPatternGetLangSet_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcPatternGetLangSet");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcPatternGetRange
- *(void **) (&FcPatternGetRange_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcPatternGetRange");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcPatternVaBuild
- *(void **) (&FcPatternVaBuild_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcPatternVaBuild");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcPatternBuild
- *(void **) (&FcPatternBuild_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcPatternBuild");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcPatternFormat
- *(void **) (&FcPatternFormat_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcPatternFormat");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcRangeCreateDouble
- *(void **) (&FcRangeCreateDouble_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcRangeCreateDouble");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcRangeCreateInteger
- *(void **) (&FcRangeCreateInteger_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcRangeCreateInteger");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcRangeDestroy
- *(void **) (&FcRangeDestroy_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcRangeDestroy");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcRangeCopy
- *(void **) (&FcRangeCopy_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcRangeCopy");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcRangeGetDouble
- *(void **) (&FcRangeGetDouble_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcRangeGetDouble");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcWeightFromOpenType
- *(void **) (&FcWeightFromOpenType_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcWeightFromOpenType");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcWeightToOpenType
- *(void **) (&FcWeightToOpenType_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcWeightToOpenType");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcStrCopy
- *(void **) (&FcStrCopy_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcStrCopy");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcStrCopyFilename
- *(void **) (&FcStrCopyFilename_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcStrCopyFilename");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcStrPlus
- *(void **) (&FcStrPlus_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcStrPlus");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcStrFree
- *(void **) (&FcStrFree_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcStrFree");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcStrDowncase
- *(void **) (&FcStrDowncase_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcStrDowncase");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcStrCmpIgnoreCase
- *(void **) (&FcStrCmpIgnoreCase_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcStrCmpIgnoreCase");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcStrCmp
- *(void **) (&FcStrCmp_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcStrCmp");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcStrStrIgnoreCase
- *(void **) (&FcStrStrIgnoreCase_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcStrStrIgnoreCase");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcStrStr
- *(void **) (&FcStrStr_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcStrStr");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcUtf8ToUcs4
- *(void **) (&FcUtf8ToUcs4_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcUtf8ToUcs4");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcUtf8Len
- *(void **) (&FcUtf8Len_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcUtf8Len");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcUcs4ToUtf8
- *(void **) (&FcUcs4ToUtf8_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcUcs4ToUtf8");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcUtf16ToUcs4
- *(void **) (&FcUtf16ToUcs4_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcUtf16ToUcs4");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcUtf16Len
- *(void **) (&FcUtf16Len_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcUtf16Len");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcStrDirname
- *(void **) (&FcStrDirname_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcStrDirname");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcStrBasename
- *(void **) (&FcStrBasename_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcStrBasename");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcStrSetCreate
- *(void **) (&FcStrSetCreate_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcStrSetCreate");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcStrSetMember
- *(void **) (&FcStrSetMember_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcStrSetMember");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcStrSetEqual
- *(void **) (&FcStrSetEqual_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcStrSetEqual");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcStrSetAdd
- *(void **) (&FcStrSetAdd_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcStrSetAdd");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcStrSetAddFilename
- *(void **) (&FcStrSetAddFilename_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcStrSetAddFilename");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcStrSetDel
- *(void **) (&FcStrSetDel_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcStrSetDel");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcStrSetDestroy
- *(void **) (&FcStrSetDestroy_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcStrSetDestroy");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcStrListCreate
- *(void **) (&FcStrListCreate_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcStrListCreate");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcStrListFirst
- *(void **) (&FcStrListFirst_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcStrListFirst");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcStrListNext
- *(void **) (&FcStrListNext_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcStrListNext");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcStrListDone
- *(void **) (&FcStrListDone_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcStrListDone");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcConfigParseAndLoad
- *(void **) (&FcConfigParseAndLoad_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcConfigParseAndLoad");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- // FcConfigParseAndLoadFromMemory
- *(void **) (&FcConfigParseAndLoadFromMemory_dylibloader_wrapper_fontconfig) = dlsym(handle, "FcConfigParseAndLoadFromMemory");
- if (verbose) {
- error = dlerror();
- if (error != NULL) {
- fprintf(stderr, "%s\n", error);
- }
- }
- return 0;
- }
|