├── .clang-format ├── .github ├── FUNDING.yml └── workflows │ ├── manual.yml │ └── release.yml ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── README_CN.md ├── README_UK.md ├── cmake_uninstall.cmake.in ├── debian ├── changelog ├── compat ├── control ├── copyright ├── lintian-override ├── rules ├── source │ └── format ├── upstream │ └── metadata └── watch ├── docs ├── CHANGELOG.md ├── COMPILE.md ├── USAGE.md ├── X64WINE.md ├── box64.pod └── img │ ├── Box64Icon.png │ └── Box64Logo.png ├── gdbjit └── reader.c ├── install_steam.sh ├── pkgbuilds ├── PKGBUILD-arm64 ├── PKGBUILD-asahi ├── PKGBUILD-lx2160a ├── PKGBUILD-odroid ├── PKGBUILD-phytium ├── PKGBUILD-raspberrypi ├── PKGBUILD-rk3xxx ├── PKGBUILD-rv64 ├── PKGBUILD-sd845 ├── PKGBUILD-tegra ├── PKGBUILD-x86_64 └── README.md ├── postinst ├── rebuild_wrappers.py ├── rebuild_wrappers_32.py ├── runTest.cmake ├── src ├── box32.c ├── box64context.c ├── box64version.h ├── build_info.c ├── build_info.h ├── core.c ├── custommem.c ├── custommmap.c ├── dynarec │ ├── arm64 │ │ ├── arm64_emitter.h │ │ ├── arm64_epilog.S │ │ ├── arm64_immenc.c │ │ ├── arm64_immenc.h │ │ ├── arm64_lock.S │ │ ├── arm64_lock.h │ │ ├── arm64_next.S │ │ ├── arm64_printer.c │ │ ├── arm64_printer.h │ │ ├── arm64_prolog.S │ │ ├── dynarec_arm64_00.c │ │ ├── dynarec_arm64_0f.c │ │ ├── dynarec_arm64_64.c │ │ ├── dynarec_arm64_66.c │ │ ├── dynarec_arm64_660f.c │ │ ├── dynarec_arm64_6664.c │ │ ├── dynarec_arm64_66f0.c │ │ ├── dynarec_arm64_66f20f.c │ │ ├── dynarec_arm64_66f30f.c │ │ ├── dynarec_arm64_67.c │ │ ├── dynarec_arm64_6764_32.c │ │ ├── dynarec_arm64_67_32.c │ │ ├── dynarec_arm64_67_avx.c │ │ ├── dynarec_arm64_arch.c │ │ ├── dynarec_arm64_arch.h │ │ ├── dynarec_arm64_avx.c │ │ ├── dynarec_arm64_avx_0f.c │ │ ├── dynarec_arm64_avx_0f38.c │ │ ├── dynarec_arm64_avx_66_0f.c │ │ ├── dynarec_arm64_avx_66_0f38.c │ │ ├── dynarec_arm64_avx_66_0f3a.c │ │ ├── dynarec_arm64_avx_f2_0f.c │ │ ├── dynarec_arm64_avx_f2_0f38.c │ │ ├── dynarec_arm64_avx_f2_0f3a.c │ │ ├── dynarec_arm64_avx_f3_0f.c │ │ ├── dynarec_arm64_avx_f3_0f38.c │ │ ├── dynarec_arm64_d8.c │ │ ├── dynarec_arm64_d9.c │ │ ├── dynarec_arm64_da.c │ │ ├── dynarec_arm64_db.c │ │ ├── dynarec_arm64_dc.c │ │ ├── dynarec_arm64_dd.c │ │ ├── dynarec_arm64_de.c │ │ ├── dynarec_arm64_df.c │ │ ├── dynarec_arm64_emit_logic.c │ │ ├── dynarec_arm64_emit_math.c │ │ ├── dynarec_arm64_emit_shift.c │ │ ├── dynarec_arm64_emit_tests.c │ │ ├── dynarec_arm64_f0.c │ │ ├── dynarec_arm64_f20f.c │ │ ├── dynarec_arm64_f30f.c │ │ ├── dynarec_arm64_functions.c │ │ ├── dynarec_arm64_functions.h │ │ ├── dynarec_arm64_helper.c │ │ ├── dynarec_arm64_helper.h │ │ ├── dynarec_arm64_jmpnext.c │ │ ├── dynarec_arm64_pass0.h │ │ ├── dynarec_arm64_pass1.h │ │ ├── dynarec_arm64_pass2.h │ │ ├── dynarec_arm64_pass3.h │ │ └── dynarec_arm64_private.h │ ├── dynablock.c │ ├── dynablock_private.h │ ├── dynarec.c │ ├── dynarec_arch.h │ ├── dynarec_helper.h │ ├── dynarec_native.c │ ├── dynarec_native_functions.c │ ├── dynarec_native_functions.h │ ├── dynarec_native_pass.c │ ├── dynarec_next.h │ ├── dynarec_private.h │ ├── la64 │ │ ├── dynarec_la64_00.c │ │ ├── dynarec_la64_0f.c │ │ ├── dynarec_la64_64.c │ │ ├── dynarec_la64_66.c │ │ ├── dynarec_la64_660f.c │ │ ├── dynarec_la64_6664.c │ │ ├── dynarec_la64_67.c │ │ ├── dynarec_la64_emit_logic.c │ │ ├── dynarec_la64_emit_math.c │ │ ├── dynarec_la64_emit_shift.c │ │ ├── dynarec_la64_emit_tests.c │ │ ├── dynarec_la64_f0.c │ │ ├── dynarec_la64_f20f.c │ │ ├── dynarec_la64_f30f.c │ │ ├── dynarec_la64_functions.c │ │ ├── dynarec_la64_functions.h │ │ ├── dynarec_la64_helper.c │ │ ├── dynarec_la64_helper.h │ │ ├── dynarec_la64_jmpnext.c │ │ ├── dynarec_la64_pass0.h │ │ ├── dynarec_la64_pass1.h │ │ ├── dynarec_la64_pass2.h │ │ ├── dynarec_la64_pass3.h │ │ ├── dynarec_la64_private.h │ │ ├── la64_emitter.h │ │ ├── la64_epilog.S │ │ ├── la64_lock.S │ │ ├── la64_lock.h │ │ ├── la64_next.S │ │ ├── la64_printer.c │ │ ├── la64_printer.h │ │ └── la64_prolog.S │ ├── native_lock.h │ └── rv64 │ │ ├── dynarec_rv64_00.c │ │ ├── dynarec_rv64_00_0.c │ │ ├── dynarec_rv64_00_1.c │ │ ├── dynarec_rv64_00_2.c │ │ ├── dynarec_rv64_00_3.c │ │ ├── dynarec_rv64_0f.c │ │ ├── dynarec_rv64_0f_vector.c │ │ ├── dynarec_rv64_64.c │ │ ├── dynarec_rv64_64_vector.c │ │ ├── dynarec_rv64_66.c │ │ ├── dynarec_rv64_660f.c │ │ ├── dynarec_rv64_660f38.c │ │ ├── dynarec_rv64_660f_vector.c │ │ ├── dynarec_rv64_6664.c │ │ ├── dynarec_rv64_66f0.c │ │ ├── dynarec_rv64_66f20f.c │ │ ├── dynarec_rv64_66f30f.c │ │ ├── dynarec_rv64_67.c │ │ ├── dynarec_rv64_67_32.c │ │ ├── dynarec_rv64_67_vector.c │ │ ├── dynarec_rv64_avx.c │ │ ├── dynarec_rv64_avx_f3_0f.c │ │ ├── dynarec_rv64_d8.c │ │ ├── dynarec_rv64_d9.c │ │ ├── dynarec_rv64_da.c │ │ ├── dynarec_rv64_db.c │ │ ├── dynarec_rv64_dc.c │ │ ├── dynarec_rv64_dd.c │ │ ├── dynarec_rv64_de.c │ │ ├── dynarec_rv64_df.c │ │ ├── dynarec_rv64_emit_logic.c │ │ ├── dynarec_rv64_emit_math.c │ │ ├── dynarec_rv64_emit_shift.c │ │ ├── dynarec_rv64_emit_tests.c │ │ ├── dynarec_rv64_f0.c │ │ ├── dynarec_rv64_f20f.c │ │ ├── dynarec_rv64_f20f_vector.c │ │ ├── dynarec_rv64_f30f.c │ │ ├── dynarec_rv64_f30f_vector.c │ │ ├── dynarec_rv64_functions.c │ │ ├── dynarec_rv64_functions.h │ │ ├── dynarec_rv64_helper.c │ │ ├── dynarec_rv64_helper.h │ │ ├── dynarec_rv64_jmpnext.c │ │ ├── dynarec_rv64_pass0.h │ │ ├── dynarec_rv64_pass1.h │ │ ├── dynarec_rv64_pass2.h │ │ ├── dynarec_rv64_pass3.h │ │ ├── dynarec_rv64_private.h │ │ ├── rv64_emitter.h │ │ ├── rv64_epilog.S │ │ ├── rv64_lock.S │ │ ├── rv64_lock.h │ │ ├── rv64_mapping.h │ │ ├── rv64_next.S │ │ ├── rv64_printer.c │ │ ├── rv64_printer.h │ │ └── rv64_prolog.S ├── elfs │ ├── elfdwarf_private.c │ ├── elfdwarf_private.h │ ├── elfhash.c │ ├── elfhash32.c │ ├── elfload_dump.c │ ├── elfload_dump32.c │ ├── elfloader.c │ ├── elfloader32.c │ ├── elfloader_private.h │ ├── elfparser.c │ └── elfparser32.c ├── emu │ ├── modrm.h │ ├── x64compstrings.c │ ├── x64compstrings.h │ ├── x64emu.c │ ├── x64emu_private.h │ ├── x64int3.c │ ├── x64primop.c │ ├── x64primop.h │ ├── x64run.c │ ├── x64run0f.c │ ├── x64run64.c │ ├── x64run66.c │ ├── x64run660f.c │ ├── x64run6664.c │ ├── x64run66d9.c │ ├── x64run66dd.c │ ├── x64run66f0.c │ ├── x64run66f20f.c │ ├── x64run66f30f.c │ ├── x64run67.c │ ├── x64run670f.c │ ├── x64run6764_32.c │ ├── x64run6766.c │ ├── x64run67660f.c │ ├── x64run67_32.c │ ├── x64run67avx.c │ ├── x64run_private.c │ ├── x64run_private.h │ ├── x64runavx.c │ ├── x64runavx0f.c │ ├── x64runavx0f38.c │ ├── x64runavx660f.c │ ├── x64runavx660f38.c │ ├── x64runavx660f3a.c │ ├── x64runavxf20f.c │ ├── x64runavxf20f38.c │ ├── x64runavxf20f3a.c │ ├── x64runavxf30f.c │ ├── x64runavxf30f38.c │ ├── x64runavxf30f3a.c │ ├── x64rund8.c │ ├── x64rund9.c │ ├── x64runda.c │ ├── x64rundb.c │ ├── x64rundc.c │ ├── x64rundd.c │ ├── x64runde.c │ ├── x64rundf.c │ ├── x64runf0.c │ ├── x64runf20f.c │ ├── x64runf30f.c │ ├── x64shaext.c │ ├── x64shaext.h │ ├── x64syscall.c │ ├── x64test.c │ ├── x64tls.c │ ├── x64trace.c │ ├── x86int3.c │ ├── x86syscall.c │ ├── x86syscall_32.c │ ├── x86zydis.h │ ├── x87emu_private.c │ ├── x87emu_private.h │ └── x87emu_setround.h ├── include │ ├── auxval.h │ ├── bitutils.h │ ├── box32.h │ ├── box32context.h │ ├── box64context.h │ ├── box64stack.h │ ├── bridge.h │ ├── callback.h │ ├── complext.h │ ├── core.h │ ├── cpu_info.h │ ├── custommem.h │ ├── debug.h │ ├── dictionnary.h │ ├── dynablock.h │ ├── dynarec.h │ ├── dynarec_native.h │ ├── elfload_dump.h │ ├── elfloader.h │ ├── fileutils.h │ ├── gdbjit.h │ ├── globalsymbols.h │ ├── gltools.h │ ├── gtkclass.h │ ├── khash.h │ ├── librarian.h │ ├── library.h │ ├── my_cpuid.h │ ├── myalign.h │ ├── myalign32.h │ ├── pathcoll.h │ ├── rbtree.h │ ├── rcfile.h │ ├── regs.h │ ├── sdl1align32.h │ ├── sdl1rwops.h │ ├── sdl2align32.h │ ├── sdl2rwops.h │ ├── signals.h │ ├── super100.h │ ├── super80.h │ ├── symbols.h │ ├── threads.h │ ├── wine_tools.h │ ├── wrappedlibs.h │ ├── x64emu.h │ ├── x64run.h │ ├── x64tls.h │ └── x64trace.h ├── librarian │ ├── dictionnary.c │ ├── globalsymbols.c │ ├── globalsymbols32.c │ ├── librarian.c │ ├── librarian_private.h │ ├── library.c │ ├── library_inner.h │ ├── library_private.h │ └── symbols.c ├── library_list.h ├── library_list_32.h ├── library_list_static.h ├── library_list_static_32.h ├── libtools │ ├── auxval.c │ ├── decopcode.c │ ├── libc_net32.c │ ├── my_x11_conv.c │ ├── my_x11_conv.h │ ├── my_x11_defs.h │ ├── my_x11_defs_32.h │ ├── my_x11_xevent.c │ ├── my_xcb_defs.h │ ├── myalign.c │ ├── myalign32.c │ ├── myalign64_32.c │ ├── myalignxcb32.c │ ├── obstack.c │ ├── sdl1align32.c │ ├── sdl1rwops.c │ ├── sdl2align32.c │ ├── sdl2rwops.c │ ├── signal32.c │ ├── signals.c │ ├── static_libc.h │ ├── static_threads.h │ ├── threads.c │ ├── threads32.c │ └── threads32.h ├── main.c ├── mallochook.c ├── rv64detect.c ├── steam.c ├── tools │ ├── bitutils.c │ ├── box32stack.c │ ├── box64stack.c │ ├── bridge.c │ ├── bridge_private.h │ ├── callback.c │ ├── fileutils.c │ ├── gdbjit.c │ ├── gtkclass.c │ ├── my_cpuid.c │ ├── pathcoll.c │ ├── rbtree.c │ ├── rcfile.c │ └── wine_tools.c ├── wrapped │ ├── SDL_dynapi_procs.h │ ├── generated │ │ ├── functions_list.txt │ │ ├── wrappedaluredefs.h │ │ ├── wrappedaluretypes.h │ │ ├── wrappedalureundefs.h │ │ ├── wrappedalutdefs.h │ │ ├── wrappedaluttypes.h │ │ ├── wrappedalutundefs.h │ │ ├── wrappedandroidshmemdefs.h │ │ ├── wrappedandroidshmemtypes.h │ │ ├── wrappedandroidshmemundefs.h │ │ ├── wrappedandroidsupportdefs.h │ │ ├── wrappedandroidsupporttypes.h │ │ ├── wrappedandroidsupportundefs.h │ │ ├── wrappedanldefs.h │ │ ├── wrappedanltypes.h │ │ ├── wrappedanlundefs.h │ │ ├── wrappedatkbridgedefs.h │ │ ├── wrappedatkbridgetypes.h │ │ ├── wrappedatkbridgeundefs.h │ │ ├── wrappedatkdefs.h │ │ ├── wrappedatktypes.h │ │ ├── wrappedatkundefs.h │ │ ├── wrappedatomicdefs.h │ │ ├── wrappedatomictypes.h │ │ ├── wrappedatomicundefs.h │ │ ├── wrappedatspidefs.h │ │ ├── wrappedatspitypes.h │ │ ├── wrappedatspiundefs.h │ │ ├── wrappedayatanaappindicator3defs.h │ │ ├── wrappedayatanaappindicator3types.h │ │ ├── wrappedayatanaappindicator3undefs.h │ │ ├── wrappedbrotlidecdefs.h │ │ ├── wrappedbrotlidectypes.h │ │ ├── wrappedbrotlidecundefs.h │ │ ├── wrappedbz2defs.h │ │ ├── wrappedbz2types.h │ │ ├── wrappedbz2undefs.h │ │ ├── wrappedcairodefs.h │ │ ├── wrappedcairogobjectdefs.h │ │ ├── wrappedcairogobjecttypes.h │ │ ├── wrappedcairogobjectundefs.h │ │ ├── wrappedcairotypes.h │ │ ├── wrappedcairoundefs.h │ │ ├── wrappedcapdefs.h │ │ ├── wrappedcaptypes.h │ │ ├── wrappedcapundefs.h │ │ ├── wrappedcrashhandlerdefs.h │ │ ├── wrappedcrashhandlertypes.h │ │ ├── wrappedcrashhandlerundefs.h │ │ ├── wrappedcrypto3defs.h │ │ ├── wrappedcrypto3types.h │ │ ├── wrappedcrypto3undefs.h │ │ ├── wrappedcryptodefs.h │ │ ├── wrappedcryptotypes.h │ │ ├── wrappedcryptoundefs.h │ │ ├── wrappedcurldefs.h │ │ ├── wrappedcurltypes.h │ │ ├── wrappedcurlundefs.h │ │ ├── wrappedd3dadapter9defs.h │ │ ├── wrappedd3dadapter9types.h │ │ ├── wrappedd3dadapter9undefs.h │ │ ├── wrappeddbusdefs.h │ │ ├── wrappeddbusglib1defs.h │ │ ├── wrappeddbusglib1types.h │ │ ├── wrappeddbusglib1undefs.h │ │ ├── wrappeddbusmenuglibdefs.h │ │ ├── wrappeddbusmenuglibtypes.h │ │ ├── wrappeddbusmenuglibundefs.h │ │ ├── wrappeddbustypes.h │ │ ├── wrappeddbusundefs.h │ │ ├── wrappeddecor0defs.h │ │ ├── wrappeddecor0types.h │ │ ├── wrappeddecor0undefs.h │ │ ├── wrappedevent21defs.h │ │ ├── wrappedevent21types.h │ │ ├── wrappedevent21undefs.h │ │ ├── wrappedexpatdefs.h │ │ ├── wrappedexpattypes.h │ │ ├── wrappedexpatundefs.h │ │ ├── wrappedfaudiodefs.h │ │ ├── wrappedfaudiotypes.h │ │ ├── wrappedfaudioundefs.h │ │ ├── wrappedflacdefs.h │ │ ├── wrappedflactypes.h │ │ ├── wrappedflacundefs.h │ │ ├── wrappedfontconfigdefs.h │ │ ├── wrappedfontconfigtypes.h │ │ ├── wrappedfontconfigundefs.h │ │ ├── wrappedfreebl3defs.h │ │ ├── wrappedfreebl3types.h │ │ ├── wrappedfreebl3undefs.h │ │ ├── wrappedfreetypedefs.h │ │ ├── wrappedfreetypetypes.h │ │ ├── wrappedfreetypeundefs.h │ │ ├── wrappedgbmdefs.h │ │ ├── wrappedgbmtypes.h │ │ ├── wrappedgbmundefs.h │ │ ├── wrappedgconf2defs.h │ │ ├── wrappedgconf2types.h │ │ ├── wrappedgconf2undefs.h │ │ ├── wrappedgcryptdefs.h │ │ ├── wrappedgcrypttypes.h │ │ ├── wrappedgcryptundefs.h │ │ ├── wrappedgdk3defs.h │ │ ├── wrappedgdk3types.h │ │ ├── wrappedgdk3undefs.h │ │ ├── wrappedgdkpixbuf2defs.h │ │ ├── wrappedgdkpixbuf2types.h │ │ ├── wrappedgdkpixbuf2undefs.h │ │ ├── wrappedgdkx112defs.h │ │ ├── wrappedgdkx112types.h │ │ ├── wrappedgdkx112undefs.h │ │ ├── wrappedgio2defs.h │ │ ├── wrappedgio2types.h │ │ ├── wrappedgio2undefs.h │ │ ├── wrappedglesv2defs.h │ │ ├── wrappedglesv2types.h │ │ ├── wrappedglesv2undefs.h │ │ ├── wrappedglib2defs.h │ │ ├── wrappedglib2types.h │ │ ├── wrappedglib2undefs.h │ │ ├── wrappedgmodule2defs.h │ │ ├── wrappedgmodule2types.h │ │ ├── wrappedgmodule2undefs.h │ │ ├── wrappedgmpdefs.h │ │ ├── wrappedgmptypes.h │ │ ├── wrappedgmpundefs.h │ │ ├── wrappedgnutlsdefs.h │ │ ├── wrappedgnutlstypes.h │ │ ├── wrappedgnutlsundefs.h │ │ ├── wrappedgobject2defs.h │ │ ├── wrappedgobject2types.h │ │ ├── wrappedgobject2undefs.h │ │ ├── wrappedgompdefs.h │ │ ├── wrappedgomptypes.h │ │ ├── wrappedgompundefs.h │ │ ├── wrappedgssapidefs.h │ │ ├── wrappedgssapikrb5defs.h │ │ ├── wrappedgssapikrb5types.h │ │ ├── wrappedgssapikrb5undefs.h │ │ ├── wrappedgssapitypes.h │ │ ├── wrappedgssapiundefs.h │ │ ├── wrappedgstallocatorsdefs.h │ │ ├── wrappedgstallocatorstypes.h │ │ ├── wrappedgstallocatorsundefs.h │ │ ├── wrappedgstappdefs.h │ │ ├── wrappedgstapptypes.h │ │ ├── wrappedgstappundefs.h │ │ ├── wrappedgstaudiodefs.h │ │ ├── wrappedgstaudiotypes.h │ │ ├── wrappedgstaudioundefs.h │ │ ├── wrappedgstbasedefs.h │ │ ├── wrappedgstbasetypes.h │ │ ├── wrappedgstbaseundefs.h │ │ ├── wrappedgstcheckdefs.h │ │ ├── wrappedgstchecktypes.h │ │ ├── wrappedgstcheckundefs.h │ │ ├── wrappedgstcontrollerdefs.h │ │ ├── wrappedgstcontrollertypes.h │ │ ├── wrappedgstcontrollerundefs.h │ │ ├── wrappedgstfftdefs.h │ │ ├── wrappedgstffttypes.h │ │ ├── wrappedgstfftundefs.h │ │ ├── wrappedgstgldefs.h │ │ ├── wrappedgstgltypes.h │ │ ├── wrappedgstglundefs.h │ │ ├── wrappedgstnetdefs.h │ │ ├── wrappedgstnettypes.h │ │ ├── wrappedgstnetundefs.h │ │ ├── wrappedgstpbutilsdefs.h │ │ ├── wrappedgstpbutilstypes.h │ │ ├── wrappedgstpbutilsundefs.h │ │ ├── wrappedgstreamerdefs.h │ │ ├── wrappedgstreamertypes.h │ │ ├── wrappedgstreamerundefs.h │ │ ├── wrappedgstriffdefs.h │ │ ├── wrappedgstrifftypes.h │ │ ├── wrappedgstriffundefs.h │ │ ├── wrappedgstrtpdefs.h │ │ ├── wrappedgstrtptypes.h │ │ ├── wrappedgstrtpundefs.h │ │ ├── wrappedgstrtspdefs.h │ │ ├── wrappedgstrtsptypes.h │ │ ├── wrappedgstrtspundefs.h │ │ ├── wrappedgstsdpdefs.h │ │ ├── wrappedgstsdptypes.h │ │ ├── wrappedgstsdpundefs.h │ │ ├── wrappedgsttagdefs.h │ │ ├── wrappedgsttagtypes.h │ │ ├── wrappedgsttagundefs.h │ │ ├── wrappedgstvideodefs.h │ │ ├── wrappedgstvideotypes.h │ │ ├── wrappedgstvideoundefs.h │ │ ├── wrappedgthread2defs.h │ │ ├── wrappedgthread2types.h │ │ ├── wrappedgthread2undefs.h │ │ ├── wrappedgtk3defs.h │ │ ├── wrappedgtk3types.h │ │ ├── wrappedgtk3undefs.h │ │ ├── wrappedgtkx112defs.h │ │ ├── wrappedgtkx112types.h │ │ ├── wrappedgtkx112undefs.h │ │ ├── wrappediconvdefs.h │ │ ├── wrappediconvtypes.h │ │ ├── wrappediconvundefs.h │ │ ├── wrappedicui18n64defs.h │ │ ├── wrappedicui18n64types.h │ │ ├── wrappedicui18n64undefs.h │ │ ├── wrappedicui18n66defs.h │ │ ├── wrappedicui18n66types.h │ │ ├── wrappedicui18n66undefs.h │ │ ├── wrappedicui18n67defs.h │ │ ├── wrappedicui18n67types.h │ │ ├── wrappedicui18n67undefs.h │ │ ├── wrappedicui18n72defs.h │ │ ├── wrappedicui18n72types.h │ │ ├── wrappedicui18n72undefs.h │ │ ├── wrappedicui18n73defs.h │ │ ├── wrappedicui18n73types.h │ │ ├── wrappedicui18n73undefs.h │ │ ├── wrappedicui18n74defs.h │ │ ├── wrappedicui18n74types.h │ │ ├── wrappedicui18n74undefs.h │ │ ├── wrappedicui18n75defs.h │ │ ├── wrappedicui18n75types.h │ │ ├── wrappedicui18n75undefs.h │ │ ├── wrappedicuuc64defs.h │ │ ├── wrappedicuuc64types.h │ │ ├── wrappedicuuc64undefs.h │ │ ├── wrappedicuuc66defs.h │ │ ├── wrappedicuuc66types.h │ │ ├── wrappedicuuc66undefs.h │ │ ├── wrappedicuuc67defs.h │ │ ├── wrappedicuuc67types.h │ │ ├── wrappedicuuc67undefs.h │ │ ├── wrappedicuuc72defs.h │ │ ├── wrappedicuuc72types.h │ │ ├── wrappedicuuc72undefs.h │ │ ├── wrappedicuuc73defs.h │ │ ├── wrappedicuuc73types.h │ │ ├── wrappedicuuc73undefs.h │ │ ├── wrappedicuuc74defs.h │ │ ├── wrappedicuuc74types.h │ │ ├── wrappedicuuc74undefs.h │ │ ├── wrappedicuuc75defs.h │ │ ├── wrappedicuuc75types.h │ │ ├── wrappedicuuc75undefs.h │ │ ├── wrappedidn2defs.h │ │ ├── wrappedidn2types.h │ │ ├── wrappedidn2undefs.h │ │ ├── wrappedkrb5defs.h │ │ ├── wrappedkrb5types.h │ │ ├── wrappedkrb5undefs.h │ │ ├── wrappedlberdefs.h │ │ ├── wrappedlbertypes.h │ │ ├── wrappedlberundefs.h │ │ ├── wrappedlcms2defs.h │ │ ├── wrappedlcms2types.h │ │ ├── wrappedlcms2undefs.h │ │ ├── wrappedldaprdefs.h │ │ ├── wrappedldaprtypes.h │ │ ├── wrappedldaprundefs.h │ │ ├── wrappedldlinuxdefs.h │ │ ├── wrappedldlinuxtypes.h │ │ ├── wrappedldlinuxundefs.h │ │ ├── wrappedlibasounddefs.h │ │ ├── wrappedlibasoundtypes.h │ │ ├── wrappedlibasoundundefs.h │ │ ├── wrappedlibbsddefs.h │ │ ├── wrappedlibbsdtypes.h │ │ ├── wrappedlibbsdundefs.h │ │ ├── wrappedlibcdefs.h │ │ ├── wrappedlibcmusldefs.h │ │ ├── wrappedlibcmusltypes.h │ │ ├── wrappedlibcmuslundefs.h │ │ ├── wrappedlibcryptdefs.h │ │ ├── wrappedlibcrypttypes.h │ │ ├── wrappedlibcryptundefs.h │ │ ├── wrappedlibctypes.h │ │ ├── wrappedlibcundefs.h │ │ ├── wrappedlibcupsdefs.h │ │ ├── wrappedlibcupstypes.h │ │ ├── wrappedlibcupsundefs.h │ │ ├── wrappedlibdldefs.h │ │ ├── wrappedlibdltypes.h │ │ ├── wrappedlibdlundefs.h │ │ ├── wrappedlibdrmamdgpudefs.h │ │ ├── wrappedlibdrmamdgputypes.h │ │ ├── wrappedlibdrmamdgpuundefs.h │ │ ├── wrappedlibdrmdefs.h │ │ ├── wrappedlibdrmtypes.h │ │ ├── wrappedlibdrmundefs.h │ │ ├── wrappedlibegldefs.h │ │ ├── wrappedlibegltypes.h │ │ ├── wrappedlibeglundefs.h │ │ ├── wrappedlibformdefs.h │ │ ├── wrappedlibformtypes.h │ │ ├── wrappedlibformundefs.h │ │ ├── wrappedlibformw6defs.h │ │ ├── wrappedlibformw6types.h │ │ ├── wrappedlibformw6undefs.h │ │ ├── wrappedlibformwdefs.h │ │ ├── wrappedlibformwtypes.h │ │ ├── wrappedlibformwundefs.h │ │ ├── wrappedlibfusedefs.h │ │ ├── wrappedlibfusetypes.h │ │ ├── wrappedlibfuseundefs.h │ │ ├── wrappedlibgldefs.h │ │ ├── wrappedlibgltypes.h │ │ ├── wrappedlibgludefs.h │ │ ├── wrappedlibglundefs.h │ │ ├── wrappedlibglutypes.h │ │ ├── wrappedlibgluundefs.h │ │ ├── wrappedlibglxdefs.h │ │ ├── wrappedlibglxtypes.h │ │ ├── wrappedlibglxundefs.h │ │ ├── wrappedlibharfbuzzdefs.h │ │ ├── wrappedlibharfbuzztypes.h │ │ ├── wrappedlibharfbuzzundefs.h │ │ ├── wrappedlibhogweed6defs.h │ │ ├── wrappedlibhogweed6types.h │ │ ├── wrappedlibhogweed6undefs.h │ │ ├── wrappedlibibusdefs.h │ │ ├── wrappedlibibustypes.h │ │ ├── wrappedlibibusundefs.h │ │ ├── wrappedlibicedefs.h │ │ ├── wrappedlibicetypes.h │ │ ├── wrappedlibiceundefs.h │ │ ├── wrappedlibltdl7defs.h │ │ ├── wrappedlibltdl7types.h │ │ ├── wrappedlibltdl7undefs.h │ │ ├── wrappedlibmdefs.h │ │ ├── wrappedlibmtypes.h │ │ ├── wrappedlibmundefs.h │ │ ├── wrappedlibncurses6defs.h │ │ ├── wrappedlibncurses6types.h │ │ ├── wrappedlibncurses6undefs.h │ │ ├── wrappedlibncursesdefs.h │ │ ├── wrappedlibncursestypes.h │ │ ├── wrappedlibncursesundefs.h │ │ ├── wrappedlibncursesw6defs.h │ │ ├── wrappedlibncursesw6types.h │ │ ├── wrappedlibncursesw6undefs.h │ │ ├── wrappedlibncurseswdefs.h │ │ ├── wrappedlibncurseswtypes.h │ │ ├── wrappedlibncurseswundefs.h │ │ ├── wrappedlibnettle8defs.h │ │ ├── wrappedlibnettle8types.h │ │ ├── wrappedlibnettle8undefs.h │ │ ├── wrappedlibnumadefs.h │ │ ├── wrappedlibnumatypes.h │ │ ├── wrappedlibnumaundefs.h │ │ ├── wrappedliboggdefs.h │ │ ├── wrappedliboggtypes.h │ │ ├── wrappedliboggundefs.h │ │ ├── wrappedlibpaneldefs.h │ │ ├── wrappedlibpaneltypes.h │ │ ├── wrappedlibpanelundefs.h │ │ ├── wrappedlibpcidefs.h │ │ ├── wrappedlibpcitypes.h │ │ ├── wrappedlibpciundefs.h │ │ ├── wrappedlibpcredefs.h │ │ ├── wrappedlibpcretypes.h │ │ ├── wrappedlibpcreundefs.h │ │ ├── wrappedlibpthreaddefs.h │ │ ├── wrappedlibpthreadtypes.h │ │ ├── wrappedlibpthreadundefs.h │ │ ├── wrappedlibresolvdefs.h │ │ ├── wrappedlibresolvtypes.h │ │ ├── wrappedlibresolvundefs.h │ │ ├── wrappedlibrtdefs.h │ │ ├── wrappedlibrttypes.h │ │ ├── wrappedlibrtundefs.h │ │ ├── wrappedlibsmdefs.h │ │ ├── wrappedlibsmtypes.h │ │ ├── wrappedlibsmundefs.h │ │ ├── wrappedlibsndfiledefs.h │ │ ├── wrappedlibsndfiletypes.h │ │ ├── wrappedlibsndfileundefs.h │ │ ├── wrappedlibsqlite3defs.h │ │ ├── wrappedlibsqlite3types.h │ │ ├── wrappedlibsqlite3undefs.h │ │ ├── wrappedlibssh2defs.h │ │ ├── wrappedlibssh2types.h │ │ ├── wrappedlibssh2undefs.h │ │ ├── wrappedlibssl3defs.h │ │ ├── wrappedlibssl3types.h │ │ ├── wrappedlibssl3undefs.h │ │ ├── wrappedlibssldefs.h │ │ ├── wrappedlibssltypes.h │ │ ├── wrappedlibsslundefs.h │ │ ├── wrappedlibtasn1defs.h │ │ ├── wrappedlibtasn1types.h │ │ ├── wrappedlibtasn1undefs.h │ │ ├── wrappedlibtiff5defs.h │ │ ├── wrappedlibtiff5types.h │ │ ├── wrappedlibtiff5undefs.h │ │ ├── wrappedlibtinfo6defs.h │ │ ├── wrappedlibtinfo6types.h │ │ ├── wrappedlibtinfo6undefs.h │ │ ├── wrappedlibtinfodefs.h │ │ ├── wrappedlibtinfotypes.h │ │ ├── wrappedlibtinfoundefs.h │ │ ├── wrappedlibunistring2defs.h │ │ ├── wrappedlibunistring2types.h │ │ ├── wrappedlibunistring2undefs.h │ │ ├── wrappedlibusb1defs.h │ │ ├── wrappedlibusb1types.h │ │ ├── wrappedlibusb1undefs.h │ │ ├── wrappedlibuuiddefs.h │ │ ├── wrappedlibuuidtypes.h │ │ ├── wrappedlibuuidundefs.h │ │ ├── wrappedlibvadefs.h │ │ ├── wrappedlibvadrmdefs.h │ │ ├── wrappedlibvadrmtypes.h │ │ ├── wrappedlibvadrmundefs.h │ │ ├── wrappedlibvatypes.h │ │ ├── wrappedlibvaundefs.h │ │ ├── wrappedlibvawaylanddefs.h │ │ ├── wrappedlibvawaylandtypes.h │ │ ├── wrappedlibvawaylandundefs.h │ │ ├── wrappedlibvax11defs.h │ │ ├── wrappedlibvax11types.h │ │ ├── wrappedlibvax11undefs.h │ │ ├── wrappedlibvdpaudefs.h │ │ ├── wrappedlibvdpautypes.h │ │ ├── wrappedlibvdpauundefs.h │ │ ├── wrappedlibvorbisdefs.h │ │ ├── wrappedlibvorbistypes.h │ │ ├── wrappedlibvorbisundefs.h │ │ ├── wrappedlibx11defs.h │ │ ├── wrappedlibx11types.h │ │ ├── wrappedlibx11undefs.h │ │ ├── wrappedlibx11xcbdefs.h │ │ ├── wrappedlibx11xcbtypes.h │ │ ├── wrappedlibx11xcbundefs.h │ │ ├── wrappedlibxaudefs.h │ │ ├── wrappedlibxautypes.h │ │ ├── wrappedlibxauundefs.h │ │ ├── wrappedlibxawdefs.h │ │ ├── wrappedlibxawtypes.h │ │ ├── wrappedlibxawundefs.h │ │ ├── wrappedlibxcbcursordefs.h │ │ ├── wrappedlibxcbcursortypes.h │ │ ├── wrappedlibxcbcursorundefs.h │ │ ├── wrappedlibxcbdefs.h │ │ ├── wrappedlibxcbdri2defs.h │ │ ├── wrappedlibxcbdri2types.h │ │ ├── wrappedlibxcbdri2undefs.h │ │ ├── wrappedlibxcbdri3defs.h │ │ ├── wrappedlibxcbdri3types.h │ │ ├── wrappedlibxcbdri3undefs.h │ │ ├── wrappedlibxcbglxdefs.h │ │ ├── wrappedlibxcbglxtypes.h │ │ ├── wrappedlibxcbglxundefs.h │ │ ├── wrappedlibxcbicccmdefs.h │ │ ├── wrappedlibxcbicccmtypes.h │ │ ├── wrappedlibxcbicccmundefs.h │ │ ├── wrappedlibxcbimagedefs.h │ │ ├── wrappedlibxcbimagetypes.h │ │ ├── wrappedlibxcbimageundefs.h │ │ ├── wrappedlibxcbkeysymsdefs.h │ │ ├── wrappedlibxcbkeysymstypes.h │ │ ├── wrappedlibxcbkeysymsundefs.h │ │ ├── wrappedlibxcbpresentdefs.h │ │ ├── wrappedlibxcbpresenttypes.h │ │ ├── wrappedlibxcbpresentundefs.h │ │ ├── wrappedlibxcbrandrdefs.h │ │ ├── wrappedlibxcbrandrtypes.h │ │ ├── wrappedlibxcbrandrundefs.h │ │ ├── wrappedlibxcbrenderdefs.h │ │ ├── wrappedlibxcbrendertypes.h │ │ ├── wrappedlibxcbrenderundefs.h │ │ ├── wrappedlibxcbrenderutildefs.h │ │ ├── wrappedlibxcbrenderutiltypes.h │ │ ├── wrappedlibxcbrenderutilundefs.h │ │ ├── wrappedlibxcbresdefs.h │ │ ├── wrappedlibxcbrestypes.h │ │ ├── wrappedlibxcbresundefs.h │ │ ├── wrappedlibxcbshapedefs.h │ │ ├── wrappedlibxcbshapetypes.h │ │ ├── wrappedlibxcbshapeundefs.h │ │ ├── wrappedlibxcbshmdefs.h │ │ ├── wrappedlibxcbshmtypes.h │ │ ├── wrappedlibxcbshmundefs.h │ │ ├── wrappedlibxcbsyncdefs.h │ │ ├── wrappedlibxcbsynctypes.h │ │ ├── wrappedlibxcbsyncundefs.h │ │ ├── wrappedlibxcbtypes.h │ │ ├── wrappedlibxcbundefs.h │ │ ├── wrappedlibxcbutildefs.h │ │ ├── wrappedlibxcbutiltypes.h │ │ ├── wrappedlibxcbutilundefs.h │ │ ├── wrappedlibxcbxfixesdefs.h │ │ ├── wrappedlibxcbxfixestypes.h │ │ ├── wrappedlibxcbxfixesundefs.h │ │ ├── wrappedlibxcbxineramadefs.h │ │ ├── wrappedlibxcbxineramatypes.h │ │ ├── wrappedlibxcbxineramaundefs.h │ │ ├── wrappedlibxcbxinputdefs.h │ │ ├── wrappedlibxcbxinputtypes.h │ │ ├── wrappedlibxcbxinputundefs.h │ │ ├── wrappedlibxcbxkbdefs.h │ │ ├── wrappedlibxcbxkbtypes.h │ │ ├── wrappedlibxcbxkbundefs.h │ │ ├── wrappedlibxcbxtestdefs.h │ │ ├── wrappedlibxcbxtesttypes.h │ │ ├── wrappedlibxcbxtestundefs.h │ │ ├── wrappedlibxcompositedefs.h │ │ ├── wrappedlibxcompositetypes.h │ │ ├── wrappedlibxcompositeundefs.h │ │ ├── wrappedlibxcursordefs.h │ │ ├── wrappedlibxcursortypes.h │ │ ├── wrappedlibxcursorundefs.h │ │ ├── wrappedlibxdamagedefs.h │ │ ├── wrappedlibxdamagetypes.h │ │ ├── wrappedlibxdamageundefs.h │ │ ├── wrappedlibxdmcpdefs.h │ │ ├── wrappedlibxdmcptypes.h │ │ ├── wrappedlibxdmcpundefs.h │ │ ├── wrappedlibxextdefs.h │ │ ├── wrappedlibxexttypes.h │ │ ├── wrappedlibxextundefs.h │ │ ├── wrappedlibxfixesdefs.h │ │ ├── wrappedlibxfixestypes.h │ │ ├── wrappedlibxfixesundefs.h │ │ ├── wrappedlibxftdefs.h │ │ ├── wrappedlibxfttypes.h │ │ ├── wrappedlibxftundefs.h │ │ ├── wrappedlibxidefs.h │ │ ├── wrappedlibxitypes.h │ │ ├── wrappedlibxiundefs.h │ │ ├── wrappedlibxmudefs.h │ │ ├── wrappedlibxmutypes.h │ │ ├── wrappedlibxmuundefs.h │ │ ├── wrappedlibxpmdefs.h │ │ ├── wrappedlibxpmtypes.h │ │ ├── wrappedlibxpmundefs.h │ │ ├── wrappedlibxpresentdefs.h │ │ ├── wrappedlibxpresenttypes.h │ │ ├── wrappedlibxpresentundefs.h │ │ ├── wrappedlibxrandrdefs.h │ │ ├── wrappedlibxrandrtypes.h │ │ ├── wrappedlibxrandrundefs.h │ │ ├── wrappedlibxrenderdefs.h │ │ ├── wrappedlibxrendertypes.h │ │ ├── wrappedlibxrenderundefs.h │ │ ├── wrappedlibxssdefs.h │ │ ├── wrappedlibxsstypes.h │ │ ├── wrappedlibxssundefs.h │ │ ├── wrappedlibxtdefs.h │ │ ├── wrappedlibxtstdefs.h │ │ ├── wrappedlibxtsttypes.h │ │ ├── wrappedlibxtstundefs.h │ │ ├── wrappedlibxttypes.h │ │ ├── wrappedlibxtundefs.h │ │ ├── wrappedlibxxf86vmdefs.h │ │ ├── wrappedlibxxf86vmtypes.h │ │ ├── wrappedlibxxf86vmundefs.h │ │ ├── wrappedlibzdefs.h │ │ ├── wrappedlibztypes.h │ │ ├── wrappedlibzundefs.h │ │ ├── wrappedlzmadefs.h │ │ ├── wrappedlzmatypes.h │ │ ├── wrappedlzmaundefs.h │ │ ├── wrappedmpg123defs.h │ │ ├── wrappedmpg123types.h │ │ ├── wrappedmpg123undefs.h │ │ ├── wrappednotifydefs.h │ │ ├── wrappednotifytypes.h │ │ ├── wrappednotifyundefs.h │ │ ├── wrappednsldefs.h │ │ ├── wrappednsltypes.h │ │ ├── wrappednslundefs.h │ │ ├── wrappednspr4defs.h │ │ ├── wrappednspr4types.h │ │ ├── wrappednspr4undefs.h │ │ ├── wrappednss3defs.h │ │ ├── wrappednss3types.h │ │ ├── wrappednss3undefs.h │ │ ├── wrappednssutil3defs.h │ │ ├── wrappednssutil3types.h │ │ ├── wrappednssutil3undefs.h │ │ ├── wrappedopenaldefs.h │ │ ├── wrappedopenaltypes.h │ │ ├── wrappedopenalundefs.h │ │ ├── wrappedopencldefs.h │ │ ├── wrappedopencltypes.h │ │ ├── wrappedopenclundefs.h │ │ ├── wrappedp11kitdefs.h │ │ ├── wrappedp11kittypes.h │ │ ├── wrappedp11kitundefs.h │ │ ├── wrappedpamdefs.h │ │ ├── wrappedpamtypes.h │ │ ├── wrappedpamundefs.h │ │ ├── wrappedpangocairodefs.h │ │ ├── wrappedpangocairotypes.h │ │ ├── wrappedpangocairoundefs.h │ │ ├── wrappedpangodefs.h │ │ ├── wrappedpangoft2defs.h │ │ ├── wrappedpangoft2types.h │ │ ├── wrappedpangoft2undefs.h │ │ ├── wrappedpangotypes.h │ │ ├── wrappedpangoundefs.h │ │ ├── wrappedplc4defs.h │ │ ├── wrappedplc4types.h │ │ ├── wrappedplc4undefs.h │ │ ├── wrappedplds4defs.h │ │ ├── wrappedplds4types.h │ │ ├── wrappedplds4undefs.h │ │ ├── wrappedpng16defs.h │ │ ├── wrappedpng16types.h │ │ ├── wrappedpng16undefs.h │ │ ├── wrappedpsl5defs.h │ │ ├── wrappedpsl5types.h │ │ ├── wrappedpsl5undefs.h │ │ ├── wrappedpulsedefs.h │ │ ├── wrappedpulsemainloopglibdefs.h │ │ ├── wrappedpulsemainloopglibtypes.h │ │ ├── wrappedpulsemainloopglibundefs.h │ │ ├── wrappedpulsesimpledefs.h │ │ ├── wrappedpulsesimpletypes.h │ │ ├── wrappedpulsesimpleundefs.h │ │ ├── wrappedpulsetypes.h │ │ ├── wrappedpulseundefs.h │ │ ├── wrappedsdl1defs.h │ │ ├── wrappedsdl1imagedefs.h │ │ ├── wrappedsdl1imagetypes.h │ │ ├── wrappedsdl1imageundefs.h │ │ ├── wrappedsdl1mixerdefs.h │ │ ├── wrappedsdl1mixertypes.h │ │ ├── wrappedsdl1mixerundefs.h │ │ ├── wrappedsdl1netdefs.h │ │ ├── wrappedsdl1nettypes.h │ │ ├── wrappedsdl1netundefs.h │ │ ├── wrappedsdl1sounddefs.h │ │ ├── wrappedsdl1soundtypes.h │ │ ├── wrappedsdl1soundundefs.h │ │ ├── wrappedsdl1ttfdefs.h │ │ ├── wrappedsdl1ttftypes.h │ │ ├── wrappedsdl1ttfundefs.h │ │ ├── wrappedsdl1types.h │ │ ├── wrappedsdl1undefs.h │ │ ├── wrappedsdl2defs.h │ │ ├── wrappedsdl2imagedefs.h │ │ ├── wrappedsdl2imagetypes.h │ │ ├── wrappedsdl2imageundefs.h │ │ ├── wrappedsdl2mixerdefs.h │ │ ├── wrappedsdl2mixertypes.h │ │ ├── wrappedsdl2mixerundefs.h │ │ ├── wrappedsdl2netdefs.h │ │ ├── wrappedsdl2nettypes.h │ │ ├── wrappedsdl2netundefs.h │ │ ├── wrappedsdl2ttfdefs.h │ │ ├── wrappedsdl2ttftypes.h │ │ ├── wrappedsdl2ttfundefs.h │ │ ├── wrappedsdl2types.h │ │ ├── wrappedsdl2undefs.h │ │ ├── wrappedsecret1defs.h │ │ ├── wrappedsecret1types.h │ │ ├── wrappedsecret1undefs.h │ │ ├── wrappedselinuxdefs.h │ │ ├── wrappedselinuxtypes.h │ │ ├── wrappedselinuxundefs.h │ │ ├── wrappedsmime3defs.h │ │ ├── wrappedsmime3types.h │ │ ├── wrappedsmime3undefs.h │ │ ├── wrappedsmpeg2defs.h │ │ ├── wrappedsmpeg2types.h │ │ ├── wrappedsmpeg2undefs.h │ │ ├── wrappedsmpegdefs.h │ │ ├── wrappedsmpegtypes.h │ │ ├── wrappedsmpegundefs.h │ │ ├── wrappedsoftokn3defs.h │ │ ├── wrappedsoftokn3types.h │ │ ├── wrappedsoftokn3undefs.h │ │ ├── wrappedssl3defs.h │ │ ├── wrappedssl3types.h │ │ ├── wrappedssl3undefs.h │ │ ├── wrappedtbbbinddefs.h │ │ ├── wrappedtbbbindtypes.h │ │ ├── wrappedtbbbindundefs.h │ │ ├── wrappedtbbmallocdefs.h │ │ ├── wrappedtbbmallocproxydefs.h │ │ ├── wrappedtbbmallocproxytypes.h │ │ ├── wrappedtbbmallocproxyundefs.h │ │ ├── wrappedtbbmalloctypes.h │ │ ├── wrappedtbbmallocundefs.h │ │ ├── wrappedtcmallocminimaldefs.h │ │ ├── wrappedtcmallocminimaltypes.h │ │ ├── wrappedtcmallocminimalundefs.h │ │ ├── wrappedtermuxexecdefs.h │ │ ├── wrappedtermuxexectypes.h │ │ ├── wrappedtermuxexecundefs.h │ │ ├── wrappedudev0defs.h │ │ ├── wrappedudev0types.h │ │ ├── wrappedudev0undefs.h │ │ ├── wrappedudev1defs.h │ │ ├── wrappedudev1types.h │ │ ├── wrappedudev1undefs.h │ │ ├── wrappedunwinddefs.h │ │ ├── wrappedunwindtypes.h │ │ ├── wrappedunwindundefs.h │ │ ├── wrappedutildefs.h │ │ ├── wrappedutiltypes.h │ │ ├── wrappedutilundefs.h │ │ ├── wrappedvorbisfiledefs.h │ │ ├── wrappedvorbisfiletypes.h │ │ ├── wrappedvorbisfileundefs.h │ │ ├── wrappedvulkandefs.h │ │ ├── wrappedvulkantypes.h │ │ ├── wrappedvulkanundefs.h │ │ ├── wrappedwaylandclientdefs.h │ │ ├── wrappedwaylandclienttypes.h │ │ ├── wrappedwaylandclientundefs.h │ │ ├── wrappedwaylandcursordefs.h │ │ ├── wrappedwaylandcursortypes.h │ │ ├── wrappedwaylandcursorundefs.h │ │ ├── wrappedwaylandegldefs.h │ │ ├── wrappedwaylandegltypes.h │ │ ├── wrappedwaylandeglundefs.h │ │ ├── wrappedxineramadefs.h │ │ ├── wrappedxineramatypes.h │ │ ├── wrappedxineramaundefs.h │ │ ├── wrappedxkbcommondefs.h │ │ ├── wrappedxkbcommontypes.h │ │ ├── wrappedxkbcommonundefs.h │ │ ├── wrappedxkbcommonx11defs.h │ │ ├── wrappedxkbcommonx11types.h │ │ ├── wrappedxkbcommonx11undefs.h │ │ ├── wrappedxkbregistrydefs.h │ │ ├── wrappedxkbregistrytypes.h │ │ ├── wrappedxkbregistryundefs.h │ │ ├── wrappedxml2defs.h │ │ ├── wrappedxml2types.h │ │ ├── wrappedxml2undefs.h │ │ ├── wrappedxshmfencedefs.h │ │ ├── wrappedxshmfencetypes.h │ │ ├── wrappedxshmfenceundefs.h │ │ ├── wrappedxsltdefs.h │ │ ├── wrappedxslttypes.h │ │ ├── wrappedxsltundefs.h │ │ ├── wrappedzstddefs.h │ │ ├── wrappedzstdtypes.h │ │ ├── wrappedzstdundefs.h │ │ ├── wrapper.c │ │ └── wrapper.h │ ├── wrappedalure.c │ ├── wrappedalure_private.h │ ├── wrappedalut.c │ ├── wrappedalut_private.h │ ├── wrappedandroidshmem.c │ ├── wrappedandroidshmem_private.h │ ├── wrappedandroidsupport.c │ ├── wrappedandroidsupport_private.h │ ├── wrappedanl.c │ ├── wrappedanl_private.h │ ├── wrappedatk.c │ ├── wrappedatk_private.h │ ├── wrappedatkbridge.c │ ├── wrappedatkbridge_private.h │ ├── wrappedatomic.c │ ├── wrappedatomic_private.h │ ├── wrappedatspi.c │ ├── wrappedatspi_private.h │ ├── wrappedayatanaappindicator3.c │ ├── wrappedayatanaappindicator3_private.h │ ├── wrappedbrotlidec.c │ ├── wrappedbrotlidec_private.h │ ├── wrappedbz2.c │ ├── wrappedbz2_private.h │ ├── wrappedcairo.c │ ├── wrappedcairo_private.h │ ├── wrappedcairogobject.c │ ├── wrappedcairogobject_private.h │ ├── wrappedcap.c │ ├── wrappedcap_private.h │ ├── wrappedcrashhandler.c │ ├── wrappedcrashhandler_private.h │ ├── wrappedcrypto.c │ ├── wrappedcrypto3.c │ ├── wrappedcrypto3_private.h │ ├── wrappedcrypto_private.h │ ├── wrappedcurl.c │ ├── wrappedcurl_private.h │ ├── wrappedd3dadapter9.c │ ├── wrappedd3dadapter9_gen.h │ ├── wrappedd3dadapter9_genvate.h │ ├── wrappedd3dadapter9_private.h │ ├── wrappedd3dadapter9_vtable.h │ ├── wrappeddbus.c │ ├── wrappeddbus_private.h │ ├── wrappeddbusglib1.c │ ├── wrappeddbusglib1_private.h │ ├── wrappeddbusmenuglib.c │ ├── wrappeddbusmenuglib_private.h │ ├── wrappeddecor0.c │ ├── wrappeddecor0_private.h │ ├── wrappedevent21.c │ ├── wrappedevent21_private.h │ ├── wrappedexpat.c │ ├── wrappedexpat_private.h │ ├── wrappedfaudio.c │ ├── wrappedfaudio_private.h │ ├── wrappedflac.c │ ├── wrappedflac_private.h │ ├── wrappedfontconfig.c │ ├── wrappedfontconfig_private.h │ ├── wrappedfreebl3.c │ ├── wrappedfreebl3_private.h │ ├── wrappedfreetype.c │ ├── wrappedfreetype_private.h │ ├── wrappedgbm.c │ ├── wrappedgbm_private.h │ ├── wrappedgconf2.c │ ├── wrappedgconf2_private.h │ ├── wrappedgcrypt.c │ ├── wrappedgcrypt_private.h │ ├── wrappedgdk3.c │ ├── wrappedgdk3_private.h │ ├── wrappedgdkpixbuf2.c │ ├── wrappedgdkpixbuf2_private.h │ ├── wrappedgdkx112.c │ ├── wrappedgdkx112_private.h │ ├── wrappedgio2.c │ ├── wrappedgio2_private.h │ ├── wrappedglesv2.c │ ├── wrappedglesv2_private.h │ ├── wrappedglib2.c │ ├── wrappedglib2_private.h │ ├── wrappedgmodule2.c │ ├── wrappedgmodule2_private.h │ ├── wrappedgmp.c │ ├── wrappedgmp_private.h │ ├── wrappedgnutls.c │ ├── wrappedgnutls_private.h │ ├── wrappedgobject2.c │ ├── wrappedgobject2_private.h │ ├── wrappedgomp.c │ ├── wrappedgomp_private.h │ ├── wrappedgssapi.c │ ├── wrappedgssapi_private.h │ ├── wrappedgssapikrb5.c │ ├── wrappedgssapikrb5_private.h │ ├── wrappedgstallocators.c │ ├── wrappedgstallocators_private.h │ ├── wrappedgstapp.c │ ├── wrappedgstapp_private.h │ ├── wrappedgstaudio.c │ ├── wrappedgstaudio_private.h │ ├── wrappedgstbase.c │ ├── wrappedgstbase_private.h │ ├── wrappedgstcheck.c │ ├── wrappedgstcheck_private.h │ ├── wrappedgstcontroller.c │ ├── wrappedgstcontroller_private.h │ ├── wrappedgstfft.c │ ├── wrappedgstfft_private.h │ ├── wrappedgstgl.c │ ├── wrappedgstgl_private.h │ ├── wrappedgstnet.c │ ├── wrappedgstnet_private.h │ ├── wrappedgstpbutils.c │ ├── wrappedgstpbutils_private.h │ ├── wrappedgstreamer.c │ ├── wrappedgstreamer_private.h │ ├── wrappedgstriff.c │ ├── wrappedgstriff_private.h │ ├── wrappedgstrtp.c │ ├── wrappedgstrtp_private.h │ ├── wrappedgstrtsp.c │ ├── wrappedgstrtsp_private.h │ ├── wrappedgstsdp.c │ ├── wrappedgstsdp_private.h │ ├── wrappedgsttag.c │ ├── wrappedgsttag_private.h │ ├── wrappedgstvideo.c │ ├── wrappedgstvideo_private.h │ ├── wrappedgthread2.c │ ├── wrappedgthread2_private.h │ ├── wrappedgtk3.c │ ├── wrappedgtk3_private.h │ ├── wrappedgtkx112.c │ ├── wrappedgtkx112_private.h │ ├── wrappediconv.c │ ├── wrappediconv_private.h │ ├── wrappedicui18n64.c │ ├── wrappedicui18n64_private.h │ ├── wrappedicui18n66.c │ ├── wrappedicui18n66_private.h │ ├── wrappedicui18n67.c │ ├── wrappedicui18n67_private.h │ ├── wrappedicui18n72.c │ ├── wrappedicui18n72_private.h │ ├── wrappedicui18n73.c │ ├── wrappedicui18n73_private.h │ ├── wrappedicui18n74.c │ ├── wrappedicui18n74_private.h │ ├── wrappedicui18n75.c │ ├── wrappedicui18n75_private.h │ ├── wrappedicuuc64.c │ ├── wrappedicuuc64_private.h │ ├── wrappedicuuc66.c │ ├── wrappedicuuc66_private.h │ ├── wrappedicuuc67.c │ ├── wrappedicuuc67_private.h │ ├── wrappedicuuc72.c │ ├── wrappedicuuc72_private.h │ ├── wrappedicuuc73.c │ ├── wrappedicuuc73_private.h │ ├── wrappedicuuc74.c │ ├── wrappedicuuc74_private.h │ ├── wrappedicuuc75.c │ ├── wrappedicuuc75_private.h │ ├── wrappedidn2.c │ ├── wrappedidn2_private.h │ ├── wrappedkrb5.c │ ├── wrappedkrb5_private.h │ ├── wrappedlber.c │ ├── wrappedlber_private.h │ ├── wrappedlcms2.c │ ├── wrappedlcms2_private.h │ ├── wrappedldapr.c │ ├── wrappedldapr_private.h │ ├── wrappedldlinux.c │ ├── wrappedldlinux_private.h │ ├── wrappedlib_init.h │ ├── wrappedlibasound.c │ ├── wrappedlibasound_private.h │ ├── wrappedlibbsd.c │ ├── wrappedlibbsd_private.h │ ├── wrappedlibc.c │ ├── wrappedlibc_private.h │ ├── wrappedlibcmusl.c │ ├── wrappedlibcmusl_private.h │ ├── wrappedlibcrypt.c │ ├── wrappedlibcrypt_private.h │ ├── wrappedlibcups.c │ ├── wrappedlibcups_private.h │ ├── wrappedlibdl.c │ ├── wrappedlibdl_private.h │ ├── wrappedlibdrm.c │ ├── wrappedlibdrm_private.h │ ├── wrappedlibdrmamdgpu.c │ ├── wrappedlibdrmamdgpu_private.h │ ├── wrappedlibegl.c │ ├── wrappedlibegl_private.h │ ├── wrappedlibform.c │ ├── wrappedlibform_private.h │ ├── wrappedlibformw.c │ ├── wrappedlibformw6.c │ ├── wrappedlibformw6_private.h │ ├── wrappedlibformw_private.h │ ├── wrappedlibfuse.c │ ├── wrappedlibfuse_private.h │ ├── wrappedlibgl.c │ ├── wrappedlibgl_private.h │ ├── wrappedlibglu.c │ ├── wrappedlibglu_private.h │ ├── wrappedlibglx.c │ ├── wrappedlibglx_private.h │ ├── wrappedlibharfbuzz.c │ ├── wrappedlibharfbuzz_private.h │ ├── wrappedlibhogweed6.c │ ├── wrappedlibhogweed6_private.h │ ├── wrappedlibibus.c │ ├── wrappedlibibus_private.h │ ├── wrappedlibice.c │ ├── wrappedlibice_private.h │ ├── wrappedlibm.c │ ├── wrappedlibm_private.h │ ├── wrappedlibncurses.c │ ├── wrappedlibncurses6.c │ ├── wrappedlibncurses6_private.h │ ├── wrappedlibncurses_private.h │ ├── wrappedlibncursesw.c │ ├── wrappedlibncursesw6.c │ ├── wrappedlibncursesw6_private.h │ ├── wrappedlibncursesw_private.h │ ├── wrappedlibnettle8.c │ ├── wrappedlibnettle8_private.h │ ├── wrappedlibnuma.c │ ├── wrappedlibnuma_private.h │ ├── wrappedlibogg.c │ ├── wrappedlibogg_private.h │ ├── wrappedlibpanel.c │ ├── wrappedlibpanel_private.h │ ├── wrappedlibpci.c │ ├── wrappedlibpci_private.h │ ├── wrappedlibpcre.c │ ├── wrappedlibpcre_private.h │ ├── wrappedlibpthread.c │ ├── wrappedlibpthread_private.h │ ├── wrappedlibresolv.c │ ├── wrappedlibresolv_private.h │ ├── wrappedlibrt.c │ ├── wrappedlibrt_private.h │ ├── wrappedlibsm.c │ ├── wrappedlibsm_private.h │ ├── wrappedlibsndfile.c │ ├── wrappedlibsndfile_private.h │ ├── wrappedlibsqlite3.c │ ├── wrappedlibsqlite3_private.h │ ├── wrappedlibssh2.c │ ├── wrappedlibssh2_private.h │ ├── wrappedlibssl.c │ ├── wrappedlibssl3.c │ ├── wrappedlibssl3_private.h │ ├── wrappedlibssl_private.h │ ├── wrappedlibtasn1.c │ ├── wrappedlibtasn1_private.h │ ├── wrappedlibtiff5.c │ ├── wrappedlibtiff5_private.h │ ├── wrappedlibtinfo.c │ ├── wrappedlibtinfo6.c │ ├── wrappedlibtinfo6_private.h │ ├── wrappedlibtinfo_private.h │ ├── wrappedlibunistring2.c │ ├── wrappedlibunistring2_private.h │ ├── wrappedlibusb1.c │ ├── wrappedlibusb1_private.h │ ├── wrappedlibuuid.c │ ├── wrappedlibuuid_private.h │ ├── wrappedlibva.c │ ├── wrappedlibva_private.h │ ├── wrappedlibvadrm.c │ ├── wrappedlibvadrm_private.h │ ├── wrappedlibvawayland.c │ ├── wrappedlibvawayland_private.h │ ├── wrappedlibvax11.c │ ├── wrappedlibvax11_private.h │ ├── wrappedlibvdpau.c │ ├── wrappedlibvdpau_private.h │ ├── wrappedlibvorbis.c │ ├── wrappedlibvorbis_private.h │ ├── wrappedlibx11.c │ ├── wrappedlibx11_private.h │ ├── wrappedlibx11xcb.c │ ├── wrappedlibx11xcb_private.h │ ├── wrappedlibxau.c │ ├── wrappedlibxau_private.h │ ├── wrappedlibxaw.c │ ├── wrappedlibxaw_private.h │ ├── wrappedlibxcb.c │ ├── wrappedlibxcb_private.h │ ├── wrappedlibxcbcursor.c │ ├── wrappedlibxcbcursor_private.h │ ├── wrappedlibxcbdri2.c │ ├── wrappedlibxcbdri2_private.h │ ├── wrappedlibxcbdri3.c │ ├── wrappedlibxcbdri3_private.h │ ├── wrappedlibxcbglx.c │ ├── wrappedlibxcbglx_private.h │ ├── wrappedlibxcbicccm.c │ ├── wrappedlibxcbicccm_private.h │ ├── wrappedlibxcbimage.c │ ├── wrappedlibxcbimage_private.h │ ├── wrappedlibxcbkeysyms.c │ ├── wrappedlibxcbkeysyms_private.h │ ├── wrappedlibxcbpresent.c │ ├── wrappedlibxcbpresent_private.h │ ├── wrappedlibxcbrandr.c │ ├── wrappedlibxcbrandr_private.h │ ├── wrappedlibxcbrender.c │ ├── wrappedlibxcbrender_private.h │ ├── wrappedlibxcbrenderutil.c │ ├── wrappedlibxcbrenderutil_private.h │ ├── wrappedlibxcbres.c │ ├── wrappedlibxcbres_private.h │ ├── wrappedlibxcbshape.c │ ├── wrappedlibxcbshape_private.h │ ├── wrappedlibxcbshm.c │ ├── wrappedlibxcbshm_private.h │ ├── wrappedlibxcbsync.c │ ├── wrappedlibxcbsync_private.h │ ├── wrappedlibxcbutil.c │ ├── wrappedlibxcbutil_private.h │ ├── wrappedlibxcbxfixes.c │ ├── wrappedlibxcbxfixes_private.h │ ├── wrappedlibxcbxinerama.c │ ├── wrappedlibxcbxinerama_private.h │ ├── wrappedlibxcbxinput.c │ ├── wrappedlibxcbxinput_private.h │ ├── wrappedlibxcbxkb.c │ ├── wrappedlibxcbxkb_private.h │ ├── wrappedlibxcbxtest.c │ ├── wrappedlibxcbxtest_private.h │ ├── wrappedlibxcomposite.c │ ├── wrappedlibxcomposite_private.h │ ├── wrappedlibxcursor.c │ ├── wrappedlibxcursor_private.h │ ├── wrappedlibxdamage.c │ ├── wrappedlibxdamage_private.h │ ├── wrappedlibxdmcp.c │ ├── wrappedlibxdmcp_private.h │ ├── wrappedlibxext.c │ ├── wrappedlibxext_private.h │ ├── wrappedlibxfixes.c │ ├── wrappedlibxfixes_private.h │ ├── wrappedlibxft.c │ ├── wrappedlibxft_private.h │ ├── wrappedlibxi.c │ ├── wrappedlibxi_private.h │ ├── wrappedlibxmu.c │ ├── wrappedlibxmu_private.h │ ├── wrappedlibxpm.c │ ├── wrappedlibxpm_private.h │ ├── wrappedlibxpresent.c │ ├── wrappedlibxpresent_private.h │ ├── wrappedlibxrandr.c │ ├── wrappedlibxrandr_private.h │ ├── wrappedlibxrender.c │ ├── wrappedlibxrender_private.h │ ├── wrappedlibxss.c │ ├── wrappedlibxss_private.h │ ├── wrappedlibxt.c │ ├── wrappedlibxt_private.h │ ├── wrappedlibxtst.c │ ├── wrappedlibxtst_private.h │ ├── wrappedlibxxf86vm.c │ ├── wrappedlibxxf86vm_private.h │ ├── wrappedlibz.c │ ├── wrappedlibz_private.h │ ├── wrappedlzma.c │ ├── wrappedlzma_private.h │ ├── wrappedmpg123.c │ ├── wrappedmpg123_private.h │ ├── wrappednotify.c │ ├── wrappednotify_private.h │ ├── wrappednsl.c │ ├── wrappednsl_private.h │ ├── wrappednspr4.c │ ├── wrappednspr4_private.h │ ├── wrappednss3.c │ ├── wrappednss3_private.h │ ├── wrappednssutil3.c │ ├── wrappednssutil3_private.h │ ├── wrappedopenal.c │ ├── wrappedopenal_private.h │ ├── wrappedopencl.c │ ├── wrappedopencl_private.h │ ├── wrappedp11kit.c │ ├── wrappedp11kit_private.h │ ├── wrappedpam.c │ ├── wrappedpam_private.h │ ├── wrappedpango.c │ ├── wrappedpango_private.h │ ├── wrappedpangocairo.c │ ├── wrappedpangocairo_private.h │ ├── wrappedpangoft2.c │ ├── wrappedpangoft2_private.h │ ├── wrappedplc4.c │ ├── wrappedplc4_private.h │ ├── wrappedplds4.c │ ├── wrappedplds4_private.h │ ├── wrappedpng16.c │ ├── wrappedpng16_private.h │ ├── wrappedpsl5.c │ ├── wrappedpsl5_private.h │ ├── wrappedpulse.c │ ├── wrappedpulse_private.h │ ├── wrappedpulsemainloopglib.c │ ├── wrappedpulsemainloopglib_private.h │ ├── wrappedpulsesimple.c │ ├── wrappedpulsesimple_private.h │ ├── wrappedsdl1.c │ ├── wrappedsdl1_private.h │ ├── wrappedsdl1image.c │ ├── wrappedsdl1image_private.h │ ├── wrappedsdl1mixer.c │ ├── wrappedsdl1mixer_private.h │ ├── wrappedsdl1net.c │ ├── wrappedsdl1net_private.h │ ├── wrappedsdl1sound.c │ ├── wrappedsdl1sound_private.h │ ├── wrappedsdl1ttf.c │ ├── wrappedsdl1ttf_private.h │ ├── wrappedsdl2.c │ ├── wrappedsdl2_private.h │ ├── wrappedsdl2image.c │ ├── wrappedsdl2image_private.h │ ├── wrappedsdl2mixer.c │ ├── wrappedsdl2mixer_private.h │ ├── wrappedsdl2net.c │ ├── wrappedsdl2net_private.h │ ├── wrappedsdl2ttf.c │ ├── wrappedsdl2ttf_private.h │ ├── wrappedsecret1.c │ ├── wrappedsecret1_private.h │ ├── wrappedselinux.c │ ├── wrappedselinux_private.h │ ├── wrappedsmime3.c │ ├── wrappedsmime3_private.h │ ├── wrappedsmpeg.c │ ├── wrappedsmpeg2.c │ ├── wrappedsmpeg2_private.h │ ├── wrappedsmpeg_private.h │ ├── wrappedsoftokn3.c │ ├── wrappedsoftokn3_private.h │ ├── wrappedssl3.c │ ├── wrappedssl3_private.h │ ├── wrappedtbbbind.c │ ├── wrappedtbbbind_private.h │ ├── wrappedtbbmalloc.c │ ├── wrappedtbbmalloc_private.h │ ├── wrappedtbbmallocproxy.c │ ├── wrappedtbbmallocproxy_private.h │ ├── wrappedtcmallocminimal.c │ ├── wrappedtcmallocminimal_private.h │ ├── wrappedtermuxexec.c │ ├── wrappedtermuxexec_private.h │ ├── wrappedudev0.c │ ├── wrappedudev0_private.h │ ├── wrappedudev1.c │ ├── wrappedudev1_private.h │ ├── wrappedunwind.c │ ├── wrappedunwind_private.h │ ├── wrappedutil.c │ ├── wrappedutil_private.h │ ├── wrappedvorbisfile.c │ ├── wrappedvorbisfile_private.h │ ├── wrappedvulkan.c │ ├── wrappedvulkan_private.h │ ├── wrappedwaylandclient.c │ ├── wrappedwaylandclient_private.h │ ├── wrappedwaylandcursor.c │ ├── wrappedwaylandcursor_private.h │ ├── wrappedwaylandegl.c │ ├── wrappedwaylandegl_private.h │ ├── wrappedxinerama.c │ ├── wrappedxinerama_private.h │ ├── wrappedxkbcommon.c │ ├── wrappedxkbcommon_private.h │ ├── wrappedxkbcommonx11.c │ ├── wrappedxkbcommonx11_private.h │ ├── wrappedxkbregistry.c │ ├── wrappedxkbregistry_private.h │ ├── wrappedxml2.c │ ├── wrappedxml2_private.h │ ├── wrappedxshmfence.c │ ├── wrappedxshmfence_private.h │ ├── wrappedxslt.c │ ├── wrappedxslt_private.h │ ├── wrappedzstd.c │ ├── wrappedzstd_private.h │ └── wrappercallback.h └── wrapped32 │ ├── generated │ ├── converter32.c │ ├── converter32.h │ ├── functions_list.txt │ ├── wrappedcairodefs32.h │ ├── wrappedcairotypes32.h │ ├── wrappedcairoundefs32.h │ ├── wrappedcrashhandlerdefs32.h │ ├── wrappedcrashhandlertypes32.h │ ├── wrappedcrashhandlerundefs32.h │ ├── wrappedexpatdefs32.h │ ├── wrappedexpattypes32.h │ ├── wrappedexpatundefs32.h │ ├── wrappedfontconfigdefs32.h │ ├── wrappedfontconfigtypes32.h │ ├── wrappedfontconfigundefs32.h │ ├── wrappedfreetypedefs32.h │ ├── wrappedfreetypetypes32.h │ ├── wrappedfreetypeundefs32.h │ ├── wrappedldlinuxdefs32.h │ ├── wrappedldlinuxtypes32.h │ ├── wrappedldlinuxundefs32.h │ ├── wrappedlibasounddefs32.h │ ├── wrappedlibasoundtypes32.h │ ├── wrappedlibasoundundefs32.h │ ├── wrappedlibcdefs32.h │ ├── wrappedlibctypes32.h │ ├── wrappedlibcundefs32.h │ ├── wrappedlibdldefs32.h │ ├── wrappedlibdltypes32.h │ ├── wrappedlibdlundefs32.h │ ├── wrappedlibdrmdefs32.h │ ├── wrappedlibdrmtypes32.h │ ├── wrappedlibdrmundefs32.h │ ├── wrappedlibgldefs32.h │ ├── wrappedlibgltypes32.h │ ├── wrappedlibgludefs32.h │ ├── wrappedlibglundefs32.h │ ├── wrappedlibglutypes32.h │ ├── wrappedlibgluundefs32.h │ ├── wrappedlibmdefs32.h │ ├── wrappedlibmtypes32.h │ ├── wrappedlibmundefs32.h │ ├── wrappedlibpthreaddefs32.h │ ├── wrappedlibpthreadtypes32.h │ ├── wrappedlibpthreadundefs32.h │ ├── wrappedlibresolvdefs32.h │ ├── wrappedlibresolvtypes32.h │ ├── wrappedlibresolvundefs32.h │ ├── wrappedlibrtdefs32.h │ ├── wrappedlibrttypes32.h │ ├── wrappedlibrtundefs32.h │ ├── wrappedlibuuiddefs32.h │ ├── wrappedlibuuidtypes32.h │ ├── wrappedlibuuidundefs32.h │ ├── wrappedlibvdpaudefs32.h │ ├── wrappedlibvdpautypes32.h │ ├── wrappedlibvdpauundefs32.h │ ├── wrappedlibx11defs32.h │ ├── wrappedlibx11types32.h │ ├── wrappedlibx11undefs32.h │ ├── wrappedlibx11xcbdefs32.h │ ├── wrappedlibx11xcbtypes32.h │ ├── wrappedlibx11xcbundefs32.h │ ├── wrappedlibxcbdefs32.h │ ├── wrappedlibxcbresdefs32.h │ ├── wrappedlibxcbrestypes32.h │ ├── wrappedlibxcbresundefs32.h │ ├── wrappedlibxcbtypes32.h │ ├── wrappedlibxcbundefs32.h │ ├── wrappedlibxcompositedefs32.h │ ├── wrappedlibxcompositetypes32.h │ ├── wrappedlibxcompositeundefs32.h │ ├── wrappedlibxcursordefs32.h │ ├── wrappedlibxcursortypes32.h │ ├── wrappedlibxcursorundefs32.h │ ├── wrappedlibxdamagedefs32.h │ ├── wrappedlibxdamagetypes32.h │ ├── wrappedlibxdamageundefs32.h │ ├── wrappedlibxextdefs32.h │ ├── wrappedlibxexttypes32.h │ ├── wrappedlibxextundefs32.h │ ├── wrappedlibxfixesdefs32.h │ ├── wrappedlibxfixestypes32.h │ ├── wrappedlibxfixesundefs32.h │ ├── wrappedlibxidefs32.h │ ├── wrappedlibxitypes32.h │ ├── wrappedlibxiundefs32.h │ ├── wrappedlibxrandrdefs32.h │ ├── wrappedlibxrandrtypes32.h │ ├── wrappedlibxrandrundefs32.h │ ├── wrappedlibxrenderdefs32.h │ ├── wrappedlibxrendertypes32.h │ ├── wrappedlibxrenderundefs32.h │ ├── wrappedlibxssdefs32.h │ ├── wrappedlibxsstypes32.h │ ├── wrappedlibxssundefs32.h │ ├── wrappedlibxxf86vmdefs32.h │ ├── wrappedlibxxf86vmtypes32.h │ ├── wrappedlibxxf86vmundefs32.h │ ├── wrappednsldefs32.h │ ├── wrappednsltypes32.h │ ├── wrappednslundefs32.h │ ├── wrappedopenaldefs32.h │ ├── wrappedopenaltypes32.h │ ├── wrappedopenalundefs32.h │ ├── wrappedsdl1defs32.h │ ├── wrappedsdl1types32.h │ ├── wrappedsdl1undefs32.h │ ├── wrappedsdl2defs32.h │ ├── wrappedsdl2imagedefs32.h │ ├── wrappedsdl2imagetypes32.h │ ├── wrappedsdl2imageundefs32.h │ ├── wrappedsdl2types32.h │ ├── wrappedsdl2undefs32.h │ ├── wrappedtcmallocminimaldefs32.h │ ├── wrappedtcmallocminimaltypes32.h │ ├── wrappedtcmallocminimalundefs32.h │ ├── wrappedudev0defs32.h │ ├── wrappedudev0types32.h │ ├── wrappedudev0undefs32.h │ ├── wrappedudev1defs32.h │ ├── wrappedudev1types32.h │ ├── wrappedudev1undefs32.h │ ├── wrappedxineramadefs32.h │ ├── wrappedxineramatypes32.h │ ├── wrappedxineramaundefs32.h │ ├── wrapper32.c │ └── wrapper32.h │ ├── wrappedcairo.c │ ├── wrappedcairo_private.h │ ├── wrappedcrashhandler.c │ ├── wrappedcrashhandler_private.h │ ├── wrappedexpat.c │ ├── wrappedexpat_private.h │ ├── wrappedfontconfig.c │ ├── wrappedfontconfig_private.h │ ├── wrappedfreetype.c │ ├── wrappedfreetype_private.h │ ├── wrappedldlinux.c │ ├── wrappedldlinux_private.h │ ├── wrappedlib_init32.h │ ├── wrappedlibasound.c │ ├── wrappedlibasound_private.h │ ├── wrappedlibc.c │ ├── wrappedlibc_private.h │ ├── wrappedlibdl.c │ ├── wrappedlibdl_private.h │ ├── wrappedlibdrm.c │ ├── wrappedlibdrm_private.h │ ├── wrappedlibgl.c │ ├── wrappedlibgl_private.h │ ├── wrappedlibglu.c │ ├── wrappedlibglu_private.h │ ├── wrappedlibm.c │ ├── wrappedlibm_private.h │ ├── wrappedlibpthread.c │ ├── wrappedlibpthread_private.h │ ├── wrappedlibresolv.c │ ├── wrappedlibresolv_private.h │ ├── wrappedlibrt.c │ ├── wrappedlibrt_private.h │ ├── wrappedlibuuid.c │ ├── wrappedlibuuid_private.h │ ├── wrappedlibvdpau.c │ ├── wrappedlibvdpau_private.h │ ├── wrappedlibx11.c │ ├── wrappedlibx11_private.h │ ├── wrappedlibx11xcb.c │ ├── wrappedlibx11xcb_private.h │ ├── wrappedlibxcb.c │ ├── wrappedlibxcb_private.h │ ├── wrappedlibxcbres.c │ ├── wrappedlibxcbres_private.h │ ├── wrappedlibxcomposite.c │ ├── wrappedlibxcomposite_private.h │ ├── wrappedlibxcursor.c │ ├── wrappedlibxcursor_private.h │ ├── wrappedlibxdamage.c │ ├── wrappedlibxdamage_private.h │ ├── wrappedlibxext.c │ ├── wrappedlibxext_private.h │ ├── wrappedlibxfixes.c │ ├── wrappedlibxfixes_private.h │ ├── wrappedlibxi.c │ ├── wrappedlibxi_private.h │ ├── wrappedlibxrandr.c │ ├── wrappedlibxrandr_private.h │ ├── wrappedlibxrender.c │ ├── wrappedlibxrender_private.h │ ├── wrappedlibxss.c │ ├── wrappedlibxss_private.h │ ├── wrappedlibxxf86vm.c │ ├── wrappedlibxxf86vm_private.h │ ├── wrappednsl.c │ ├── wrappednsl_private.h │ ├── wrappedopenal.c │ ├── wrappedopenal_private.h │ ├── wrappedsdl1.c │ ├── wrappedsdl1_private.h │ ├── wrappedsdl2.c │ ├── wrappedsdl2_private.h │ ├── wrappedsdl2image.c │ ├── wrappedsdl2image_private.h │ ├── wrappedtcmallocminimal.c │ ├── wrappedtcmallocminimal_private.h │ ├── wrappedudev0.c │ ├── wrappedudev0_private.h │ ├── wrappedudev1.c │ ├── wrappedudev1_private.h │ ├── wrappedxinerama.c │ ├── wrappedxinerama_private.h │ └── wrappercallback32.h ├── system ├── box32.conf.cmake ├── box64.box64rc └── box64.conf.cmake ├── tests ├── benchfloat ├── benchfloat.c ├── benchfloat_android ├── box64-bash ├── extensions │ ├── mmx │ ├── mmx.c │ ├── mmx.txt │ └── mmx_android ├── misc │ ├── gvariant │ ├── gvariant.c │ └── gvariant.txt ├── ref01.txt ├── ref02.txt ├── ref03.txt ├── ref04.txt ├── ref05.txt ├── ref06.txt ├── ref07.txt ├── ref08.txt ├── ref09.txt ├── ref10.txt ├── ref11.txt ├── ref12.txt ├── ref12_android.txt ├── ref13.txt ├── ref14.txt ├── ref15.txt ├── ref16.txt ├── ref17.txt ├── ref17_android.txt ├── ref18.txt ├── ref19.txt ├── ref20.txt ├── ref21.txt ├── ref21_alt.txt ├── ref22.txt ├── ref22_android.txt ├── ref23.txt ├── ref24.txt ├── ref25.txt ├── ref26.txt ├── ref27.txt ├── ref28.txt ├── ref29.txt ├── ref30.txt ├── ref31.txt ├── roundtest.h ├── test01 ├── test01.c ├── test01_android ├── test02 ├── test02.c ├── test02_android ├── test03 ├── test03.c ├── test03_android ├── test04 ├── test04.c ├── test04_android ├── test05 ├── test05.c ├── test05_android ├── test06 ├── test06.c ├── test06_android ├── test07 ├── test07.c ├── test07_android ├── test08 ├── test08.c ├── test08_android ├── test09 ├── test09.c ├── test09_android ├── test10 ├── test10.cpp ├── test10_android ├── test11 ├── test11.c ├── test11_android ├── test12 ├── test12.c ├── test12_android ├── test13 ├── test13.c ├── test14 ├── test14.c ├── test14_android ├── test15 ├── test15.c ├── test15_android ├── test16 ├── test16.c ├── test16_android ├── test17 ├── test17.c ├── test17_android ├── test18 ├── test18.c ├── test18_android ├── test19 ├── test19.c ├── test20 ├── test20.c ├── test20_android ├── test21 ├── test21.c ├── test21_alt ├── test21_alt.c ├── test21_android ├── test21_android.c ├── test22 ├── test22.c ├── test22_android ├── test23 ├── test23.c ├── test23_android ├── test24 ├── test24.c ├── test24_android ├── test25 ├── test25.c ├── test25_android ├── test26 ├── test26.c ├── test26_android ├── test27 ├── test27.c ├── test27_android ├── test28 ├── test28.c ├── test28_android ├── test29 ├── test29.c ├── test29_android ├── test30 ├── test30.c ├── test31 └── test31.c ├── tests32 ├── bash ├── benchfloat ├── benchfloat.c ├── extensions │ ├── mmx │ ├── mmx.c │ └── mmx.txt ├── ref01.txt ├── ref02.txt ├── ref03.txt ├── ref04.txt ├── ref05.txt ├── ref06.txt ├── ref07.txt ├── ref08.txt ├── ref09.txt ├── ref10.txt ├── ref11.txt ├── ref12.txt ├── ref13.txt ├── ref14.txt ├── ref15.txt ├── ref16.txt ├── ref17.txt ├── ref17_o2.txt ├── ref18.txt ├── ref19.txt ├── ref20.txt ├── ref21.txt ├── ref22.txt ├── ref23.txt ├── ref24.txt ├── ref25.txt ├── ref26.txt ├── roundtest.h ├── test01 ├── test01.c ├── test02 ├── test02.c ├── test03 ├── test03.c ├── test04 ├── test04.c ├── test05 ├── test05.c ├── test06 ├── test06.c ├── test07 ├── test07.c ├── test08 ├── test08.c ├── test09 ├── test09.c ├── test10 ├── test10.cpp ├── test11 ├── test11.c ├── test12 ├── test12.c ├── test13 ├── test13.c ├── test14 ├── test14.c ├── test15 ├── test15.c ├── test15_dv1.so ├── test15_v1.so ├── test15_v2.so ├── test16 ├── test16.c ├── test16_dv1.so ├── test16_v1.so ├── test16_v2.so ├── test17 ├── test17.c ├── test17_o2 ├── test18 ├── test18.c ├── test19 ├── test19.c ├── test20 ├── test20.c ├── test21 ├── test21.c ├── test21_v1.so ├── test21_v2.so ├── test22 ├── test22.c ├── test23 ├── test23.c ├── test24 ├── test24.c ├── test25 ├── test25.c ├── test26 └── test26.c ├── wrapperhelper ├── Makefile ├── README.md ├── example-libc.h ├── include-override │ ├── aarch64 │ │ ├── bits │ │ │ └── pthreadtypes-arch.h │ │ └── stdc-predef.h │ ├── common │ │ ├── bits │ │ │ ├── floatn.h │ │ │ ├── stdint-intn.h │ │ │ ├── stdint-least.h │ │ │ ├── stdint-uintn.h │ │ │ └── types.h │ │ ├── stdc-predef.h │ │ └── stdint.h │ ├── x86 │ │ ├── bits │ │ │ └── pthreadtypes-arch.h │ │ └── stdc-predef.h │ └── x86_64 │ │ ├── bits │ │ └── pthreadtypes-arch.h │ │ └── stdc-predef.h └── src │ ├── cstring.c │ ├── cstring.h │ ├── generator.c │ ├── generator.h │ ├── khash.h │ ├── lang.c │ ├── lang.h │ ├── log.c │ ├── log.h │ ├── machine.c │ ├── machine.h │ ├── main.c │ ├── parse.c │ ├── parse.h │ ├── prepare.c │ ├── prepare.h │ ├── preproc.c │ ├── preproc.h │ ├── vector.c │ └── vector.h ├── x64android └── libc++_shared.so ├── x64lib ├── libcrypto.so.1.0.0 ├── libcrypto.so.1.1 ├── libgcc_s.so.1 ├── libmbedcrypto.so.3 ├── libmbedcrypto.so.7 ├── libmbedtls.so.12 ├── libmbedtls.so.14 ├── libmbedx509.so.0 ├── libmbedx509.so.1 ├── libpng12.so.0 ├── libssl.so.1.0.0 ├── libssl.so.1.1 ├── libstdc++.so.5 ├── libstdc++.so.6 └── libunwind.so.8 ├── x86android └── libc++_shared.so └── x86lib ├── libcrypto.so.1.0.0 ├── libgcc_s.so.1 ├── libpng12.so.0 ├── libssl.so.1.0.0 ├── libstdc++.so.5 ├── libstdc++.so.6 ├── libunwind.so.8 └── libz.so.1 /debian/compat: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /debian/lintian-override: -------------------------------------------------------------------------------- 1 | box64: no-manual-page 2 | -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/upstream/metadata: -------------------------------------------------------------------------------- 1 | Bug-Database: https://github.com/ptitSeb/box64/issues 2 | Bug-Submit: https://github.com/ptitSeb/box64/issues/new 3 | Repository: https://github.com/ptitSeb/box64.git 4 | Repository-Browse: https://github.com/ptitSeb/box64 5 | Security-Contact: ptitseb@box86.org 6 | -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- 1 | version=3 2 | -------------------------------------------------------------------------------- /docs/img/Box64Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/docs/img/Box64Icon.png -------------------------------------------------------------------------------- /docs/img/Box64Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/docs/img/Box64Logo.png -------------------------------------------------------------------------------- /postinst: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | systemctl restart systemd-binfmt 3 | -------------------------------------------------------------------------------- /src/box64version.h: -------------------------------------------------------------------------------- 1 | #ifndef __BOX64_VERSION_H_ 2 | #define __BOX64_VERSION_H_ 3 | 4 | #define BOX64_MAJOR 0 5 | #define BOX64_MINOR 3 6 | #define BOX64_REVISION 3 7 | 8 | #endif //__BOX64_VERSION_H_ 9 | -------------------------------------------------------------------------------- /src/build_info.h: -------------------------------------------------------------------------------- 1 | #ifndef __BUILD_INFO_H__ 2 | #define __BUILD_INFO_H__ 3 | 4 | void PrintBox64Version(void); 5 | 6 | #endif //__BUILD_INFO_H__ -------------------------------------------------------------------------------- /src/dynarec/arm64/arm64_immenc.h: -------------------------------------------------------------------------------- 1 | #ifndef __ARM64_IMMENC_H__ 2 | #define __ARM64_IMMENC_H__ 3 | 4 | #include 5 | 6 | int convert_bitmask(uint64_t bitmask); 7 | 8 | #endif // __ARM64_IMMENC_H__ 9 | -------------------------------------------------------------------------------- /src/dynarec/arm64/arm64_printer.h: -------------------------------------------------------------------------------- 1 | #ifndef _ARM_PRINTER_H_ 2 | #define _ARM_PRINTER_H_ 3 | 4 | const char* arm64_print(uint32_t opcode, uint64_t addr); 5 | 6 | #endif //_ARM_PRINTER_H_ 7 | -------------------------------------------------------------------------------- /src/dynarec/la64/la64_printer.h: -------------------------------------------------------------------------------- 1 | #ifndef _LA64_PRINTER_H_ 2 | #define _LA64_PRINTER_H_ 3 | 4 | const char* la64_print(uint32_t opcode, uint64_t addr); 5 | 6 | #endif //_LA64_PRINTER_H_ 7 | -------------------------------------------------------------------------------- /src/dynarec/rv64/rv64_printer.h: -------------------------------------------------------------------------------- 1 | #ifndef _RV64_PRINTER_H_ 2 | #define _RV64_PRINTER_H_ 3 | #include 4 | #include 5 | 6 | const char* rv64_print(uint32_t data, uint64_t addr); 7 | 8 | #endif //_RV64_PRINTER_H_ 9 | -------------------------------------------------------------------------------- /src/include/auxval.h: -------------------------------------------------------------------------------- 1 | #ifndef __AUXVAL_H__ 2 | #define __AUXVAL_H__ 3 | 4 | typedef struct x64emu_s x64emu_t; 5 | 6 | #ifndef BUILD_LIB 7 | int init_auxval(int argc, const char **argv, char **env); 8 | #endif 9 | 10 | unsigned long real_getauxval(unsigned long type); 11 | unsigned long my_getauxval(x64emu_t* emu, unsigned long type); 12 | 13 | #endif //__AUXVAL_H__ -------------------------------------------------------------------------------- /src/include/bitutils.h: -------------------------------------------------------------------------------- 1 | #ifndef __BITUTILS_H_ 2 | #define __BITUTILS_H_ 3 | #include 4 | 5 | extern const uint8_t deBruijn64tab[64]; 6 | extern const uint8_t lead0tab[16]; 7 | 8 | int TrailingZeros64(uint64_t x); 9 | 10 | #endif //__BITUTILS_H_ 11 | -------------------------------------------------------------------------------- /src/include/box32context.h: -------------------------------------------------------------------------------- 1 | #ifndef __BOX32CONTEXT_H_ 2 | #define __BOX32CONTEXT_H_ 3 | 4 | #include "box32.h" 5 | #include "box64context.h" 6 | 7 | #endif//__BOX32CONTEXT_H_ -------------------------------------------------------------------------------- /src/include/box64stack.h: -------------------------------------------------------------------------------- 1 | #ifndef __BOX64_STACK_H_ 2 | #define __BOX64_STACK_H_ 3 | 4 | #include 5 | 6 | typedef struct box64context_s box64context_t; 7 | typedef struct x64emu_s x64emu_t; 8 | 9 | int CalcStackSize(box64context_t *context); 10 | void SetupInitialStack(x64emu_t *emu); 11 | 12 | #endif //__BOX64_STACK_H_ 13 | -------------------------------------------------------------------------------- /src/include/dictionnary.h: -------------------------------------------------------------------------------- 1 | #ifndef __DICTIONNARY_H_ 2 | #define __DICTIONNARY_H_ 3 | #include 4 | 5 | typedef void dic_t; 6 | 7 | dic_t *NewDictionnary(void); 8 | void FreeDictionnary(dic_t **dic); 9 | 10 | const char* AddDictionnary(dic_t* dic, const char* s); 11 | int ExistDictionnary(dic_t* dic, const char* s); 12 | 13 | #endif //__DICTIONNARY_H_ -------------------------------------------------------------------------------- /src/include/dynarec.h: -------------------------------------------------------------------------------- 1 | #ifndef __DYNAREC_H_ 2 | #define __DYNAREC_H_ 3 | 4 | typedef struct x64emu_s x64emu_t; 5 | 6 | void DynaCall(x64emu_t* emu, uintptr_t addr); // try to use DynaRec... Fallback to EmuCall if no dynarec available 7 | 8 | void x64test_step(x64emu_t* ref, uintptr_t ip); 9 | void x64test_check(x64emu_t* ref, uintptr_t ip); 10 | 11 | #endif // __DYNAREC_H_ -------------------------------------------------------------------------------- /src/include/my_cpuid.h: -------------------------------------------------------------------------------- 1 | #ifndef __MY_CPUID_H__ 2 | #define __MY_CPUID_H__ 3 | #include 4 | typedef struct x64emu_s x64emu_t; 5 | 6 | void my_cpuid(x64emu_t* emu, uint32_t tmp32u); 7 | uint32_t helper_getcpu(x64emu_t* emu); // get the numa/cpu id actually running 8 | uint32_t get_random32(); 9 | uint64_t get_random64(); 10 | #endif //__MY_CPUID_H__ -------------------------------------------------------------------------------- /src/include/rcfile.h: -------------------------------------------------------------------------------- 1 | #ifndef __RCFILE_H__ 2 | #define __RCFILE_H__ 3 | 4 | void LoadRCFile(const char* filename); 5 | void DeleteParams(void); 6 | void ApplyParams(const char* name); 7 | const char* GetLastApplyName(); 8 | 9 | #endif //__RCFILE_H__ -------------------------------------------------------------------------------- /src/include/wine_tools.h: -------------------------------------------------------------------------------- 1 | #ifndef __WINE_TOOLS_H__ 2 | #define __WINE_TOOLS_H__ 3 | 4 | void wine_prereserve(const char* reserve); 5 | 6 | extern int wine_preloaded; 7 | void* get_wine_prereserve(void); 8 | 9 | #ifdef DYNAREC 10 | void dynarec_wine_prereserve(void); 11 | #endif 12 | 13 | #endif //__WINE_TOOLS_H__ 14 | -------------------------------------------------------------------------------- /src/librarian/library_inner.h: -------------------------------------------------------------------------------- 1 | #ifndef __LIBRARY_INNER_H__ 2 | #define __LIBRARY_INNER_H__ 3 | 4 | void WrappedLib_CommonInit(library_t* lib); 5 | void WrappedLib_FinishFini(library_t* lib); 6 | 7 | #endif -------------------------------------------------------------------------------- /src/library_list_static_32.h: -------------------------------------------------------------------------------- 1 | #ifndef GO 2 | #error Nope 3 | #endif 4 | 5 | GO("libpthread.so.0", libpthread) 6 | GO("librt.so.1", librt) 7 | GO("libc.so.6", libc) 8 | GO("libm.so.6", libm) 9 | GO("libdl.so.2", libdl) 10 | GO("ld-linux.so.2", ldlinux) 11 | -------------------------------------------------------------------------------- /src/libtools/threads32.h: -------------------------------------------------------------------------------- 1 | #ifndef __THREADS_32_H_ 2 | #define __THREADS_32_H_ 3 | #include "box32.h" 4 | 5 | typedef struct fake_pthread_mutext_s { 6 | int __lock; 7 | unsigned int __count; 8 | int __owner; 9 | int i386__kind; 10 | int __kind; 11 | ptr_t real_mutex; 12 | } fake_phtread_mutex_t; 13 | #define KIND_SIGN 0xbad001 14 | 15 | #endif //__THREADS_32_H_ -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- 1 | #include "core.h" 2 | 3 | int main(int argc, const char **argv, char **env) { 4 | 5 | x64emu_t* emu = NULL; 6 | elfheader_t* elf_header = NULL; 7 | if (initialize(argc, argv, env, &emu, &elf_header, 1)) { 8 | return -1; 9 | } 10 | 11 | return emulate(emu, elf_header); 12 | } 13 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedaluredefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedalureDEFS_H_ 5 | #define __wrappedalureDEFS_H_ 6 | 7 | 8 | #endif // __wrappedalureDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedalureundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedalureUNDEFS_H_ 5 | #define __wrappedalureUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedalureUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedalutdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedalutDEFS_H_ 5 | #define __wrappedalutDEFS_H_ 6 | 7 | 8 | #endif // __wrappedalutDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedalutundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedalutUNDEFS_H_ 5 | #define __wrappedalutUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedalutUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedanldefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedanlDEFS_H_ 5 | #define __wrappedanlDEFS_H_ 6 | 7 | 8 | #endif // __wrappedanlDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedanlundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedanlUNDEFS_H_ 5 | #define __wrappedanlUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedanlUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedatkbridgedefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedatkbridgeDEFS_H_ 5 | #define __wrappedatkbridgeDEFS_H_ 6 | 7 | 8 | #endif // __wrappedatkbridgeDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedatkdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedatkDEFS_H_ 5 | #define __wrappedatkDEFS_H_ 6 | 7 | 8 | #endif // __wrappedatkDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedatkundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedatkUNDEFS_H_ 5 | #define __wrappedatkUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedatkUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedatomicdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedatomicDEFS_H_ 5 | #define __wrappedatomicDEFS_H_ 6 | 7 | 8 | #endif // __wrappedatomicDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedatomicundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedatomicUNDEFS_H_ 5 | #define __wrappedatomicUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedatomicUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedatspidefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedatspiDEFS_H_ 5 | #define __wrappedatspiDEFS_H_ 6 | 7 | 8 | #endif // __wrappedatspiDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedatspiundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedatspiUNDEFS_H_ 5 | #define __wrappedatspiUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedatspiUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedbrotlidecdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedbrotlidecDEFS_H_ 5 | #define __wrappedbrotlidecDEFS_H_ 6 | 7 | 8 | #endif // __wrappedbrotlidecDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedbz2defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedbz2DEFS_H_ 5 | #define __wrappedbz2DEFS_H_ 6 | 7 | 8 | #endif // __wrappedbz2DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedbz2undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedbz2UNDEFS_H_ 5 | #define __wrappedbz2UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedbz2UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedcairodefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedcairoDEFS_H_ 5 | #define __wrappedcairoDEFS_H_ 6 | 7 | 8 | #endif // __wrappedcairoDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedcairoundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedcairoUNDEFS_H_ 5 | #define __wrappedcairoUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedcairoUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedcapdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedcapDEFS_H_ 5 | #define __wrappedcapDEFS_H_ 6 | 7 | 8 | #endif // __wrappedcapDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedcapundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedcapUNDEFS_H_ 5 | #define __wrappedcapUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedcapUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedcrypto3defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedcrypto3DEFS_H_ 5 | #define __wrappedcrypto3DEFS_H_ 6 | 7 | 8 | #endif // __wrappedcrypto3DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedcrypto3undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedcrypto3UNDEFS_H_ 5 | #define __wrappedcrypto3UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedcrypto3UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedcryptodefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedcryptoDEFS_H_ 5 | #define __wrappedcryptoDEFS_H_ 6 | 7 | 8 | #endif // __wrappedcryptoDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedcryptoundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedcryptoUNDEFS_H_ 5 | #define __wrappedcryptoUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedcryptoUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedcurldefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedcurlDEFS_H_ 5 | #define __wrappedcurlDEFS_H_ 6 | 7 | 8 | #endif // __wrappedcurlDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedcurlundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedcurlUNDEFS_H_ 5 | #define __wrappedcurlUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedcurlUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappeddbusdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappeddbusDEFS_H_ 5 | #define __wrappeddbusDEFS_H_ 6 | 7 | 8 | #endif // __wrappeddbusDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappeddbusglib1defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappeddbusglib1DEFS_H_ 5 | #define __wrappeddbusglib1DEFS_H_ 6 | 7 | 8 | #endif // __wrappeddbusglib1DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappeddbusundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappeddbusUNDEFS_H_ 5 | #define __wrappeddbusUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappeddbusUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappeddecor0defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappeddecor0DEFS_H_ 5 | #define __wrappeddecor0DEFS_H_ 6 | 7 | 8 | #endif // __wrappeddecor0DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappeddecor0undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappeddecor0UNDEFS_H_ 5 | #define __wrappeddecor0UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappeddecor0UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedevent21defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedevent21DEFS_H_ 5 | #define __wrappedevent21DEFS_H_ 6 | 7 | 8 | #endif // __wrappedevent21DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedevent21undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedevent21UNDEFS_H_ 5 | #define __wrappedevent21UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedevent21UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedexpatdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedexpatDEFS_H_ 5 | #define __wrappedexpatDEFS_H_ 6 | 7 | 8 | #endif // __wrappedexpatDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedexpatundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedexpatUNDEFS_H_ 5 | #define __wrappedexpatUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedexpatUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedfaudiodefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedfaudioDEFS_H_ 5 | #define __wrappedfaudioDEFS_H_ 6 | 7 | 8 | #endif // __wrappedfaudioDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedfaudioundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedfaudioUNDEFS_H_ 5 | #define __wrappedfaudioUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedfaudioUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedflacdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedflacDEFS_H_ 5 | #define __wrappedflacDEFS_H_ 6 | 7 | 8 | #endif // __wrappedflacDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedflacundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedflacUNDEFS_H_ 5 | #define __wrappedflacUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedflacUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedfreebl3defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedfreebl3DEFS_H_ 5 | #define __wrappedfreebl3DEFS_H_ 6 | 7 | 8 | #endif // __wrappedfreebl3DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedfreebl3undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedfreebl3UNDEFS_H_ 5 | #define __wrappedfreebl3UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedfreebl3UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedfreetypedefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedfreetypeDEFS_H_ 5 | #define __wrappedfreetypeDEFS_H_ 6 | 7 | 8 | #endif // __wrappedfreetypeDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgbmdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgbmDEFS_H_ 5 | #define __wrappedgbmDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgbmDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgbmundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgbmUNDEFS_H_ 5 | #define __wrappedgbmUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgbmUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgconf2defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgconf2DEFS_H_ 5 | #define __wrappedgconf2DEFS_H_ 6 | 7 | 8 | #endif // __wrappedgconf2DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgconf2undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgconf2UNDEFS_H_ 5 | #define __wrappedgconf2UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgconf2UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgcryptdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgcryptDEFS_H_ 5 | #define __wrappedgcryptDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgcryptDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgcryptundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgcryptUNDEFS_H_ 5 | #define __wrappedgcryptUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgcryptUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgdk3defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgdk3DEFS_H_ 5 | #define __wrappedgdk3DEFS_H_ 6 | 7 | 8 | #endif // __wrappedgdk3DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgdk3undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgdk3UNDEFS_H_ 5 | #define __wrappedgdk3UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgdk3UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgdkx112defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgdkx112DEFS_H_ 5 | #define __wrappedgdkx112DEFS_H_ 6 | 7 | 8 | #endif // __wrappedgdkx112DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgdkx112undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgdkx112UNDEFS_H_ 5 | #define __wrappedgdkx112UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgdkx112UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgio2defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgio2DEFS_H_ 5 | #define __wrappedgio2DEFS_H_ 6 | 7 | 8 | #endif // __wrappedgio2DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgio2undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgio2UNDEFS_H_ 5 | #define __wrappedgio2UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgio2UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedglesv2defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedglesv2DEFS_H_ 5 | #define __wrappedglesv2DEFS_H_ 6 | 7 | 8 | #endif // __wrappedglesv2DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedglesv2undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedglesv2UNDEFS_H_ 5 | #define __wrappedglesv2UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedglesv2UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedglib2defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedglib2DEFS_H_ 5 | #define __wrappedglib2DEFS_H_ 6 | 7 | 8 | #endif // __wrappedglib2DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedglib2undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedglib2UNDEFS_H_ 5 | #define __wrappedglib2UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedglib2UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgmodule2defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgmodule2DEFS_H_ 5 | #define __wrappedgmodule2DEFS_H_ 6 | 7 | 8 | #endif // __wrappedgmodule2DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgmpdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgmpDEFS_H_ 5 | #define __wrappedgmpDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgmpDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgmpundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgmpUNDEFS_H_ 5 | #define __wrappedgmpUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgmpUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgnutlsdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgnutlsDEFS_H_ 5 | #define __wrappedgnutlsDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgnutlsDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgnutlsundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgnutlsUNDEFS_H_ 5 | #define __wrappedgnutlsUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgnutlsUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgobject2defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgobject2DEFS_H_ 5 | #define __wrappedgobject2DEFS_H_ 6 | 7 | 8 | #endif // __wrappedgobject2DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgompdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgompDEFS_H_ 5 | #define __wrappedgompDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgompDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgompundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgompUNDEFS_H_ 5 | #define __wrappedgompUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgompUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgssapidefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgssapiDEFS_H_ 5 | #define __wrappedgssapiDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgssapiDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgssapiundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgssapiUNDEFS_H_ 5 | #define __wrappedgssapiUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgssapiUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgstappdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgstappDEFS_H_ 5 | #define __wrappedgstappDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgstappDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgstappundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgstappUNDEFS_H_ 5 | #define __wrappedgstappUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgstappUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgstaudiodefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgstaudioDEFS_H_ 5 | #define __wrappedgstaudioDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgstaudioDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgstbasedefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgstbaseDEFS_H_ 5 | #define __wrappedgstbaseDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgstbaseDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgstbaseundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgstbaseUNDEFS_H_ 5 | #define __wrappedgstbaseUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgstbaseUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgstcheckdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgstcheckDEFS_H_ 5 | #define __wrappedgstcheckDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgstcheckDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgstfftdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgstfftDEFS_H_ 5 | #define __wrappedgstfftDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgstfftDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgstfftundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgstfftUNDEFS_H_ 5 | #define __wrappedgstfftUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgstfftUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgstgldefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgstglDEFS_H_ 5 | #define __wrappedgstglDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgstglDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgstglundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgstglUNDEFS_H_ 5 | #define __wrappedgstglUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgstglUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgstnetdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgstnetDEFS_H_ 5 | #define __wrappedgstnetDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgstnetDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgstnetundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgstnetUNDEFS_H_ 5 | #define __wrappedgstnetUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgstnetUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgstreamerdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgstreamerDEFS_H_ 5 | #define __wrappedgstreamerDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgstreamerDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgstriffdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgstriffDEFS_H_ 5 | #define __wrappedgstriffDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgstriffDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgstriffundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgstriffUNDEFS_H_ 5 | #define __wrappedgstriffUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgstriffUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgstrtpdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgstrtpDEFS_H_ 5 | #define __wrappedgstrtpDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgstrtpDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgstrtpundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgstrtpUNDEFS_H_ 5 | #define __wrappedgstrtpUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgstrtpUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgstrtspdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgstrtspDEFS_H_ 5 | #define __wrappedgstrtspDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgstrtspDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgstrtspundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgstrtspUNDEFS_H_ 5 | #define __wrappedgstrtspUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgstrtspUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgstsdpdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgstsdpDEFS_H_ 5 | #define __wrappedgstsdpDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgstsdpDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgstsdpundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgstsdpUNDEFS_H_ 5 | #define __wrappedgstsdpUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgstsdpUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgsttagdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgsttagDEFS_H_ 5 | #define __wrappedgsttagDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgsttagDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgsttagundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgsttagUNDEFS_H_ 5 | #define __wrappedgsttagUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgsttagUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgstvideodefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgstvideoDEFS_H_ 5 | #define __wrappedgstvideoDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgstvideoDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgthread2defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgthread2DEFS_H_ 5 | #define __wrappedgthread2DEFS_H_ 6 | 7 | 8 | #endif // __wrappedgthread2DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgtk3defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgtk3DEFS_H_ 5 | #define __wrappedgtk3DEFS_H_ 6 | 7 | 8 | #endif // __wrappedgtk3DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgtk3undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgtk3UNDEFS_H_ 5 | #define __wrappedgtk3UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgtk3UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgtkx112defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgtkx112DEFS_H_ 5 | #define __wrappedgtkx112DEFS_H_ 6 | 7 | 8 | #endif // __wrappedgtkx112DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedgtkx112undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedgtkx112UNDEFS_H_ 5 | #define __wrappedgtkx112UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedgtkx112UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappediconvdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.2.0.18) * 3 | *******************************************************************/ 4 | #ifndef __wrappediconvDEFS_H_ 5 | #define __wrappediconvDEFS_H_ 6 | 7 | 8 | #endif // __wrappediconvDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappediconvundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.2.0.18) * 3 | *******************************************************************/ 4 | #ifndef __wrappediconvUNDEFS_H_ 5 | #define __wrappediconvUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappediconvUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedicui18n64defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedicui18n64DEFS_H_ 5 | #define __wrappedicui18n64DEFS_H_ 6 | 7 | 8 | #endif // __wrappedicui18n64DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedicui18n66defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedicui18n66DEFS_H_ 5 | #define __wrappedicui18n66DEFS_H_ 6 | 7 | 8 | #endif // __wrappedicui18n66DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedicui18n67defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedicui18n67DEFS_H_ 5 | #define __wrappedicui18n67DEFS_H_ 6 | 7 | 8 | #endif // __wrappedicui18n67DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedicui18n72defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedicui18n72DEFS_H_ 5 | #define __wrappedicui18n72DEFS_H_ 6 | 7 | 8 | #endif // __wrappedicui18n72DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedicui18n73defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedicui18n73DEFS_H_ 5 | #define __wrappedicui18n73DEFS_H_ 6 | 7 | 8 | #endif // __wrappedicui18n73DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedicui18n74defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedicui18n74DEFS_H_ 5 | #define __wrappedicui18n74DEFS_H_ 6 | 7 | 8 | #endif // __wrappedicui18n74DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedicui18n75defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedicui18n75DEFS_H_ 5 | #define __wrappedicui18n75DEFS_H_ 6 | 7 | 8 | #endif // __wrappedicui18n75DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedicuuc64defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedicuuc64DEFS_H_ 5 | #define __wrappedicuuc64DEFS_H_ 6 | 7 | 8 | #endif // __wrappedicuuc64DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedicuuc64undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedicuuc64UNDEFS_H_ 5 | #define __wrappedicuuc64UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedicuuc64UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedicuuc66defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedicuuc66DEFS_H_ 5 | #define __wrappedicuuc66DEFS_H_ 6 | 7 | 8 | #endif // __wrappedicuuc66DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedicuuc66undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedicuuc66UNDEFS_H_ 5 | #define __wrappedicuuc66UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedicuuc66UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedicuuc67defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedicuuc67DEFS_H_ 5 | #define __wrappedicuuc67DEFS_H_ 6 | 7 | 8 | #endif // __wrappedicuuc67DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedicuuc67undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedicuuc67UNDEFS_H_ 5 | #define __wrappedicuuc67UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedicuuc67UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedicuuc72defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedicuuc72DEFS_H_ 5 | #define __wrappedicuuc72DEFS_H_ 6 | 7 | 8 | #endif // __wrappedicuuc72DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedicuuc72undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedicuuc72UNDEFS_H_ 5 | #define __wrappedicuuc72UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedicuuc72UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedicuuc73defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedicuuc73DEFS_H_ 5 | #define __wrappedicuuc73DEFS_H_ 6 | 7 | 8 | #endif // __wrappedicuuc73DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedicuuc73undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedicuuc73UNDEFS_H_ 5 | #define __wrappedicuuc73UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedicuuc73UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedicuuc74defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedicuuc74DEFS_H_ 5 | #define __wrappedicuuc74DEFS_H_ 6 | 7 | 8 | #endif // __wrappedicuuc74DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedicuuc74undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedicuuc74UNDEFS_H_ 5 | #define __wrappedicuuc74UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedicuuc74UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedicuuc75defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedicuuc75DEFS_H_ 5 | #define __wrappedicuuc75DEFS_H_ 6 | 7 | 8 | #endif // __wrappedicuuc75DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedicuuc75undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedicuuc75UNDEFS_H_ 5 | #define __wrappedicuuc75UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedicuuc75UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedidn2defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedidn2DEFS_H_ 5 | #define __wrappedidn2DEFS_H_ 6 | 7 | 8 | #endif // __wrappedidn2DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedidn2undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedidn2UNDEFS_H_ 5 | #define __wrappedidn2UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedidn2UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedkrb5defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedkrb5DEFS_H_ 5 | #define __wrappedkrb5DEFS_H_ 6 | 7 | 8 | #endif // __wrappedkrb5DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedkrb5undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedkrb5UNDEFS_H_ 5 | #define __wrappedkrb5UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedkrb5UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlberdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlberDEFS_H_ 5 | #define __wrappedlberDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlberDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlberundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlberUNDEFS_H_ 5 | #define __wrappedlberUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlberUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlcms2defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlcms2DEFS_H_ 5 | #define __wrappedlcms2DEFS_H_ 6 | 7 | 8 | #endif // __wrappedlcms2DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlcms2undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlcms2UNDEFS_H_ 5 | #define __wrappedlcms2UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlcms2UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedldaprdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedldaprDEFS_H_ 5 | #define __wrappedldaprDEFS_H_ 6 | 7 | 8 | #endif // __wrappedldaprDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedldaprundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedldaprUNDEFS_H_ 5 | #define __wrappedldaprUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedldaprUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedldlinuxdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedldlinuxDEFS_H_ 5 | #define __wrappedldlinuxDEFS_H_ 6 | 7 | 8 | #endif // __wrappedldlinuxDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedldlinuxundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedldlinuxUNDEFS_H_ 5 | #define __wrappedldlinuxUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedldlinuxUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibasounddefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibasoundDEFS_H_ 5 | #define __wrappedlibasoundDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibasoundDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibbsddefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibbsdDEFS_H_ 5 | #define __wrappedlibbsdDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibbsdDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibbsdundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibbsdUNDEFS_H_ 5 | #define __wrappedlibbsdUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibbsdUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibcdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibcDEFS_H_ 5 | #define __wrappedlibcDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibcDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibcmusldefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibcmuslDEFS_H_ 5 | #define __wrappedlibcmuslDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibcmuslDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibcryptdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibcryptDEFS_H_ 5 | #define __wrappedlibcryptDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibcryptDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibcundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibcUNDEFS_H_ 5 | #define __wrappedlibcUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibcUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibcupsdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibcupsDEFS_H_ 5 | #define __wrappedlibcupsDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibcupsDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibcupsundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibcupsUNDEFS_H_ 5 | #define __wrappedlibcupsUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibcupsUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibdldefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibdlDEFS_H_ 5 | #define __wrappedlibdlDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibdlDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibdlundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibdlUNDEFS_H_ 5 | #define __wrappedlibdlUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibdlUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibdrmdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibdrmDEFS_H_ 5 | #define __wrappedlibdrmDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibdrmDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibdrmundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibdrmUNDEFS_H_ 5 | #define __wrappedlibdrmUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibdrmUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibegldefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibeglDEFS_H_ 5 | #define __wrappedlibeglDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibeglDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibeglundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibeglUNDEFS_H_ 5 | #define __wrappedlibeglUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibeglUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibformdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibformDEFS_H_ 5 | #define __wrappedlibformDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibformDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibformundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibformUNDEFS_H_ 5 | #define __wrappedlibformUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibformUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibformw6defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibformw6DEFS_H_ 5 | #define __wrappedlibformw6DEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibformw6DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibformwdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibformwDEFS_H_ 5 | #define __wrappedlibformwDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibformwDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibfusedefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibfuseDEFS_H_ 5 | #define __wrappedlibfuseDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibfuseDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibfuseundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibfuseUNDEFS_H_ 5 | #define __wrappedlibfuseUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibfuseUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibgldefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibglDEFS_H_ 5 | #define __wrappedlibglDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibglDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibgludefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibgluDEFS_H_ 5 | #define __wrappedlibgluDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibgluDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibglundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibglUNDEFS_H_ 5 | #define __wrappedlibglUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibglUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibgluundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibgluUNDEFS_H_ 5 | #define __wrappedlibgluUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibgluUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibglxdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibglxDEFS_H_ 5 | #define __wrappedlibglxDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibglxDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibglxundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibglxUNDEFS_H_ 5 | #define __wrappedlibglxUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibglxUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibibusdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibibusDEFS_H_ 5 | #define __wrappedlibibusDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibibusDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibibusundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibibusUNDEFS_H_ 5 | #define __wrappedlibibusUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibibusUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibicedefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibiceDEFS_H_ 5 | #define __wrappedlibiceDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibiceDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibiceundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibiceUNDEFS_H_ 5 | #define __wrappedlibiceUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibiceUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibltdl7defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.4.0.21) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibltdl7DEFS_H_ 5 | #define __wrappedlibltdl7DEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibltdl7DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibmdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibmDEFS_H_ 5 | #define __wrappedlibmDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibmDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibmundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibmUNDEFS_H_ 5 | #define __wrappedlibmUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibmUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibnumadefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibnumaDEFS_H_ 5 | #define __wrappedlibnumaDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibnumaDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibnumaundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibnumaUNDEFS_H_ 5 | #define __wrappedlibnumaUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibnumaUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedliboggdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedliboggDEFS_H_ 5 | #define __wrappedliboggDEFS_H_ 6 | 7 | 8 | #endif // __wrappedliboggDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedliboggundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedliboggUNDEFS_H_ 5 | #define __wrappedliboggUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedliboggUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibpaneldefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibpanelDEFS_H_ 5 | #define __wrappedlibpanelDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibpanelDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibpcidefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibpciDEFS_H_ 5 | #define __wrappedlibpciDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibpciDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibpciundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibpciUNDEFS_H_ 5 | #define __wrappedlibpciUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibpciUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibpcredefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibpcreDEFS_H_ 5 | #define __wrappedlibpcreDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibpcreDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibpcreundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibpcreUNDEFS_H_ 5 | #define __wrappedlibpcreUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibpcreUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibresolvdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibresolvDEFS_H_ 5 | #define __wrappedlibresolvDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibresolvDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibrtdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibrtDEFS_H_ 5 | #define __wrappedlibrtDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibrtDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibrtundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibrtUNDEFS_H_ 5 | #define __wrappedlibrtUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibrtUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibsmdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibsmDEFS_H_ 5 | #define __wrappedlibsmDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibsmDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibsmundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibsmUNDEFS_H_ 5 | #define __wrappedlibsmUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibsmUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibssh2defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibssh2DEFS_H_ 5 | #define __wrappedlibssh2DEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibssh2DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibssh2undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibssh2UNDEFS_H_ 5 | #define __wrappedlibssh2UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibssh2UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibssl3defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibssl3DEFS_H_ 5 | #define __wrappedlibssl3DEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibssl3DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibssl3undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibssl3UNDEFS_H_ 5 | #define __wrappedlibssl3UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibssl3UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibssldefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibsslDEFS_H_ 5 | #define __wrappedlibsslDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibsslDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibsslundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibsslUNDEFS_H_ 5 | #define __wrappedlibsslUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibsslUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibtasn1defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibtasn1DEFS_H_ 5 | #define __wrappedlibtasn1DEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibtasn1DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibtiff5defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibtiff5DEFS_H_ 5 | #define __wrappedlibtiff5DEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibtiff5DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibtinfo6defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibtinfo6DEFS_H_ 5 | #define __wrappedlibtinfo6DEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibtinfo6DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibtinfodefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibtinfoDEFS_H_ 5 | #define __wrappedlibtinfoDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibtinfoDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibusb1defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibusb1DEFS_H_ 5 | #define __wrappedlibusb1DEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibusb1DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibusb1undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibusb1UNDEFS_H_ 5 | #define __wrappedlibusb1UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibusb1UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibuuiddefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibuuidDEFS_H_ 5 | #define __wrappedlibuuidDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibuuidDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibuuidundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibuuidUNDEFS_H_ 5 | #define __wrappedlibuuidUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibuuidUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibvadefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibvaDEFS_H_ 5 | #define __wrappedlibvaDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibvaDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibvadrmdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibvadrmDEFS_H_ 5 | #define __wrappedlibvadrmDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibvadrmDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibvaundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibvaUNDEFS_H_ 5 | #define __wrappedlibvaUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibvaUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibvax11defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibvax11DEFS_H_ 5 | #define __wrappedlibvax11DEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibvax11DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibvdpaudefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibvdpauDEFS_H_ 5 | #define __wrappedlibvdpauDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibvdpauDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibvorbisdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibvorbisDEFS_H_ 5 | #define __wrappedlibvorbisDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibvorbisDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibx11defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibx11DEFS_H_ 5 | #define __wrappedlibx11DEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibx11DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibx11undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibx11UNDEFS_H_ 5 | #define __wrappedlibx11UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibx11UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibx11xcbdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibx11xcbDEFS_H_ 5 | #define __wrappedlibx11xcbDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibx11xcbDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibxaudefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibxauDEFS_H_ 5 | #define __wrappedlibxauDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibxauDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibxauundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibxauUNDEFS_H_ 5 | #define __wrappedlibxauUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibxauUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibxawdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibxawDEFS_H_ 5 | #define __wrappedlibxawDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibxawDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibxawundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibxawUNDEFS_H_ 5 | #define __wrappedlibxawUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibxawUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibxcbdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibxcbDEFS_H_ 5 | #define __wrappedlibxcbDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibxcbDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibxcbglxdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibxcbglxDEFS_H_ 5 | #define __wrappedlibxcbglxDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibxcbglxDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibxcbresdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibxcbresDEFS_H_ 5 | #define __wrappedlibxcbresDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibxcbresDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibxcbshmdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibxcbshmDEFS_H_ 5 | #define __wrappedlibxcbshmDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibxcbshmDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibxcbundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibxcbUNDEFS_H_ 5 | #define __wrappedlibxcbUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibxcbUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibxcbxkbdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibxcbxkbDEFS_H_ 5 | #define __wrappedlibxcbxkbDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibxcbxkbDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibxdmcpdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibxdmcpDEFS_H_ 5 | #define __wrappedlibxdmcpDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibxdmcpDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibxextdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibxextDEFS_H_ 5 | #define __wrappedlibxextDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibxextDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibxextundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibxextUNDEFS_H_ 5 | #define __wrappedlibxextUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibxextUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibxfixesdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibxfixesDEFS_H_ 5 | #define __wrappedlibxfixesDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibxfixesDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibxftdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibxftDEFS_H_ 5 | #define __wrappedlibxftDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibxftDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibxftundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibxftUNDEFS_H_ 5 | #define __wrappedlibxftUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibxftUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibxidefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibxiDEFS_H_ 5 | #define __wrappedlibxiDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibxiDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibxiundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibxiUNDEFS_H_ 5 | #define __wrappedlibxiUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibxiUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibxmudefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibxmuDEFS_H_ 5 | #define __wrappedlibxmuDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibxmuDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibxmuundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibxmuUNDEFS_H_ 5 | #define __wrappedlibxmuUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibxmuUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibxpmdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibxpmDEFS_H_ 5 | #define __wrappedlibxpmDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibxpmDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibxpmundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibxpmUNDEFS_H_ 5 | #define __wrappedlibxpmUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibxpmUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibxrandrdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibxrandrDEFS_H_ 5 | #define __wrappedlibxrandrDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibxrandrDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibxssdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibxssDEFS_H_ 5 | #define __wrappedlibxssDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibxssDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibxssundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibxssUNDEFS_H_ 5 | #define __wrappedlibxssUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibxssUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibxtdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibxtDEFS_H_ 5 | #define __wrappedlibxtDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibxtDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibxtstdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibxtstDEFS_H_ 5 | #define __wrappedlibxtstDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibxtstDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibxtstundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibxtstUNDEFS_H_ 5 | #define __wrappedlibxtstUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibxtstUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibxtundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibxtUNDEFS_H_ 5 | #define __wrappedlibxtUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibxtUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibzdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibzDEFS_H_ 5 | #define __wrappedlibzDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibzDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlibzundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlibzUNDEFS_H_ 5 | #define __wrappedlibzUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlibzUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlzmadefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlzmaDEFS_H_ 5 | #define __wrappedlzmaDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlzmaDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedlzmaundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedlzmaUNDEFS_H_ 5 | #define __wrappedlzmaUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedlzmaUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedmpg123defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedmpg123DEFS_H_ 5 | #define __wrappedmpg123DEFS_H_ 6 | 7 | 8 | #endif // __wrappedmpg123DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedmpg123undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedmpg123UNDEFS_H_ 5 | #define __wrappedmpg123UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedmpg123UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappednotifydefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappednotifyDEFS_H_ 5 | #define __wrappednotifyDEFS_H_ 6 | 7 | 8 | #endif // __wrappednotifyDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappednotifyundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappednotifyUNDEFS_H_ 5 | #define __wrappednotifyUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappednotifyUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappednsldefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappednslDEFS_H_ 5 | #define __wrappednslDEFS_H_ 6 | 7 | 8 | #endif // __wrappednslDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappednslundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappednslUNDEFS_H_ 5 | #define __wrappednslUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappednslUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappednspr4defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappednspr4DEFS_H_ 5 | #define __wrappednspr4DEFS_H_ 6 | 7 | 8 | #endif // __wrappednspr4DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappednspr4undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappednspr4UNDEFS_H_ 5 | #define __wrappednspr4UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappednspr4UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappednss3defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappednss3DEFS_H_ 5 | #define __wrappednss3DEFS_H_ 6 | 7 | 8 | #endif // __wrappednss3DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappednss3undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappednss3UNDEFS_H_ 5 | #define __wrappednss3UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappednss3UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappednssutil3defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappednssutil3DEFS_H_ 5 | #define __wrappednssutil3DEFS_H_ 6 | 7 | 8 | #endif // __wrappednssutil3DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedopenaldefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedopenalDEFS_H_ 5 | #define __wrappedopenalDEFS_H_ 6 | 7 | 8 | #endif // __wrappedopenalDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedopenalundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedopenalUNDEFS_H_ 5 | #define __wrappedopenalUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedopenalUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedopencldefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedopenclDEFS_H_ 5 | #define __wrappedopenclDEFS_H_ 6 | 7 | 8 | #endif // __wrappedopenclDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedopenclundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedopenclUNDEFS_H_ 5 | #define __wrappedopenclUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedopenclUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedp11kitdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedp11kitDEFS_H_ 5 | #define __wrappedp11kitDEFS_H_ 6 | 7 | 8 | #endif // __wrappedp11kitDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedp11kitundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedp11kitUNDEFS_H_ 5 | #define __wrappedp11kitUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedp11kitUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedpamdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedpamDEFS_H_ 5 | #define __wrappedpamDEFS_H_ 6 | 7 | 8 | #endif // __wrappedpamDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedpamundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedpamUNDEFS_H_ 5 | #define __wrappedpamUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedpamUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedpangodefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedpangoDEFS_H_ 5 | #define __wrappedpangoDEFS_H_ 6 | 7 | 8 | #endif // __wrappedpangoDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedpangoft2defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedpangoft2DEFS_H_ 5 | #define __wrappedpangoft2DEFS_H_ 6 | 7 | 8 | #endif // __wrappedpangoft2DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedpangoundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedpangoUNDEFS_H_ 5 | #define __wrappedpangoUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedpangoUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedplc4defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedplc4DEFS_H_ 5 | #define __wrappedplc4DEFS_H_ 6 | 7 | 8 | #endif // __wrappedplc4DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedplc4undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedplc4UNDEFS_H_ 5 | #define __wrappedplc4UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedplc4UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedplds4defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedplds4DEFS_H_ 5 | #define __wrappedplds4DEFS_H_ 6 | 7 | 8 | #endif // __wrappedplds4DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedplds4undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedplds4UNDEFS_H_ 5 | #define __wrappedplds4UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedplds4UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedpng16defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedpng16DEFS_H_ 5 | #define __wrappedpng16DEFS_H_ 6 | 7 | 8 | #endif // __wrappedpng16DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedpng16undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedpng16UNDEFS_H_ 5 | #define __wrappedpng16UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedpng16UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedpsl5defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedpsl5DEFS_H_ 5 | #define __wrappedpsl5DEFS_H_ 6 | 7 | 8 | #endif // __wrappedpsl5DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedpsl5undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedpsl5UNDEFS_H_ 5 | #define __wrappedpsl5UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedpsl5UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedpulsedefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedpulseDEFS_H_ 5 | #define __wrappedpulseDEFS_H_ 6 | 7 | 8 | #endif // __wrappedpulseDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedpulseundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedpulseUNDEFS_H_ 5 | #define __wrappedpulseUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedpulseUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedsdl1defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedsdl1DEFS_H_ 5 | #define __wrappedsdl1DEFS_H_ 6 | 7 | 8 | #endif // __wrappedsdl1DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedsdl1imagedefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedsdl1imageDEFS_H_ 5 | #define __wrappedsdl1imageDEFS_H_ 6 | 7 | 8 | #endif // __wrappedsdl1imageDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedsdl1mixerdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedsdl1mixerDEFS_H_ 5 | #define __wrappedsdl1mixerDEFS_H_ 6 | 7 | 8 | #endif // __wrappedsdl1mixerDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedsdl1netdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedsdl1netDEFS_H_ 5 | #define __wrappedsdl1netDEFS_H_ 6 | 7 | 8 | #endif // __wrappedsdl1netDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedsdl1netundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedsdl1netUNDEFS_H_ 5 | #define __wrappedsdl1netUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedsdl1netUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedsdl1sounddefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedsdl1soundDEFS_H_ 5 | #define __wrappedsdl1soundDEFS_H_ 6 | 7 | 8 | #endif // __wrappedsdl1soundDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedsdl1ttfdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedsdl1ttfDEFS_H_ 5 | #define __wrappedsdl1ttfDEFS_H_ 6 | 7 | 8 | #endif // __wrappedsdl1ttfDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedsdl1ttfundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedsdl1ttfUNDEFS_H_ 5 | #define __wrappedsdl1ttfUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedsdl1ttfUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedsdl1undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedsdl1UNDEFS_H_ 5 | #define __wrappedsdl1UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedsdl1UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedsdl2imagedefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedsdl2imageDEFS_H_ 5 | #define __wrappedsdl2imageDEFS_H_ 6 | 7 | 8 | #endif // __wrappedsdl2imageDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedsdl2mixerdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedsdl2mixerDEFS_H_ 5 | #define __wrappedsdl2mixerDEFS_H_ 6 | 7 | 8 | #endif // __wrappedsdl2mixerDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedsdl2netdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedsdl2netDEFS_H_ 5 | #define __wrappedsdl2netDEFS_H_ 6 | 7 | 8 | #endif // __wrappedsdl2netDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedsdl2netundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedsdl2netUNDEFS_H_ 5 | #define __wrappedsdl2netUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedsdl2netUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedsdl2ttfdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedsdl2ttfDEFS_H_ 5 | #define __wrappedsdl2ttfDEFS_H_ 6 | 7 | 8 | #endif // __wrappedsdl2ttfDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedsdl2ttfundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedsdl2ttfUNDEFS_H_ 5 | #define __wrappedsdl2ttfUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedsdl2ttfUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedsecret1defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedsecret1DEFS_H_ 5 | #define __wrappedsecret1DEFS_H_ 6 | 7 | 8 | #endif // __wrappedsecret1DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedsecret1undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedsecret1UNDEFS_H_ 5 | #define __wrappedsecret1UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedsecret1UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedselinuxdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedselinuxDEFS_H_ 5 | #define __wrappedselinuxDEFS_H_ 6 | 7 | 8 | #endif // __wrappedselinuxDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedsmime3defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedsmime3DEFS_H_ 5 | #define __wrappedsmime3DEFS_H_ 6 | 7 | 8 | #endif // __wrappedsmime3DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedsmime3undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedsmime3UNDEFS_H_ 5 | #define __wrappedsmime3UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedsmime3UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedsmpeg2defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedsmpeg2DEFS_H_ 5 | #define __wrappedsmpeg2DEFS_H_ 6 | 7 | 8 | #endif // __wrappedsmpeg2DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedsmpeg2undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedsmpeg2UNDEFS_H_ 5 | #define __wrappedsmpeg2UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedsmpeg2UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedsmpegdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedsmpegDEFS_H_ 5 | #define __wrappedsmpegDEFS_H_ 6 | 7 | 8 | #endif // __wrappedsmpegDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedsmpegundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedsmpegUNDEFS_H_ 5 | #define __wrappedsmpegUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedsmpegUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedsoftokn3defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedsoftokn3DEFS_H_ 5 | #define __wrappedsoftokn3DEFS_H_ 6 | 7 | 8 | #endif // __wrappedsoftokn3DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedssl3defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedssl3DEFS_H_ 5 | #define __wrappedssl3DEFS_H_ 6 | 7 | 8 | #endif // __wrappedssl3DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedssl3undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedssl3UNDEFS_H_ 5 | #define __wrappedssl3UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedssl3UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedtbbbinddefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedtbbbindDEFS_H_ 5 | #define __wrappedtbbbindDEFS_H_ 6 | 7 | 8 | #endif // __wrappedtbbbindDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedudev0defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedudev0DEFS_H_ 5 | #define __wrappedudev0DEFS_H_ 6 | 7 | 8 | #endif // __wrappedudev0DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedudev0undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedudev0UNDEFS_H_ 5 | #define __wrappedudev0UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedudev0UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedudev1defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedudev1DEFS_H_ 5 | #define __wrappedudev1DEFS_H_ 6 | 7 | 8 | #endif // __wrappedudev1DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedudev1undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedudev1UNDEFS_H_ 5 | #define __wrappedudev1UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedudev1UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedunwinddefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedunwindDEFS_H_ 5 | #define __wrappedunwindDEFS_H_ 6 | 7 | 8 | #endif // __wrappedunwindDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedunwindundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedunwindUNDEFS_H_ 5 | #define __wrappedunwindUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedunwindUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedutildefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedutilDEFS_H_ 5 | #define __wrappedutilDEFS_H_ 6 | 7 | 8 | #endif // __wrappedutilDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedutilundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedutilUNDEFS_H_ 5 | #define __wrappedutilUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedutilUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedvulkandefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedvulkanDEFS_H_ 5 | #define __wrappedvulkanDEFS_H_ 6 | 7 | 8 | #endif // __wrappedvulkanDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedvulkanundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedvulkanUNDEFS_H_ 5 | #define __wrappedvulkanUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedvulkanUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedxineramadefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedxineramaDEFS_H_ 5 | #define __wrappedxineramaDEFS_H_ 6 | 7 | 8 | #endif // __wrappedxineramaDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedxml2defs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedxml2DEFS_H_ 5 | #define __wrappedxml2DEFS_H_ 6 | 7 | 8 | #endif // __wrappedxml2DEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedxml2undefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedxml2UNDEFS_H_ 5 | #define __wrappedxml2UNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedxml2UNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedxsltdefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedxsltDEFS_H_ 5 | #define __wrappedxsltDEFS_H_ 6 | 7 | 8 | #endif // __wrappedxsltDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedxsltundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedxsltUNDEFS_H_ 5 | #define __wrappedxsltUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedxsltUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedzstddefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedzstdDEFS_H_ 5 | #define __wrappedzstdDEFS_H_ 6 | 7 | 8 | #endif // __wrappedzstdDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/generated/wrappedzstdundefs.h: -------------------------------------------------------------------------------- 1 | /******************************************************************* 2 | * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * 3 | *******************************************************************/ 4 | #ifndef __wrappedzstdUNDEFS_H_ 5 | #define __wrappedzstdUNDEFS_H_ 6 | 7 | 8 | #endif // __wrappedzstdUNDEFS_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped/wrappedandroidshmem_private.h: -------------------------------------------------------------------------------- 1 | #if !(defined(GO) && defined(GOM) && defined(GO2) && defined(DATA)) 2 | #error Meh.... 3 | #endif 4 | 5 | GO(shmctl, iFiip) 6 | GO(shmget, iFiLi) 7 | GO(shmat, pFipi) 8 | GO(shmdt, iFp) 9 | -------------------------------------------------------------------------------- /src/wrapped/wrappedandroidsupport_private.h: -------------------------------------------------------------------------------- 1 | #if !(defined(GO) && defined(GOM) && defined(GO2) && defined(DATA)) 2 | #error Meh... 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /src/wrapped/wrappedanl_private.h: -------------------------------------------------------------------------------- 1 | #if !(defined(GO) && defined(GOM) && defined(GO2) && defined(DATA)) 2 | #error meh! 3 | #endif 4 | 5 | GO(__libanl_version_placeholder, vFv) 6 | -------------------------------------------------------------------------------- /src/wrapped/wrappedatkbridge_private.h: -------------------------------------------------------------------------------- 1 | #if !(defined(GO) && defined(GOM) && defined(GO2) && defined(DATA)) 2 | #error meh! 3 | #endif 4 | 5 | GO(atk_bridge_adaptor_cleanup, vFv) 6 | GO(atk_bridge_adaptor_init, iFpp) //%NoE -------------------------------------------------------------------------------- /src/wrapped/wrappedd3dadapter9_private.h: -------------------------------------------------------------------------------- 1 | #if !(defined(GO) && defined(GOM) && defined(GO2) && defined(DATA)) 2 | #error meh! 3 | #endif 4 | 5 | GOM(D3DAdapter9GetProc, pWEp) 6 | 7 | GOM(dummy_d3d, iWEip) -------------------------------------------------------------------------------- /src/wrapped/wrappedgthread2_private.h: -------------------------------------------------------------------------------- 1 | #if !(defined(GO) && defined(GOM) && defined(GO2) && defined(DATA)) 2 | #error meh! 3 | #endif 4 | 5 | GOM(g_thread_init, vFEp) 6 | GOM(g_thread_init_with_errorcheck_mutexes, vFEp) 7 | -------------------------------------------------------------------------------- /src/wrapped/wrappediconv_private.h: -------------------------------------------------------------------------------- 1 | #if !(defined(GO) && defined(GOM) && defined(GO2) && defined(DATA)) 2 | #error Meh... 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /src/wrapped/wrappedlibcmusl_private.h: -------------------------------------------------------------------------------- 1 | #if !(defined(GO) && defined(GOM) && defined(GO2) && defined(DATA)) 2 | #error meh! 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /src/wrapped/wrappedlibcrypt_private.h: -------------------------------------------------------------------------------- 1 | #if !(defined(GO) && defined(GOM) && defined(GO2) && defined(DATA)) 2 | #error meh! 3 | #endif 4 | 5 | GO(crypt, pFpp) 6 | GOW(crypt_r, pFppp) 7 | GO(encrypt, vFpi) 8 | GOW(encrypt_r, vFpip) 9 | //GOW(fcrypt, 10 | GO(setkey, vFp) 11 | GOW(setkey_r, vFpp) -------------------------------------------------------------------------------- /src/wrapped/wrappedlibvadrm_private.h: -------------------------------------------------------------------------------- 1 | #if !(defined(GO) && defined(GOM) && defined(GO2) && defined(DATA)) 2 | #error meh! 3 | #endif 4 | 5 | GO(vaGetDisplayDRM, pFi) -------------------------------------------------------------------------------- /src/wrapped/wrappedlibvawayland_private.h: -------------------------------------------------------------------------------- 1 | #if !(defined(GO) && defined(GOM) && defined(GO2) && defined(DATA)) 2 | #error meh! 3 | #endif 4 | 5 | GO(vaGetDisplayWl, pFp) 6 | GO(vaGetImageBufferWl, iFppup) 7 | GO(vaGetSurfaceBufferWl, iFppup) 8 | -------------------------------------------------------------------------------- /src/wrapped/wrappedlibvdpau_private.h: -------------------------------------------------------------------------------- 1 | #if !(defined(GO) && defined(GOM) && defined(GO2) && defined(DATA)) 2 | #error meh! 3 | #endif 4 | 5 | GOM(vdp_device_create_x11, iFEpipp) // last is a pointer to a VdpGetProcAddress function -------------------------------------------------------------------------------- /src/wrapped/wrappedlibx11xcb_private.h: -------------------------------------------------------------------------------- 1 | #if !(defined(GO) && defined(GOM) && defined(GO2) && defined(DATA)) 2 | #error meh! 3 | #endif 4 | 5 | GOM(XGetXCBConnection, pFEp) 6 | GO(XSetEventQueueOwner, vFpu) 7 | -------------------------------------------------------------------------------- /src/wrapped/wrappedlibxcbcursor_private.h: -------------------------------------------------------------------------------- 1 | #if !(defined(GO) && defined(GOM) && defined(GO2) && defined(DATA)) 2 | #error meh! 3 | #endif 4 | 5 | GO(xcb_cursor_context_free, vFp) 6 | GO(xcb_cursor_context_new, iFbpp) 7 | GO(xcb_cursor_load_cursor, uFpp) 8 | -------------------------------------------------------------------------------- /src/wrapped/wrappedlibxdamage_private.h: -------------------------------------------------------------------------------- 1 | #if !(defined(GO) && defined(GOM) && defined(GO2) && defined(DATA)) 2 | #error meh! 3 | #endif 4 | 5 | 6 | GO(XDamageAdd, vFpLL) 7 | GO(XDamageCreate, LFpLi) 8 | GO(XDamageDestroy, vFpL) 9 | GO(XDamageFindDisplay, pFp) 10 | GO(XDamageQueryExtension, iFppp) 11 | GO(XDamageQueryVersion, iFppp) 12 | GO(XDamageSubtract, vFpLLL) 13 | -------------------------------------------------------------------------------- /src/wrapped/wrappedpulsemainloopglib_private.h: -------------------------------------------------------------------------------- 1 | #if !(defined(GO) && defined(GOM) && defined(GO2) && defined(DATA)) 2 | #error Meh... 3 | #endif 4 | 5 | GO(pa_glib_mainloop_free, vFp) 6 | GOM(pa_glib_mainloop_get_api, pFEp) 7 | GO(pa_glib_mainloop_new, pFp) 8 | -------------------------------------------------------------------------------- /src/wrapped/wrappedpulsesimple_private.h: -------------------------------------------------------------------------------- 1 | #if !(defined(GO) && defined(GOM) && defined(GO2) && defined(DATA)) 2 | #error Meh... 3 | #endif 4 | 5 | GO(pa_simple_drain, iFpp) 6 | GO(pa_simple_flush, iFpp) 7 | GO(pa_simple_free, vFp) 8 | GO(pa_simple_get_latency, UFpp) 9 | GO(pa_simple_new, pFppupppppp) 10 | GO(pa_simple_read, iFppLp) 11 | GO(pa_simple_write, iFppLp) 12 | -------------------------------------------------------------------------------- /src/wrapped/wrappedtermuxexec_private.h: -------------------------------------------------------------------------------- 1 | #if !(defined(GO) && defined(GOM) && defined(GO2) && defined(DATA)) 2 | #error Meh... 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /src/wrapped/wrappedudev0_private.h: -------------------------------------------------------------------------------- 1 | #if !(defined(GO) && defined(GOM) && defined(GO2) && defined(DATA)) 2 | #error Meh.... 3 | #endif 4 | 5 | GO(udev_get_dev_path, pFp) 6 | GO(udev_get_run_path, pFp) 7 | GO(udev_get_sys_path, pFp) 8 | GO(udev_monitor_new_from_socket, pFpp) 9 | GO(udev_queue_get_failed_list_entry, pFp) 10 | -------------------------------------------------------------------------------- /src/wrapped/wrappedunwind_private.h: -------------------------------------------------------------------------------- 1 | #if !(defined(GO) && defined(GOM) && defined(GO2) && defined(DATA)) 2 | #error Meh.... 3 | #endif 4 | 5 | GOM(_ULx86_64_step, iFEp) 6 | GOM(_ULx86_64_get_reg, iFEpip) 7 | GOM(_ULx86_64_get_proc_info, iFEpp) 8 | GOM(_ULx86_64_init_local, iFEpp) 9 | -------------------------------------------------------------------------------- /src/wrapped/wrappedutil_private.h: -------------------------------------------------------------------------------- 1 | #if !(defined(GO) && defined(GOM) && defined(GO2) && defined(DATA)) 2 | #error Meh.... 3 | #endif 4 | 5 | GOM(forkpty, iFEpppp) 6 | GO(login, vFp) 7 | GO(login_tty, iFi) 8 | GO(logout, iFp) 9 | GO(logwtmp, vFppp) 10 | GO(openpty, iFppppp) 11 | -------------------------------------------------------------------------------- /src/wrapped/wrappedwaylandcursor_private.h: -------------------------------------------------------------------------------- 1 | #if !(defined(GO) && defined(GOM) && defined(GO2) && defined(DATA)) 2 | #error meh! 3 | #endif 4 | 5 | GO(wl_cursor_frame, iFpu) 6 | GO(wl_cursor_frame_and_duration, iFpup) 7 | GO(wl_cursor_image_get_buffer, pFp) 8 | GO(wl_cursor_theme_destroy, vFp) 9 | GO(wl_cursor_theme_get_cursor, pFpp) 10 | GO(wl_cursor_theme_load, pFpip) 11 | -------------------------------------------------------------------------------- /src/wrapped/wrappedxkbcommonx11_private.h: -------------------------------------------------------------------------------- 1 | #if !(defined(GO) && defined(GOM) && defined(GO2) && defined(DATA)) 2 | #error meh! 3 | #endif 4 | 5 | GO(xkb_x11_get_core_keyboard_device_id, iFb) 6 | GO(xkb_x11_keymap_new_from_device, pFpbii) 7 | GO(xkb_x11_setup_xkb_extension, iFbWWipppp) 8 | GO(xkb_x11_state_new_from_device, pFpbi) 9 | -------------------------------------------------------------------------------- /src/wrapped/wrappedxshmfence_private.h: -------------------------------------------------------------------------------- 1 | #if !(defined(GO) && defined(GOM) && defined(GO2) && defined(DATA)) 2 | #error meh! 3 | #endif 4 | 5 | GO(xshmfence_alloc_shm, iFv) 6 | GO(xshmfence_await, iFp) 7 | GO(xshmfence_map_shm, pFi) 8 | GO(xshmfence_query, iFp) 9 | GO(xshmfence_reset, vFp) 10 | GO(xshmfence_trigger, iFp) 11 | GO(xshmfence_unmap_shm, vFp) 12 | -------------------------------------------------------------------------------- /src/wrapped32/generated/wrappedlibcdefs32.h: -------------------------------------------------------------------------------- 1 | /********************************************************************* 2 | * File automatically generated by rebuild_wrappers_32.py (v0.0.2.2) * 3 | *********************************************************************/ 4 | #ifndef __wrappedlibcDEFS32_H_ 5 | #define __wrappedlibcDEFS32_H_ 6 | 7 | 8 | #endif // __wrappedlibcDEFS32_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped32/generated/wrappedlibmdefs32.h: -------------------------------------------------------------------------------- 1 | /********************************************************************* 2 | * File automatically generated by rebuild_wrappers_32.py (v0.0.2.2) * 3 | *********************************************************************/ 4 | #ifndef __wrappedlibmDEFS32_H_ 5 | #define __wrappedlibmDEFS32_H_ 6 | 7 | 8 | #endif // __wrappedlibmDEFS32_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped32/generated/wrappednsldefs32.h: -------------------------------------------------------------------------------- 1 | /********************************************************************* 2 | * File automatically generated by rebuild_wrappers_32.py (v0.0.2.2) * 3 | *********************************************************************/ 4 | #ifndef __wrappednslDEFS32_H_ 5 | #define __wrappednslDEFS32_H_ 6 | 7 | 8 | #endif // __wrappednslDEFS32_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped32/generated/wrappedsdl1defs32.h: -------------------------------------------------------------------------------- 1 | /********************************************************************* 2 | * File automatically generated by rebuild_wrappers_32.py (v0.0.2.2) * 3 | *********************************************************************/ 4 | #ifndef __wrappedsdl1DEFS32_H_ 5 | #define __wrappedsdl1DEFS32_H_ 6 | 7 | 8 | #endif // __wrappedsdl1DEFS32_H_ 9 | -------------------------------------------------------------------------------- /src/wrapped32/wrappedlibvdpau_private.h: -------------------------------------------------------------------------------- 1 | #if !(defined(GO) && defined(GOM) && defined(GO2) && defined(DATA)) 2 | #error meh! 3 | #endif 4 | 5 | GOM(vdp_device_create_x11, iFEpipp) // last is a pointer to a VdpGetProcAddress function -------------------------------------------------------------------------------- /src/wrapped32/wrappedlibx11xcb_private.h: -------------------------------------------------------------------------------- 1 | #if !(defined(GO) && defined(GOM) && defined(GO2) && defined(DATA)) 2 | #error meh! 3 | #endif 4 | 5 | GOM(XGetXCBConnection, pFEX) 6 | GO(XSetEventQueueOwner, vFXu) 7 | -------------------------------------------------------------------------------- /src/wrapped32/wrappedlibxdamage_private.h: -------------------------------------------------------------------------------- 1 | #if !(defined(GO) && defined(GOM) && defined(GO2) && defined(DATA)) 2 | #error Meh... 3 | #endif 4 | 5 | 6 | GO(XDamageAdd, vFXLL) 7 | GO(XDamageCreate, LFXLi) 8 | GO(XDamageDestroy, vFXL) 9 | GO(XDamageFindDisplay, pFX) 10 | GO(XDamageQueryExtension, iFXpp) 11 | GO(XDamageQueryVersion, iFXpp) 12 | GO(XDamageSubtract, vFXLLL) 13 | -------------------------------------------------------------------------------- /src/wrapped32/wrappedudev0_private.h: -------------------------------------------------------------------------------- 1 | #if !(defined(GO) && defined(GOM) && defined(GO2) && defined(DATA)) 2 | #error Meh.... 3 | #endif 4 | 5 | GO(udev_get_dev_path, pFp) 6 | GO(udev_get_run_path, pFp) 7 | GO(udev_get_sys_path, pFp) 8 | GO(udev_monitor_new_from_socket, pFpp) 9 | GO(udev_queue_get_failed_list_entry, pFp) 10 | -------------------------------------------------------------------------------- /system/box32.conf.cmake: -------------------------------------------------------------------------------- 1 | # /etc/binfmt.d/box32.conf 2 | :box32:M::\x7fELF\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x03\x00:\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff:${CMAKE_INSTALL_PREFIX}/bin/${BOX64}: 3 | -------------------------------------------------------------------------------- /system/box64.conf.cmake: -------------------------------------------------------------------------------- 1 | # /etc/binfmt.d/box64.conf 2 | :box64:M::\x7fELF\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x3e\x00:\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\xff\xff\xff\xff\xff\xfe\xff\xff\xff:${CMAKE_INSTALL_PREFIX}/bin/${BOX64}: 3 | -------------------------------------------------------------------------------- /tests/benchfloat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/benchfloat -------------------------------------------------------------------------------- /tests/benchfloat_android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/benchfloat_android -------------------------------------------------------------------------------- /tests/box64-bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/box64-bash -------------------------------------------------------------------------------- /tests/extensions/mmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/extensions/mmx -------------------------------------------------------------------------------- /tests/extensions/mmx_android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/extensions/mmx_android -------------------------------------------------------------------------------- /tests/misc/gvariant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/misc/gvariant -------------------------------------------------------------------------------- /tests/ref01.txt: -------------------------------------------------------------------------------- 1 | Hello x86_64 World! 2 | -------------------------------------------------------------------------------- /tests/ref02.txt: -------------------------------------------------------------------------------- 1 | Hello x86_64 World! 2 | -------------------------------------------------------------------------------- /tests/ref03.txt: -------------------------------------------------------------------------------- 1 | Hello x86_64 World! 2 | -------------------------------------------------------------------------------- /tests/ref04.txt: -------------------------------------------------------------------------------- 1 | Hello, argc=2 argv[1]=yeah 2 | -------------------------------------------------------------------------------- /tests/ref06.txt: -------------------------------------------------------------------------------- 1 | [02] Second thread executing 2 | [02] Thread done. 3 | 4 | [00] Done. 5 | -------------------------------------------------------------------------------- /tests/ref07.txt: -------------------------------------------------------------------------------- 1 | 0 is 0.000000, sin(pi/2) is 1.000000 and 3*1.5 is 4.500000. 2 | -------------------------------------------------------------------------------- /tests/ref09.txt: -------------------------------------------------------------------------------- 1 | Child has x = 2 2 | Parent has x = 0 3 | -------------------------------------------------------------------------------- /tests/ref10.txt: -------------------------------------------------------------------------------- 1 | thread #0 2 | thread #1 3 | thread #2 4 | thread #3 5 | thread #4 6 | thread #5 7 | thread #6 8 | thread #7 9 | thread #8 10 | thread #9 11 | -------------------------------------------------------------------------------- /tests/ref11.txt: -------------------------------------------------------------------------------- 1 | Create/start 2 threads 2 | Thread 1: Entered (10/20) 3 | Thread 1: foo(), TLS data=0 2 "-1-" 4 | Thread 2: Entered (10/20) 5 | Thread 2: foo(), TLS data=1 4 "-2-" 6 | Thread 2: bar(), TLS data=1 4 "-2-" 7 | Thread 1: bar(), TLS data=0 2 "-1-" 8 | Main completed 9 | -------------------------------------------------------------------------------- /tests/ref12.txt: -------------------------------------------------------------------------------- 1 | 1000000000000 => 1000000000000.000000 2 | -1000000000000 => -1000000000000.000000 3 | (angle_t)268435456.000000 = 268435456 == 0x10000000 4 | go PI trucated=3, -PI rounded=-3 5 | -------------------------------------------------------------------------------- /tests/ref12_android.txt: -------------------------------------------------------------------------------- 1 | 1000000000000 => 1000000000000.000000 2 | -1000000000000 => -1000000000000.000000 3 | (angle_t)268435456.000000 = 268435456 == 0x10000000 4 | go PI trucated=-1, -PI rounded=-3 5 | -------------------------------------------------------------------------------- /tests/ref13.txt: -------------------------------------------------------------------------------- 1 | main: swapcontext(&uctx_main, &uctx_func2) 2 | func2: started (1, 2) 3 | func2: swapcontext(&uctx_func2, &uctx_func1) 4 | func1: started 5 | func1: swapcontext(&uctx_func1, &uctx_func2) 6 | func2: returning 7 | func1: returning 8 | main: exiting 9 | -------------------------------------------------------------------------------- /tests/ref14.txt: -------------------------------------------------------------------------------- 1 | Thread: thread_state = 1. 2 | Main thread: thread_state == 1. 3 | Thread: thread_state = 2. 4 | Main thread: thread_state == 2. 5 | Finished with no errors. 6 | -------------------------------------------------------------------------------- /tests/ref15.txt: -------------------------------------------------------------------------------- 1 | Hello x86_64 World, pi=3.14159! 2 | -------------------------------------------------------------------------------- /tests/ref19.txt: -------------------------------------------------------------------------------- 1 | backtrace() returned 4 addresses 2 | :myfunc3 3 | :main 4 | ??? 5 | :_start 6 | -------------------------------------------------------------------------------- /tests/ref20.txt: -------------------------------------------------------------------------------- 1 | 2 | Called function number 2 3 | -------------------------------------------------------------------------------- /tests/ref21.txt: -------------------------------------------------------------------------------- 1 | sig = 11 2 | got bad_ptr 3 | sig = 5 4 | si_addr: 0, si_code: 128, si_errno: 0, RIP offset: 1, TRAPERR=0 TRAPNO=3 5 | sig = 5 6 | si_addr: 0, si_code: 128, si_errno: 0, RIP offset: 2, TRAPERR=0 TRAPNO=3 7 | -------------------------------------------------------------------------------- /tests/ref23.txt: -------------------------------------------------------------------------------- 1 | Res = 0xefcd00ef 2 | -------------------------------------------------------------------------------- /tests/ref24.txt: -------------------------------------------------------------------------------- 1 | ret = 0xedefcdab78563412 2 | ret = 0x78563412 3 | ret = 0x3412 4 | ret = 0xedefcdab78563412 5 | ret = 0x78563412 6 | ret = 0x3412 7 | ret = 0x12345678abcdefed 8 | ret = 0x12345678 9 | -------------------------------------------------------------------------------- /tests/ref25.txt: -------------------------------------------------------------------------------- 1 | 8.000000 2 | 7.000000 3 | 6.000000 4 | 5.000000 5 | 4.000000 6 | 3.000000 7 | 2.000000 8 | 1.000000 9 | 0.000000 10 | 0.000000 11 | -------------------------------------------------------------------------------- /tests/ref29.txt: -------------------------------------------------------------------------------- 1 | Lock XADD: Res = 0x456, Ed = 0x579 2 | Lock XCHG: Res = 0x579, Ed = 0x123 3 | -------------------------------------------------------------------------------- /tests/test01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test01 -------------------------------------------------------------------------------- /tests/test01_android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test01_android -------------------------------------------------------------------------------- /tests/test02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test02 -------------------------------------------------------------------------------- /tests/test02_android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test02_android -------------------------------------------------------------------------------- /tests/test03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test03 -------------------------------------------------------------------------------- /tests/test03.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main(int argc, char **argv) 4 | { 5 | printf("Hello x86_64 World!\n"); 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /tests/test03_android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test03_android -------------------------------------------------------------------------------- /tests/test04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test04 -------------------------------------------------------------------------------- /tests/test04.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main(int argc, char **argv) 4 | { 5 | printf("Hello, argc=%d argv[%d]=%s\n", argc, argc-1, argv[argc-1]); 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /tests/test04_android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test04_android -------------------------------------------------------------------------------- /tests/test05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test05 -------------------------------------------------------------------------------- /tests/test05_android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test05_android -------------------------------------------------------------------------------- /tests/test06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test06 -------------------------------------------------------------------------------- /tests/test06_android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test06_android -------------------------------------------------------------------------------- /tests/test07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test07 -------------------------------------------------------------------------------- /tests/test07_android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test07_android -------------------------------------------------------------------------------- /tests/test08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test08 -------------------------------------------------------------------------------- /tests/test08_android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test08_android -------------------------------------------------------------------------------- /tests/test09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test09 -------------------------------------------------------------------------------- /tests/test09_android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test09_android -------------------------------------------------------------------------------- /tests/test10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test10 -------------------------------------------------------------------------------- /tests/test10_android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test10_android -------------------------------------------------------------------------------- /tests/test11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test11 -------------------------------------------------------------------------------- /tests/test11_android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test11_android -------------------------------------------------------------------------------- /tests/test12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test12 -------------------------------------------------------------------------------- /tests/test12_android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test12_android -------------------------------------------------------------------------------- /tests/test13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test13 -------------------------------------------------------------------------------- /tests/test14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test14 -------------------------------------------------------------------------------- /tests/test14_android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test14_android -------------------------------------------------------------------------------- /tests/test15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test15 -------------------------------------------------------------------------------- /tests/test15_android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test15_android -------------------------------------------------------------------------------- /tests/test16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test16 -------------------------------------------------------------------------------- /tests/test16_android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test16_android -------------------------------------------------------------------------------- /tests/test17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test17 -------------------------------------------------------------------------------- /tests/test17_android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test17_android -------------------------------------------------------------------------------- /tests/test18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test18 -------------------------------------------------------------------------------- /tests/test18_android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test18_android -------------------------------------------------------------------------------- /tests/test19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test19 -------------------------------------------------------------------------------- /tests/test20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test20 -------------------------------------------------------------------------------- /tests/test20_android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test20_android -------------------------------------------------------------------------------- /tests/test21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test21 -------------------------------------------------------------------------------- /tests/test21_alt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test21_alt -------------------------------------------------------------------------------- /tests/test21_android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test21_android -------------------------------------------------------------------------------- /tests/test22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test22 -------------------------------------------------------------------------------- /tests/test22_android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test22_android -------------------------------------------------------------------------------- /tests/test23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test23 -------------------------------------------------------------------------------- /tests/test23_android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test23_android -------------------------------------------------------------------------------- /tests/test24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test24 -------------------------------------------------------------------------------- /tests/test24_android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test24_android -------------------------------------------------------------------------------- /tests/test25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test25 -------------------------------------------------------------------------------- /tests/test25_android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test25_android -------------------------------------------------------------------------------- /tests/test26: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test26 -------------------------------------------------------------------------------- /tests/test26_android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test26_android -------------------------------------------------------------------------------- /tests/test27: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test27 -------------------------------------------------------------------------------- /tests/test27_android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test27_android -------------------------------------------------------------------------------- /tests/test28: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test28 -------------------------------------------------------------------------------- /tests/test28_android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test28_android -------------------------------------------------------------------------------- /tests/test29: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test29 -------------------------------------------------------------------------------- /tests/test29_android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test29_android -------------------------------------------------------------------------------- /tests/test30: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test30 -------------------------------------------------------------------------------- /tests/test31: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests/test31 -------------------------------------------------------------------------------- /tests32/bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/bash -------------------------------------------------------------------------------- /tests32/benchfloat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/benchfloat -------------------------------------------------------------------------------- /tests32/extensions/mmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/extensions/mmx -------------------------------------------------------------------------------- /tests32/ref01.txt: -------------------------------------------------------------------------------- 1 | Hello World! 2 | -------------------------------------------------------------------------------- /tests32/ref02.txt: -------------------------------------------------------------------------------- 1 | Hello World! 2 | -------------------------------------------------------------------------------- /tests32/ref03.txt: -------------------------------------------------------------------------------- 1 | Hello World! 2 | -------------------------------------------------------------------------------- /tests32/ref04.txt: -------------------------------------------------------------------------------- 1 | Hello, argc=2 argv[1]=yeah 2 | -------------------------------------------------------------------------------- /tests32/ref06.txt: -------------------------------------------------------------------------------- 1 | [02] Second thread executing 2 | [02] Thread done. 3 | 4 | [00] Done. 5 | -------------------------------------------------------------------------------- /tests32/ref07.txt: -------------------------------------------------------------------------------- 1 | 0 is 0.000000, sin(pi/2) is 1.000000 and 3*1.5 is 4.500000. 2 | -------------------------------------------------------------------------------- /tests32/ref09.txt: -------------------------------------------------------------------------------- 1 | Child has x = 2 2 | Parent has x = 0 3 | -------------------------------------------------------------------------------- /tests32/ref10.txt: -------------------------------------------------------------------------------- 1 | thread #0 2 | thread #1 3 | thread #2 4 | thread #3 5 | thread #4 6 | thread #5 7 | thread #6 8 | thread #7 9 | thread #8 10 | thread #9 11 | -------------------------------------------------------------------------------- /tests32/ref11.txt: -------------------------------------------------------------------------------- 1 | Create/start 2 threads 2 | Thread 1: Entered (10/20) 3 | Thread 1: foo(), TLS data=0 2 "-1-" 4 | Thread 2: Entered (10/20) 5 | Thread 2: foo(), TLS data=1 4 "-2-" 6 | Thread 2: bar(), TLS data=1 4 "-2-" 7 | Thread 1: bar(), TLS data=0 2 "-1-" 8 | Main completed 9 | -------------------------------------------------------------------------------- /tests32/ref12.txt: -------------------------------------------------------------------------------- 1 | 1000000000000 => 1000000000000.000000 2 | -1000000000000 => -1000000000000.000000 3 | (angle_t)268435456.000000 = 268435456 == 0x10000000 4 | go PI trucated=3, -PI rounded=-3 5 | -------------------------------------------------------------------------------- /tests32/ref13.txt: -------------------------------------------------------------------------------- 1 | main: swapcontext(&uctx_main, &uctx_func2) 2 | func2: started (1, 2) 3 | func2: swapcontext(&uctx_func2, &uctx_func1) 4 | func1: started 5 | func1: swapcontext(&uctx_func1, &uctx_func2) 6 | func2: returning 7 | func1: returning 8 | main: exiting 9 | -------------------------------------------------------------------------------- /tests32/ref14.txt: -------------------------------------------------------------------------------- 1 | Thread: thread_state = 1. 2 | Main thread: thread_state == 1. 3 | Thread: thread_state = 2. 4 | Main thread: thread_state == 2. 5 | Finished with no errors. 6 | -------------------------------------------------------------------------------- /tests32/ref15.txt: -------------------------------------------------------------------------------- 1 | 2, 2/2 2 | -------------------------------------------------------------------------------- /tests32/ref16.txt: -------------------------------------------------------------------------------- 1 | 2, 2/2 2 | -------------------------------------------------------------------------------- /tests32/ref18.txt: -------------------------------------------------------------------------------- 1 | sig = 11 2 | got bad_ptr 3 | -------------------------------------------------------------------------------- /tests32/ref21.txt: -------------------------------------------------------------------------------- 1 | 2/1 2 | -------------------------------------------------------------------------------- /tests32/ref23.txt: -------------------------------------------------------------------------------- 1 | ret = 0x78563412 2 | ret = 0x3412 3 | ret = 0x78563412 4 | ret = 0x3412 5 | ret = 0x12345678 6 | -------------------------------------------------------------------------------- /tests32/test01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/test01 -------------------------------------------------------------------------------- /tests32/test02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/test02 -------------------------------------------------------------------------------- /tests32/test03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/test03 -------------------------------------------------------------------------------- /tests32/test03.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main(int argc, char **argv) 4 | { 5 | printf("Hello World!\n"); 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /tests32/test04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/test04 -------------------------------------------------------------------------------- /tests32/test04.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main(int argc, char **argv) 4 | { 5 | printf("Hello, argc=%d argv[%d]=%s\n", argc, argc-1, argv[argc-1]); 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /tests32/test05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/test05 -------------------------------------------------------------------------------- /tests32/test06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/test06 -------------------------------------------------------------------------------- /tests32/test07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/test07 -------------------------------------------------------------------------------- /tests32/test08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/test08 -------------------------------------------------------------------------------- /tests32/test09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/test09 -------------------------------------------------------------------------------- /tests32/test10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/test10 -------------------------------------------------------------------------------- /tests32/test11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/test11 -------------------------------------------------------------------------------- /tests32/test12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/test12 -------------------------------------------------------------------------------- /tests32/test13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/test13 -------------------------------------------------------------------------------- /tests32/test14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/test14 -------------------------------------------------------------------------------- /tests32/test15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/test15 -------------------------------------------------------------------------------- /tests32/test15_dv1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/test15_dv1.so -------------------------------------------------------------------------------- /tests32/test15_v1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/test15_v1.so -------------------------------------------------------------------------------- /tests32/test15_v2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/test15_v2.so -------------------------------------------------------------------------------- /tests32/test16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/test16 -------------------------------------------------------------------------------- /tests32/test16_dv1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/test16_dv1.so -------------------------------------------------------------------------------- /tests32/test16_v1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/test16_v1.so -------------------------------------------------------------------------------- /tests32/test16_v2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/test16_v2.so -------------------------------------------------------------------------------- /tests32/test17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/test17 -------------------------------------------------------------------------------- /tests32/test17_o2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/test17_o2 -------------------------------------------------------------------------------- /tests32/test18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/test18 -------------------------------------------------------------------------------- /tests32/test19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/test19 -------------------------------------------------------------------------------- /tests32/test20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/test20 -------------------------------------------------------------------------------- /tests32/test21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/test21 -------------------------------------------------------------------------------- /tests32/test21_v1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/test21_v1.so -------------------------------------------------------------------------------- /tests32/test21_v2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/test21_v2.so -------------------------------------------------------------------------------- /tests32/test22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/test22 -------------------------------------------------------------------------------- /tests32/test23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/test23 -------------------------------------------------------------------------------- /tests32/test24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/test24 -------------------------------------------------------------------------------- /tests32/test25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/test25 -------------------------------------------------------------------------------- /tests32/test26: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/tests32/test26 -------------------------------------------------------------------------------- /wrapperhelper/include-override/common/stdc-predef.h: -------------------------------------------------------------------------------- 1 | // Ignore all attributes 2 | #define __attribute__(_) 3 | -------------------------------------------------------------------------------- /x64android/libc++_shared.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/x64android/libc++_shared.so -------------------------------------------------------------------------------- /x64lib/libcrypto.so.1.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/x64lib/libcrypto.so.1.0.0 -------------------------------------------------------------------------------- /x64lib/libcrypto.so.1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/x64lib/libcrypto.so.1.1 -------------------------------------------------------------------------------- /x64lib/libgcc_s.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/x64lib/libgcc_s.so.1 -------------------------------------------------------------------------------- /x64lib/libmbedcrypto.so.3: -------------------------------------------------------------------------------- 1 | libmbedcrypto.so.7 -------------------------------------------------------------------------------- /x64lib/libmbedcrypto.so.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/x64lib/libmbedcrypto.so.7 -------------------------------------------------------------------------------- /x64lib/libmbedtls.so.12: -------------------------------------------------------------------------------- 1 | libmbedtls.so.14 -------------------------------------------------------------------------------- /x64lib/libmbedtls.so.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/x64lib/libmbedtls.so.14 -------------------------------------------------------------------------------- /x64lib/libmbedx509.so.0: -------------------------------------------------------------------------------- 1 | libmbedx509.so.1 -------------------------------------------------------------------------------- /x64lib/libmbedx509.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/x64lib/libmbedx509.so.1 -------------------------------------------------------------------------------- /x64lib/libpng12.so.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/x64lib/libpng12.so.0 -------------------------------------------------------------------------------- /x64lib/libssl.so.1.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/x64lib/libssl.so.1.0.0 -------------------------------------------------------------------------------- /x64lib/libssl.so.1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/x64lib/libssl.so.1.1 -------------------------------------------------------------------------------- /x64lib/libstdc++.so.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/x64lib/libstdc++.so.5 -------------------------------------------------------------------------------- /x64lib/libstdc++.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/x64lib/libstdc++.so.6 -------------------------------------------------------------------------------- /x64lib/libunwind.so.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/x64lib/libunwind.so.8 -------------------------------------------------------------------------------- /x86android/libc++_shared.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/x86android/libc++_shared.so -------------------------------------------------------------------------------- /x86lib/libcrypto.so.1.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/x86lib/libcrypto.so.1.0.0 -------------------------------------------------------------------------------- /x86lib/libgcc_s.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/x86lib/libgcc_s.so.1 -------------------------------------------------------------------------------- /x86lib/libpng12.so.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/x86lib/libpng12.so.0 -------------------------------------------------------------------------------- /x86lib/libssl.so.1.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/x86lib/libssl.so.1.0.0 -------------------------------------------------------------------------------- /x86lib/libstdc++.so.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/x86lib/libstdc++.so.5 -------------------------------------------------------------------------------- /x86lib/libstdc++.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/x86lib/libstdc++.so.6 -------------------------------------------------------------------------------- /x86lib/libunwind.so.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/x86lib/libunwind.so.8 -------------------------------------------------------------------------------- /x86lib/libz.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olegos2/box64/65637f08ab29b42677eb652abf879904591df2fa/x86lib/libz.so.1 --------------------------------------------------------------------------------