ffi 1.9.3-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of ffi might be problematic. Click here for more details.
- data/COPYING +49 -0
- data/LICENSE +24 -0
- data/README.md +109 -0
- data/Rakefile +220 -0
- data/ext/ffi_c/AbstractMemory.c +1032 -0
- data/ext/ffi_c/AbstractMemory.h +175 -0
- data/ext/ffi_c/ArrayType.c +162 -0
- data/ext/ffi_c/ArrayType.h +59 -0
- data/ext/ffi_c/Buffer.c +365 -0
- data/ext/ffi_c/Call.c +465 -0
- data/ext/ffi_c/Call.h +93 -0
- data/ext/ffi_c/ClosurePool.c +283 -0
- data/ext/ffi_c/ClosurePool.h +57 -0
- data/ext/ffi_c/DataConverter.c +91 -0
- data/ext/ffi_c/DynamicLibrary.c +333 -0
- data/ext/ffi_c/DynamicLibrary.h +49 -0
- data/ext/ffi_c/Function.c +999 -0
- data/ext/ffi_c/Function.h +87 -0
- data/ext/ffi_c/FunctionInfo.c +271 -0
- data/ext/ffi_c/LastError.c +184 -0
- data/ext/ffi_c/LastError.h +47 -0
- data/ext/ffi_c/LongDouble.c +63 -0
- data/ext/ffi_c/LongDouble.h +51 -0
- data/ext/ffi_c/MappedType.c +168 -0
- data/ext/ffi_c/MappedType.h +59 -0
- data/ext/ffi_c/MemoryPointer.c +197 -0
- data/ext/ffi_c/MemoryPointer.h +53 -0
- data/ext/ffi_c/MethodHandle.c +360 -0
- data/ext/ffi_c/MethodHandle.h +55 -0
- data/ext/ffi_c/Platform.c +121 -0
- data/ext/ffi_c/Platform.h +45 -0
- data/ext/ffi_c/Pointer.c +508 -0
- data/ext/ffi_c/Pointer.h +63 -0
- data/ext/ffi_c/Struct.c +828 -0
- data/ext/ffi_c/Struct.h +106 -0
- data/ext/ffi_c/StructByReference.c +190 -0
- data/ext/ffi_c/StructByReference.h +50 -0
- data/ext/ffi_c/StructByValue.c +150 -0
- data/ext/ffi_c/StructByValue.h +55 -0
- data/ext/ffi_c/StructLayout.c +698 -0
- data/ext/ffi_c/Thread.c +352 -0
- data/ext/ffi_c/Thread.h +95 -0
- data/ext/ffi_c/Type.c +397 -0
- data/ext/ffi_c/Type.h +62 -0
- data/ext/ffi_c/Types.c +139 -0
- data/ext/ffi_c/Types.h +89 -0
- data/ext/ffi_c/Variadic.c +276 -0
- data/ext/ffi_c/compat.h +83 -0
- data/ext/ffi_c/extconf.rb +64 -0
- data/ext/ffi_c/ffi.c +98 -0
- data/ext/ffi_c/libffi.bsd.mk +34 -0
- data/ext/ffi_c/libffi.darwin.mk +95 -0
- data/ext/ffi_c/libffi.gnu.mk +31 -0
- data/ext/ffi_c/libffi.mk +13 -0
- data/ext/ffi_c/libffi.vc.mk +26 -0
- data/ext/ffi_c/libffi.vc64.mk +26 -0
- data/ext/ffi_c/libffi/ChangeLog +4600 -0
- data/ext/ffi_c/libffi/ChangeLog.libffi +584 -0
- data/ext/ffi_c/libffi/ChangeLog.libgcj +40 -0
- data/ext/ffi_c/libffi/ChangeLog.v1 +764 -0
- data/ext/ffi_c/libffi/LICENSE +21 -0
- data/ext/ffi_c/libffi/Makefile.am +196 -0
- data/ext/ffi_c/libffi/Makefile.in +1820 -0
- data/ext/ffi_c/libffi/Makefile.vc +141 -0
- data/ext/ffi_c/libffi/Makefile.vc64 +141 -0
- data/ext/ffi_c/libffi/README +342 -0
- data/ext/ffi_c/libffi/acinclude.m4 +92 -0
- data/ext/ffi_c/libffi/aclocal.m4 +1873 -0
- data/ext/ffi_c/libffi/build-ios.sh +67 -0
- data/ext/ffi_c/libffi/compile +143 -0
- data/ext/ffi_c/libffi/config.guess +1501 -0
- data/ext/ffi_c/libffi/config.sub +1705 -0
- data/ext/ffi_c/libffi/configure +17191 -0
- data/ext/ffi_c/libffi/configure.ac +496 -0
- data/ext/ffi_c/libffi/configure.host +11 -0
- data/ext/ffi_c/libffi/depcomp +630 -0
- data/ext/ffi_c/libffi/doc/libffi.info +593 -0
- data/ext/ffi_c/libffi/doc/libffi.texi +600 -0
- data/ext/ffi_c/libffi/doc/stamp-vti +4 -0
- data/ext/ffi_c/libffi/doc/version.texi +4 -0
- data/ext/ffi_c/libffi/fficonfig.h.in +199 -0
- data/ext/ffi_c/libffi/fficonfig.hw +57 -0
- data/ext/ffi_c/libffi/include/Makefile.am +9 -0
- data/ext/ffi_c/libffi/include/Makefile.in +487 -0
- data/ext/ffi_c/libffi/include/ffi.h.in +427 -0
- data/ext/ffi_c/libffi/include/ffi.h.vc +427 -0
- data/ext/ffi_c/libffi/include/ffi.h.vc64 +427 -0
- data/ext/ffi_c/libffi/include/ffi_common.h +126 -0
- data/ext/ffi_c/libffi/install-sh +520 -0
- data/ext/ffi_c/libffi/libffi.pc.in +10 -0
- data/ext/ffi_c/libffi/libtool-version +29 -0
- data/ext/ffi_c/libffi/ltmain.sh +9636 -0
- data/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +176 -0
- data/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +195 -0
- data/ext/ffi_c/libffi/m4/ax_check_compiler_flags.m4 +76 -0
- data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +63 -0
- data/ext/ffi_c/libffi/m4/ax_configure_args.m4 +70 -0
- data/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +300 -0
- data/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +215 -0
- data/ext/ffi_c/libffi/m4/ax_gcc_x86_cpuid.m4 +79 -0
- data/ext/ffi_c/libffi/m4/libtool.m4 +7831 -0
- data/ext/ffi_c/libffi/m4/ltoptions.m4 +369 -0
- data/ext/ffi_c/libffi/m4/ltsugar.m4 +123 -0
- data/ext/ffi_c/libffi/m4/ltversion.m4 +23 -0
- data/ext/ffi_c/libffi/m4/lt~obsolete.m4 +98 -0
- data/ext/ffi_c/libffi/man/Makefile.am +8 -0
- data/ext/ffi_c/libffi/man/Makefile.in +466 -0
- data/ext/ffi_c/libffi/man/ffi.3 +31 -0
- data/ext/ffi_c/libffi/man/ffi_call.3 +103 -0
- data/ext/ffi_c/libffi/man/ffi_prep_cif.3 +66 -0
- data/ext/ffi_c/libffi/mdate-sh +201 -0
- data/ext/ffi_c/libffi/missing +376 -0
- data/ext/ffi_c/libffi/msvcc.sh +197 -0
- data/ext/ffi_c/libffi/src/alpha/ffi.c +284 -0
- data/ext/ffi_c/libffi/src/alpha/ffitarget.h +48 -0
- data/ext/ffi_c/libffi/src/alpha/osf.S +387 -0
- data/ext/ffi_c/libffi/src/arm/ffi.c +728 -0
- data/ext/ffi_c/libffi/src/arm/ffitarget.h +65 -0
- data/ext/ffi_c/libffi/src/arm/gentramp.sh +118 -0
- data/ext/ffi_c/libffi/src/arm/sysv.S +497 -0
- data/ext/ffi_c/libffi/src/arm/trampoline.S +4450 -0
- data/ext/ffi_c/libffi/src/avr32/ffi.c +423 -0
- data/ext/ffi_c/libffi/src/avr32/ffitarget.h +50 -0
- data/ext/ffi_c/libffi/src/avr32/sysv.S +208 -0
- data/ext/ffi_c/libffi/src/closures.c +615 -0
- data/ext/ffi_c/libffi/src/cris/ffi.c +383 -0
- data/ext/ffi_c/libffi/src/cris/ffitarget.h +51 -0
- data/ext/ffi_c/libffi/src/cris/sysv.S +215 -0
- data/ext/ffi_c/libffi/src/debug.c +59 -0
- data/ext/ffi_c/libffi/src/dlmalloc.c +5161 -0
- data/ext/ffi_c/libffi/src/frv/eabi.S +128 -0
- data/ext/ffi_c/libffi/src/frv/ffi.c +292 -0
- data/ext/ffi_c/libffi/src/frv/ffitarget.h +57 -0
- data/ext/ffi_c/libffi/src/ia64/ffi.c +582 -0
- data/ext/ffi_c/libffi/src/ia64/ffitarget.h +50 -0
- data/ext/ffi_c/libffi/src/ia64/ia64_flags.h +40 -0
- data/ext/ffi_c/libffi/src/ia64/unix.S +560 -0
- data/ext/ffi_c/libffi/src/java_raw_api.c +356 -0
- data/ext/ffi_c/libffi/src/m32r/ffi.c +232 -0
- data/ext/ffi_c/libffi/src/m32r/ffitarget.h +48 -0
- data/ext/ffi_c/libffi/src/m32r/sysv.S +121 -0
- data/ext/ffi_c/libffi/src/m68k/ffi.c +288 -0
- data/ext/ffi_c/libffi/src/m68k/ffitarget.h +49 -0
- data/ext/ffi_c/libffi/src/m68k/sysv.S +270 -0
- data/ext/ffi_c/libffi/src/mips/ffi.c +1036 -0
- data/ext/ffi_c/libffi/src/mips/ffitarget.h +242 -0
- data/ext/ffi_c/libffi/src/mips/n32.S +591 -0
- data/ext/ffi_c/libffi/src/mips/o32.S +381 -0
- data/ext/ffi_c/libffi/src/moxie/eabi.S +128 -0
- data/ext/ffi_c/libffi/src/moxie/ffi.c +276 -0
- data/ext/ffi_c/libffi/src/pa/ffi.c +719 -0
- data/ext/ffi_c/libffi/src/pa/ffitarget.h +78 -0
- data/ext/ffi_c/libffi/src/pa/hpux32.S +368 -0
- data/ext/ffi_c/libffi/src/pa/linux.S +357 -0
- data/ext/ffi_c/libffi/src/powerpc/aix.S +328 -0
- data/ext/ffi_c/libffi/src/powerpc/aix_closure.S +445 -0
- data/ext/ffi_c/libffi/src/powerpc/asm.h +125 -0
- data/ext/ffi_c/libffi/src/powerpc/darwin.S +383 -0
- data/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +575 -0
- data/ext/ffi_c/libffi/src/powerpc/ffi.c +1448 -0
- data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +1359 -0
- data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +139 -0
- data/ext/ffi_c/libffi/src/powerpc/linux64.S +187 -0
- data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +236 -0
- data/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +327 -0
- data/ext/ffi_c/libffi/src/powerpc/sysv.S +219 -0
- data/ext/ffi_c/libffi/src/prep_cif.c +177 -0
- data/ext/ffi_c/libffi/src/raw_api.c +254 -0
- data/ext/ffi_c/libffi/src/s390/ffi.c +780 -0
- data/ext/ffi_c/libffi/src/s390/ffitarget.h +62 -0
- data/ext/ffi_c/libffi/src/s390/sysv.S +434 -0
- data/ext/ffi_c/libffi/src/sh/ffi.c +716 -0
- data/ext/ffi_c/libffi/src/sh/ffitarget.h +49 -0
- data/ext/ffi_c/libffi/src/sh/sysv.S +850 -0
- data/ext/ffi_c/libffi/src/sh64/ffi.c +468 -0
- data/ext/ffi_c/libffi/src/sh64/ffitarget.h +53 -0
- data/ext/ffi_c/libffi/src/sh64/sysv.S +539 -0
- data/ext/ffi_c/libffi/src/sparc/ffi.c +669 -0
- data/ext/ffi_c/libffi/src/sparc/ffitarget.h +68 -0
- data/ext/ffi_c/libffi/src/sparc/v8.S +313 -0
- data/ext/ffi_c/libffi/src/sparc/v9.S +307 -0
- data/ext/ffi_c/libffi/src/types.c +77 -0
- data/ext/ffi_c/libffi/src/x86/darwin.S +444 -0
- data/ext/ffi_c/libffi/src/x86/darwin64.S +416 -0
- data/ext/ffi_c/libffi/src/x86/ffi.c +644 -0
- data/ext/ffi_c/libffi/src/x86/ffi64.c +635 -0
- data/ext/ffi_c/libffi/src/x86/ffitarget.h +121 -0
- data/ext/ffi_c/libffi/src/x86/freebsd.S +458 -0
- data/ext/ffi_c/libffi/src/x86/sysv.S +468 -0
- data/ext/ffi_c/libffi/src/x86/unix64.S +426 -0
- data/ext/ffi_c/libffi/src/x86/win32.S +1065 -0
- data/ext/ffi_c/libffi/src/x86/win64.S +468 -0
- data/ext/ffi_c/libffi/testsuite/Makefile.am +80 -0
- data/ext/ffi_c/libffi/testsuite/Makefile.in +500 -0
- data/ext/ffi_c/libffi/testsuite/config/default.exp +1 -0
- data/ext/ffi_c/libffi/testsuite/lib/libffi-dg.exp +300 -0
- data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +350 -0
- data/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +263 -0
- data/ext/ffi_c/libffi/testsuite/lib/wrapper.exp +45 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +32 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn0.c +89 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn1.c +81 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn2.c +81 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn3.c +82 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn4.c +89 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn5.c +92 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn6.c +90 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_loc_fn0.c +95 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_stdcall.c +64 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_12byte.c +94 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_16byte.c +95 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_18byte.c +96 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_19byte.c +102 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_1_1byte.c +89 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte.c +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte1.c +93 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_24byte.c +113 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_2byte.c +90 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3_1byte.c +95 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte1.c +90 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte2.c +90 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4_1byte.c +98 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4byte.c +90 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5_1_byte.c +109 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5byte.c +98 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_64byte.c +124 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6_1_byte.c +113 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6byte.c +99 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7_1_byte.c +117 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7byte.c +97 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_8byte.c +88 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte1.c +90 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte2.c +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_double.c +93 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_float.c +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble.c +92 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split.c +134 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split2.c +117 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_pointer.c +95 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint16.c +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint32.c +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint64.c +92 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint16.c +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint32.c +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint64.c +93 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_dbls_struct.c +66 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_double.c +43 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_double_va.c +60 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_float.c +42 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble.c +105 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble_va.c +60 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_schar.c +74 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshort.c +74 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshortchar.c +86 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_uchar.c +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushort.c +74 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushortchar.c +86 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer.c +74 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer_stack.c +140 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_schar.c +44 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_sint.c +42 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_sshort.c +42 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar.c +42 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint.c +43 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulonglong.c +47 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort.c +43 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_abi.c +36 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +26 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +153 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/float.c +59 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +58 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +58 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +72 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/float4.c +62 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/huge_struct.c +342 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/many.c +69 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/many_win32.c +63 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +53 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct.c +152 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct1.c +161 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct10.c +133 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct2.c +110 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct3.c +111 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct4.c +111 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct5.c +112 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct6.c +131 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct7.c +111 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct8.c +131 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct9.c +131 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/problem1.c +90 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/promotion.c +59 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/pyobjc-tc.c +114 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +35 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl1.c +43 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl2.c +42 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl.c +35 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl1.c +36 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl2.c +49 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl3.c +42 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +34 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll.c +41 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +43 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +36 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +38 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +38 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +38 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/stret_large.c +145 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/stret_large2.c +148 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium.c +124 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium2.c +125 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +44 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen_win32.c +44 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +65 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +67 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +59 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +63 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +65 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +64 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +74 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +80 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +67 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/testclosure.c +70 -0
- data/ext/ffi_c/libffi/testsuite/libffi.special/ffitestcxx.h +96 -0
- data/ext/ffi_c/libffi/testsuite/libffi.special/special.exp +35 -0
- data/ext/ffi_c/libffi/testsuite/libffi.special/unwindtest.cc +124 -0
- data/ext/ffi_c/libffi/testsuite/libffi.special/unwindtest_ffi_call.cc +53 -0
- data/ext/ffi_c/libffi/texinfo.tex +7210 -0
- data/ext/ffi_c/rbffi.h +57 -0
- data/ext/ffi_c/rbffi_endian.h +59 -0
- data/ext/ffi_c/win32/stdbool.h +8 -0
- data/ext/ffi_c/win32/stdint.h +201 -0
- data/ffi.gemspec +22 -0
- data/gen/Rakefile +30 -0
- data/lib/ffi.rb +28 -0
- data/lib/ffi/autopointer.rb +194 -0
- data/lib/ffi/buffer.rb +4 -0
- data/lib/ffi/callback.rb +4 -0
- data/lib/ffi/enum.rb +173 -0
- data/lib/ffi/errno.rb +43 -0
- data/lib/ffi/ffi.rb +44 -0
- data/lib/ffi/io.rb +62 -0
- data/lib/ffi/library.rb +499 -0
- data/lib/ffi/managedstruct.rb +84 -0
- data/lib/ffi/memorypointer.rb +1 -0
- data/lib/ffi/platform.rb +148 -0
- data/lib/ffi/platform/arm-linux/types.conf +104 -0
- data/lib/ffi/platform/i386-cygwin/types.conf +3 -0
- data/lib/ffi/platform/i386-darwin/types.conf +100 -0
- data/lib/ffi/platform/i386-freebsd/types.conf +152 -0
- data/lib/ffi/platform/i386-gnu/types.conf +107 -0
- data/lib/ffi/platform/i386-linux/types.conf +103 -0
- data/lib/ffi/platform/i386-netbsd/types.conf +126 -0
- data/lib/ffi/platform/i386-openbsd/types.conf +128 -0
- data/lib/ffi/platform/i386-solaris/types.conf +122 -0
- data/lib/ffi/platform/i386-windows/types.conf +105 -0
- data/lib/ffi/platform/ia64-linux/types.conf +104 -0
- data/lib/ffi/platform/mips-linux/types.conf +102 -0
- data/lib/ffi/platform/mipsel-linux/types.conf +102 -0
- data/lib/ffi/platform/powerpc-aix/types.conf +180 -0
- data/lib/ffi/platform/powerpc-darwin/types.conf +100 -0
- data/lib/ffi/platform/powerpc-linux/types.conf +100 -0
- data/lib/ffi/platform/s390-linux/types.conf +102 -0
- data/lib/ffi/platform/s390x-linux/types.conf +102 -0
- data/lib/ffi/platform/sparc-linux/types.conf +102 -0
- data/lib/ffi/platform/sparc-solaris/types.conf +128 -0
- data/lib/ffi/platform/sparcv9-solaris/types.conf +128 -0
- data/lib/ffi/platform/x86_64-cygwin/types.conf +3 -0
- data/lib/ffi/platform/x86_64-darwin/types.conf +100 -0
- data/lib/ffi/platform/x86_64-freebsd/types.conf +128 -0
- data/lib/ffi/platform/x86_64-linux/types.conf +102 -0
- data/lib/ffi/platform/x86_64-netbsd/types.conf +126 -0
- data/lib/ffi/platform/x86_64-openbsd/types.conf +128 -0
- data/lib/ffi/platform/x86_64-solaris/types.conf +122 -0
- data/lib/ffi/platform/x86_64-windows/types.conf +27 -0
- data/lib/ffi/pointer.rb +134 -0
- data/lib/ffi/struct.rb +367 -0
- data/lib/ffi/struct_layout_builder.rb +222 -0
- data/lib/ffi/tools/const_generator.rb +229 -0
- data/lib/ffi/tools/generator.rb +60 -0
- data/lib/ffi/tools/generator_task.rb +36 -0
- data/lib/ffi/tools/struct_generator.rb +194 -0
- data/lib/ffi/tools/types_generator.rb +135 -0
- data/lib/ffi/types.rb +190 -0
- data/lib/ffi/union.rb +43 -0
- data/lib/ffi/variadic.rb +78 -0
- data/lib/ffi/version.rb +4 -0
- data/lib/ffi_c.so +0 -0
- data/libtest/Benchmark.c +52 -0
- data/libtest/BoolTest.c +34 -0
- data/libtest/BufferTest.c +31 -0
- data/libtest/ClosureTest.c +190 -0
- data/libtest/EnumTest.c +34 -0
- data/libtest/FunctionTest.c +58 -0
- data/libtest/GNUmakefile +149 -0
- data/libtest/GlobalVariable.c +62 -0
- data/libtest/LastErrorTest.c +21 -0
- data/libtest/NumberTest.c +132 -0
- data/libtest/PointerTest.c +63 -0
- data/libtest/ReferenceTest.c +23 -0
- data/libtest/StringTest.c +34 -0
- data/libtest/StructTest.c +243 -0
- data/libtest/UnionTest.c +43 -0
- data/libtest/VariadicTest.c +62 -0
- data/spec/ffi/async_callback_spec.rb +35 -0
- data/spec/ffi/bool_spec.rb +29 -0
- data/spec/ffi/buffer_spec.rb +251 -0
- data/spec/ffi/callback_spec.rb +667 -0
- data/spec/ffi/custom_param_type.rb +36 -0
- data/spec/ffi/custom_type_spec.rb +74 -0
- data/spec/ffi/dup_spec.rb +54 -0
- data/spec/ffi/enum_spec.rb +220 -0
- data/spec/ffi/errno_spec.rb +18 -0
- data/spec/ffi/ffi_spec.rb +29 -0
- data/spec/ffi/function_spec.rb +76 -0
- data/spec/ffi/library_spec.rb +216 -0
- data/spec/ffi/long_double.rb +30 -0
- data/spec/ffi/managed_struct_spec.rb +57 -0
- data/spec/ffi/number_spec.rb +236 -0
- data/spec/ffi/pointer_spec.rb +265 -0
- data/spec/ffi/rbx/attach_function_spec.rb +28 -0
- data/spec/ffi/rbx/memory_pointer_spec.rb +123 -0
- data/spec/ffi/rbx/spec_helper.rb +1 -0
- data/spec/ffi/rbx/struct_spec.rb +13 -0
- data/spec/ffi/spec_helper.rb +33 -0
- data/spec/ffi/string_spec.rb +108 -0
- data/spec/ffi/strptr_spec.rb +50 -0
- data/spec/ffi/struct_by_ref_spec.rb +43 -0
- data/spec/ffi/struct_callback_spec.rb +69 -0
- data/spec/ffi/struct_initialize_spec.rb +35 -0
- data/spec/ffi/struct_packed_spec.rb +51 -0
- data/spec/ffi/struct_spec.rb +748 -0
- data/spec/ffi/typedef_spec.rb +78 -0
- data/spec/ffi/union_spec.rb +65 -0
- data/spec/ffi/variadic_spec.rb +92 -0
- data/spec/spec.opts +4 -0
- metadata +562 -0
@@ -0,0 +1,128 @@
|
|
1
|
+
rbx.platform.typedef.lock_t = uchar
|
2
|
+
rbx.platform.typedef.int8_t = char
|
3
|
+
rbx.platform.typedef.int16_t = short
|
4
|
+
rbx.platform.typedef.int32_t = int
|
5
|
+
rbx.platform.typedef.int64_t = long_long
|
6
|
+
rbx.platform.typedef.uint8_t = uchar
|
7
|
+
rbx.platform.typedef.uint16_t = ushort
|
8
|
+
rbx.platform.typedef.uint32_t = uint
|
9
|
+
rbx.platform.typedef.uint64_t = ulong_long
|
10
|
+
rbx.platform.typedef.intmax_t = long_long
|
11
|
+
rbx.platform.typedef.uintmax_t = ulong_long
|
12
|
+
rbx.platform.typedef.intptr_t = int
|
13
|
+
rbx.platform.typedef.uintptr_t = uint
|
14
|
+
rbx.platform.typedef.int_fast8_t = char
|
15
|
+
rbx.platform.typedef.int_fast16_t = int
|
16
|
+
rbx.platform.typedef.int_fast32_t = int
|
17
|
+
rbx.platform.typedef.int_fast64_t = long_long
|
18
|
+
rbx.platform.typedef.uint_fast8_t = uchar
|
19
|
+
rbx.platform.typedef.uint_fast16_t = uint
|
20
|
+
rbx.platform.typedef.uint_fast32_t = uint
|
21
|
+
rbx.platform.typedef.uint_fast64_t = ulong_long
|
22
|
+
rbx.platform.typedef.int_least8_t = char
|
23
|
+
rbx.platform.typedef.int_least16_t = short
|
24
|
+
rbx.platform.typedef.int_least32_t = int
|
25
|
+
rbx.platform.typedef.int_least64_t = long_long
|
26
|
+
rbx.platform.typedef.uint_least8_t = uchar
|
27
|
+
rbx.platform.typedef.uint_least16_t = ushort
|
28
|
+
rbx.platform.typedef.uint_least32_t = uint
|
29
|
+
rbx.platform.typedef.uint_least64_t = ulong_long
|
30
|
+
rbx.platform.typedef.longlong_t = long_long
|
31
|
+
rbx.platform.typedef.u_longlong_t = ulong_long
|
32
|
+
rbx.platform.typedef.t_scalar_t = long
|
33
|
+
rbx.platform.typedef.t_uscalar_t = ulong
|
34
|
+
rbx.platform.typedef.uchar_t = uchar
|
35
|
+
rbx.platform.typedef.ushort_t = ushort
|
36
|
+
rbx.platform.typedef.uint_t = uint
|
37
|
+
rbx.platform.typedef.ulong_t = ulong
|
38
|
+
rbx.platform.typedef.*caddr_t = char
|
39
|
+
rbx.platform.typedef.daddr_t = long
|
40
|
+
rbx.platform.typedef.cnt_t = short
|
41
|
+
rbx.platform.typedef.ptrdiff_t = int
|
42
|
+
rbx.platform.typedef.pfn_t = ulong
|
43
|
+
rbx.platform.typedef.pgcnt_t = ulong
|
44
|
+
rbx.platform.typedef.spgcnt_t = long
|
45
|
+
rbx.platform.typedef.use_t = uchar
|
46
|
+
rbx.platform.typedef.sysid_t = short
|
47
|
+
rbx.platform.typedef.index_t = short
|
48
|
+
rbx.platform.typedef.off_t = long_long
|
49
|
+
rbx.platform.typedef.off64_t = long_long
|
50
|
+
rbx.platform.typedef.ino_t = ulong_long
|
51
|
+
rbx.platform.typedef.blkcnt_t = long_long
|
52
|
+
rbx.platform.typedef.fsblkcnt_t = ulong_long
|
53
|
+
rbx.platform.typedef.fsfilcnt_t = ulong_long
|
54
|
+
rbx.platform.typedef.ino64_t = ulong_long
|
55
|
+
rbx.platform.typedef.blkcnt64_t = long_long
|
56
|
+
rbx.platform.typedef.fsblkcnt64_t = ulong_long
|
57
|
+
rbx.platform.typedef.fsfilcnt64_t = ulong_long
|
58
|
+
rbx.platform.typedef.blksize_t = long
|
59
|
+
rbx.platform.typedef.pad64_t = long_long
|
60
|
+
rbx.platform.typedef.upad64_t = ulong_long
|
61
|
+
rbx.platform.typedef.offset_t = long_long
|
62
|
+
rbx.platform.typedef.u_offset_t = ulong_long
|
63
|
+
rbx.platform.typedef.len_t = ulong_long
|
64
|
+
rbx.platform.typedef.diskaddr_t = ulong_long
|
65
|
+
rbx.platform.typedef.k_fltset_t = uint
|
66
|
+
rbx.platform.typedef.id_t = long
|
67
|
+
rbx.platform.typedef.useconds_t = uint
|
68
|
+
rbx.platform.typedef.suseconds_t = long
|
69
|
+
rbx.platform.typedef.major_t = ulong
|
70
|
+
rbx.platform.typedef.minor_t = ulong
|
71
|
+
rbx.platform.typedef.pri_t = short
|
72
|
+
rbx.platform.typedef.cpu_flag_t = ushort
|
73
|
+
rbx.platform.typedef.o_mode_t = ushort
|
74
|
+
rbx.platform.typedef.o_dev_t = short
|
75
|
+
rbx.platform.typedef.o_uid_t = ushort
|
76
|
+
rbx.platform.typedef.o_gid_t = ushort
|
77
|
+
rbx.platform.typedef.o_nlink_t = short
|
78
|
+
rbx.platform.typedef.o_pid_t = short
|
79
|
+
rbx.platform.typedef.o_ino_t = ushort
|
80
|
+
rbx.platform.typedef.key_t = int
|
81
|
+
rbx.platform.typedef.mode_t = ulong
|
82
|
+
rbx.platform.typedef.uid_t = long
|
83
|
+
rbx.platform.typedef.gid_t = long
|
84
|
+
rbx.platform.typedef.taskid_t = long
|
85
|
+
rbx.platform.typedef.projid_t = long
|
86
|
+
rbx.platform.typedef.poolid_t = long
|
87
|
+
rbx.platform.typedef.zoneid_t = long
|
88
|
+
rbx.platform.typedef.ctid_t = long
|
89
|
+
rbx.platform.typedef.pthread_t = uint
|
90
|
+
rbx.platform.typedef.pthread_key_t = uint
|
91
|
+
rbx.platform.typedef.dev_t = ulong
|
92
|
+
rbx.platform.typedef.nlink_t = ulong
|
93
|
+
rbx.platform.typedef.pid_t = long
|
94
|
+
rbx.platform.typedef.size_t = uint
|
95
|
+
rbx.platform.typedef.ssize_t = int
|
96
|
+
rbx.platform.typedef.time_t = long
|
97
|
+
rbx.platform.typedef.clock_t = long
|
98
|
+
rbx.platform.typedef.clockid_t = int
|
99
|
+
rbx.platform.typedef.timer_t = int
|
100
|
+
rbx.platform.typedef.unchar = uchar
|
101
|
+
rbx.platform.typedef.ushort = ushort
|
102
|
+
rbx.platform.typedef.uint = uint
|
103
|
+
rbx.platform.typedef.ulong = ulong
|
104
|
+
rbx.platform.typedef.u_char = uchar
|
105
|
+
rbx.platform.typedef.u_short = ushort
|
106
|
+
rbx.platform.typedef.u_int = uint
|
107
|
+
rbx.platform.typedef.u_long = ulong
|
108
|
+
rbx.platform.typedef.hrtime_t = long_long
|
109
|
+
rbx.platform.typedef.fd_mask = long
|
110
|
+
rbx.platform.typedef.fds_mask = long
|
111
|
+
rbx.platform.typedef.sa_family_t = ushort
|
112
|
+
rbx.platform.typedef.socklen_t = uint
|
113
|
+
rbx.platform.typedef.Psocklen_t = pointer
|
114
|
+
rbx.platform.typedef.disp_lock_t = uchar
|
115
|
+
rbx.platform.typedef.rlim_t = ulong_long
|
116
|
+
rbx.platform.typedef.rlim64_t = ulong_long
|
117
|
+
rbx.platform.typedef.kid_t = int
|
118
|
+
rbx.platform.typedef.int) = pointer
|
119
|
+
rbx.platform.typedef.size_t) = pointer
|
120
|
+
rbx.platform.typedef.int) = pointer
|
121
|
+
rbx.platform.typedef.avl_index_t = uint
|
122
|
+
rbx.platform.typedef.() = pointer
|
123
|
+
rbx.platform.typedef.nfds_t = ulong
|
124
|
+
rbx.platform.typedef.model_t = uint
|
125
|
+
rbx.platform.typedef.ts_t = long_long
|
126
|
+
rbx.platform.typedef.in_port_t = ushort
|
127
|
+
rbx.platform.typedef.in_addr_t = uint
|
128
|
+
rbx.platform.typedef.ipaddr_t = uint
|
@@ -0,0 +1,100 @@
|
|
1
|
+
rbx.platform.typedef.__int8_t = char
|
2
|
+
rbx.platform.typedef.__uint8_t = uchar
|
3
|
+
rbx.platform.typedef.__int16_t = short
|
4
|
+
rbx.platform.typedef.__uint16_t = ushort
|
5
|
+
rbx.platform.typedef.__int32_t = int
|
6
|
+
rbx.platform.typedef.__uint32_t = uint
|
7
|
+
rbx.platform.typedef.__int64_t = long_long
|
8
|
+
rbx.platform.typedef.__uint64_t = ulong_long
|
9
|
+
rbx.platform.typedef.__darwin_intptr_t = long
|
10
|
+
rbx.platform.typedef.__darwin_natural_t = uint
|
11
|
+
rbx.platform.typedef.__darwin_ct_rune_t = int
|
12
|
+
rbx.platform.typedef.__darwin_ptrdiff_t = long
|
13
|
+
rbx.platform.typedef.__darwin_size_t = ulong
|
14
|
+
rbx.platform.typedef.__darwin_wchar_t = int
|
15
|
+
rbx.platform.typedef.__darwin_rune_t = int
|
16
|
+
rbx.platform.typedef.__darwin_wint_t = int
|
17
|
+
rbx.platform.typedef.__darwin_clock_t = ulong
|
18
|
+
rbx.platform.typedef.__darwin_socklen_t = uint
|
19
|
+
rbx.platform.typedef.__darwin_ssize_t = long
|
20
|
+
rbx.platform.typedef.__darwin_time_t = long
|
21
|
+
rbx.platform.typedef.int8_t = char
|
22
|
+
rbx.platform.typedef.u_int8_t = uchar
|
23
|
+
rbx.platform.typedef.int16_t = short
|
24
|
+
rbx.platform.typedef.u_int16_t = ushort
|
25
|
+
rbx.platform.typedef.int32_t = int
|
26
|
+
rbx.platform.typedef.u_int32_t = uint
|
27
|
+
rbx.platform.typedef.int64_t = long_long
|
28
|
+
rbx.platform.typedef.u_int64_t = ulong_long
|
29
|
+
rbx.platform.typedef.register_t = long_long
|
30
|
+
rbx.platform.typedef.intptr_t = long
|
31
|
+
rbx.platform.typedef.uintptr_t = ulong
|
32
|
+
rbx.platform.typedef.user_addr_t = ulong_long
|
33
|
+
rbx.platform.typedef.user_size_t = ulong_long
|
34
|
+
rbx.platform.typedef.user_ssize_t = long_long
|
35
|
+
rbx.platform.typedef.user_long_t = long_long
|
36
|
+
rbx.platform.typedef.user_ulong_t = ulong_long
|
37
|
+
rbx.platform.typedef.user_time_t = long_long
|
38
|
+
rbx.platform.typedef.syscall_arg_t = ulong_long
|
39
|
+
rbx.platform.typedef.__darwin_blkcnt_t = long_long
|
40
|
+
rbx.platform.typedef.__darwin_blksize_t = int
|
41
|
+
rbx.platform.typedef.__darwin_dev_t = int
|
42
|
+
rbx.platform.typedef.__darwin_fsblkcnt_t = uint
|
43
|
+
rbx.platform.typedef.__darwin_fsfilcnt_t = uint
|
44
|
+
rbx.platform.typedef.__darwin_gid_t = uint
|
45
|
+
rbx.platform.typedef.__darwin_id_t = uint
|
46
|
+
rbx.platform.typedef.__darwin_ino64_t = ulong_long
|
47
|
+
rbx.platform.typedef.__darwin_ino_t = ulong_long
|
48
|
+
rbx.platform.typedef.__darwin_mach_port_name_t = uint
|
49
|
+
rbx.platform.typedef.__darwin_mach_port_t = uint
|
50
|
+
rbx.platform.typedef.__darwin_mode_t = ushort
|
51
|
+
rbx.platform.typedef.__darwin_off_t = long_long
|
52
|
+
rbx.platform.typedef.__darwin_pid_t = int
|
53
|
+
rbx.platform.typedef.__darwin_pthread_key_t = ulong
|
54
|
+
rbx.platform.typedef.__darwin_sigset_t = uint
|
55
|
+
rbx.platform.typedef.__darwin_suseconds_t = int
|
56
|
+
rbx.platform.typedef.__darwin_uid_t = uint
|
57
|
+
rbx.platform.typedef.__darwin_useconds_t = uint
|
58
|
+
rbx.platform.typedef.__darwin_uuid_t[16] = uchar
|
59
|
+
rbx.platform.typedef.u_char = uchar
|
60
|
+
rbx.platform.typedef.u_short = ushort
|
61
|
+
rbx.platform.typedef.u_int = uint
|
62
|
+
rbx.platform.typedef.u_long = ulong
|
63
|
+
rbx.platform.typedef.ushort = ushort
|
64
|
+
rbx.platform.typedef.uint = uint
|
65
|
+
rbx.platform.typedef.u_quad_t = ulong_long
|
66
|
+
rbx.platform.typedef.quad_t = long_long
|
67
|
+
rbx.platform.typedef.qaddr_t = pointer
|
68
|
+
rbx.platform.typedef.caddr_t = string
|
69
|
+
rbx.platform.typedef.daddr_t = int
|
70
|
+
rbx.platform.typedef.dev_t = int
|
71
|
+
rbx.platform.typedef.fixpt_t = uint
|
72
|
+
rbx.platform.typedef.blkcnt_t = long_long
|
73
|
+
rbx.platform.typedef.blksize_t = int
|
74
|
+
rbx.platform.typedef.gid_t = uint
|
75
|
+
rbx.platform.typedef.in_addr_t = uint
|
76
|
+
rbx.platform.typedef.in_port_t = ushort
|
77
|
+
rbx.platform.typedef.ino_t = ulong_long
|
78
|
+
rbx.platform.typedef.ino64_t = ulong_long
|
79
|
+
rbx.platform.typedef.key_t = int
|
80
|
+
rbx.platform.typedef.mode_t = ushort
|
81
|
+
rbx.platform.typedef.nlink_t = ushort
|
82
|
+
rbx.platform.typedef.id_t = uint
|
83
|
+
rbx.platform.typedef.pid_t = int
|
84
|
+
rbx.platform.typedef.off_t = long_long
|
85
|
+
rbx.platform.typedef.segsz_t = int
|
86
|
+
rbx.platform.typedef.swblk_t = int
|
87
|
+
rbx.platform.typedef.uid_t = uint
|
88
|
+
rbx.platform.typedef.clock_t = ulong
|
89
|
+
rbx.platform.typedef.size_t = ulong
|
90
|
+
rbx.platform.typedef.ssize_t = long
|
91
|
+
rbx.platform.typedef.time_t = long
|
92
|
+
rbx.platform.typedef.useconds_t = uint
|
93
|
+
rbx.platform.typedef.suseconds_t = int
|
94
|
+
rbx.platform.typedef.fd_mask = int
|
95
|
+
rbx.platform.typedef.pthread_key_t = ulong
|
96
|
+
rbx.platform.typedef.fsblkcnt_t = uint
|
97
|
+
rbx.platform.typedef.fsfilcnt_t = uint
|
98
|
+
rbx.platform.typedef.sa_family_t = uchar
|
99
|
+
rbx.platform.typedef.socklen_t = uint
|
100
|
+
rbx.platform.typedef.rlim_t = ulong_long
|
@@ -0,0 +1,128 @@
|
|
1
|
+
rbx.platform.typedef.__int8_t = char
|
2
|
+
rbx.platform.typedef.__uint8_t = uchar
|
3
|
+
rbx.platform.typedef.__int16_t = short
|
4
|
+
rbx.platform.typedef.__uint16_t = ushort
|
5
|
+
rbx.platform.typedef.__int32_t = int
|
6
|
+
rbx.platform.typedef.__uint32_t = uint
|
7
|
+
rbx.platform.typedef.__int64_t = long_long
|
8
|
+
rbx.platform.typedef.__uint64_t = ulong_long
|
9
|
+
rbx.platform.typedef.__int_least8_t = char
|
10
|
+
rbx.platform.typedef.__uint_least8_t = uchar
|
11
|
+
rbx.platform.typedef.__int_least16_t = short
|
12
|
+
rbx.platform.typedef.__uint_least16_t = ushort
|
13
|
+
rbx.platform.typedef.__int_least32_t = int
|
14
|
+
rbx.platform.typedef.__uint_least32_t = uint
|
15
|
+
rbx.platform.typedef.__int_least64_t = long_long
|
16
|
+
rbx.platform.typedef.__uint_least64_t = ulong_long
|
17
|
+
rbx.platform.typedef.__int_fast8_t = int
|
18
|
+
rbx.platform.typedef.__uint_fast8_t = uint
|
19
|
+
rbx.platform.typedef.__int_fast16_t = int
|
20
|
+
rbx.platform.typedef.__uint_fast16_t = uint
|
21
|
+
rbx.platform.typedef.__int_fast32_t = int
|
22
|
+
rbx.platform.typedef.__uint_fast32_t = uint
|
23
|
+
rbx.platform.typedef.__int_fast64_t = long_long
|
24
|
+
rbx.platform.typedef.__uint_fast64_t = ulong_long
|
25
|
+
rbx.platform.typedef.__intptr_t = long
|
26
|
+
rbx.platform.typedef.__uintptr_t = ulong
|
27
|
+
rbx.platform.typedef.__intmax_t = long_long
|
28
|
+
rbx.platform.typedef.__uintmax_t = ulong_long
|
29
|
+
rbx.platform.typedef.__register_t = int
|
30
|
+
rbx.platform.typedef.__vaddr_t = ulong
|
31
|
+
rbx.platform.typedef.__paddr_t = ulong
|
32
|
+
rbx.platform.typedef.__vsize_t = ulong
|
33
|
+
rbx.platform.typedef.__psize_t = ulong
|
34
|
+
rbx.platform.typedef.__clock_t = int
|
35
|
+
rbx.platform.typedef.__clockid_t = int
|
36
|
+
rbx.platform.typedef.__off_t = long_long
|
37
|
+
rbx.platform.typedef.__ptrdiff_t = long
|
38
|
+
rbx.platform.typedef.__size_t = ulong
|
39
|
+
rbx.platform.typedef.__ssize_t = long
|
40
|
+
rbx.platform.typedef.__time_t = int
|
41
|
+
rbx.platform.typedef.__timer_t = int
|
42
|
+
rbx.platform.typedef.__wchar_t = int
|
43
|
+
rbx.platform.typedef.__wint_t = int
|
44
|
+
rbx.platform.typedef.__rune_t = int
|
45
|
+
rbx.platform.typedef.__wctrans_t = pointer
|
46
|
+
rbx.platform.typedef.__wctype_t = pointer
|
47
|
+
rbx.platform.typedef.__cpuid_t = ulong
|
48
|
+
rbx.platform.typedef.__dev_t = int
|
49
|
+
rbx.platform.typedef.__fixpt_t = uint
|
50
|
+
rbx.platform.typedef.__gid_t = uint
|
51
|
+
rbx.platform.typedef.__id_t = uint
|
52
|
+
rbx.platform.typedef.__in_addr_t = uint
|
53
|
+
rbx.platform.typedef.__in_port_t = ushort
|
54
|
+
rbx.platform.typedef.__ino_t = uint
|
55
|
+
rbx.platform.typedef.__key_t = long
|
56
|
+
rbx.platform.typedef.__mode_t = uint
|
57
|
+
rbx.platform.typedef.__nlink_t = uint
|
58
|
+
rbx.platform.typedef.__pid_t = int
|
59
|
+
rbx.platform.typedef.__rlim_t = ulong_long
|
60
|
+
rbx.platform.typedef.__sa_family_t = uchar
|
61
|
+
rbx.platform.typedef.__segsz_t = int
|
62
|
+
rbx.platform.typedef.__socklen_t = uint
|
63
|
+
rbx.platform.typedef.__swblk_t = int
|
64
|
+
rbx.platform.typedef.__uid_t = uint
|
65
|
+
rbx.platform.typedef.__useconds_t = uint
|
66
|
+
rbx.platform.typedef.__suseconds_t = int
|
67
|
+
rbx.platform.typedef.u_char = uchar
|
68
|
+
rbx.platform.typedef.u_short = ushort
|
69
|
+
rbx.platform.typedef.u_int = uint
|
70
|
+
rbx.platform.typedef.u_long = ulong
|
71
|
+
rbx.platform.typedef.unchar = uchar
|
72
|
+
rbx.platform.typedef.ushort = ushort
|
73
|
+
rbx.platform.typedef.uint = uint
|
74
|
+
rbx.platform.typedef.ulong = ulong
|
75
|
+
rbx.platform.typedef.cpuid_t = ulong
|
76
|
+
rbx.platform.typedef.register_t = int
|
77
|
+
rbx.platform.typedef.int8_t = char
|
78
|
+
rbx.platform.typedef.uint8_t = uchar
|
79
|
+
rbx.platform.typedef.int16_t = short
|
80
|
+
rbx.platform.typedef.uint16_t = ushort
|
81
|
+
rbx.platform.typedef.int32_t = int
|
82
|
+
rbx.platform.typedef.uint32_t = uint
|
83
|
+
rbx.platform.typedef.int64_t = long_long
|
84
|
+
rbx.platform.typedef.uint64_t = ulong_long
|
85
|
+
rbx.platform.typedef.intptr_t = long
|
86
|
+
rbx.platform.typedef.uintptr_t = ulong
|
87
|
+
rbx.platform.typedef.u_int8_t = uchar
|
88
|
+
rbx.platform.typedef.u_int16_t = ushort
|
89
|
+
rbx.platform.typedef.u_int32_t = uint
|
90
|
+
rbx.platform.typedef.u_int64_t = ulong_long
|
91
|
+
rbx.platform.typedef.quad_t = long_long
|
92
|
+
rbx.platform.typedef.u_quad_t = ulong_long
|
93
|
+
rbx.platform.typedef.qaddr_t = pointer
|
94
|
+
rbx.platform.typedef.vaddr_t = ulong
|
95
|
+
rbx.platform.typedef.paddr_t = ulong
|
96
|
+
rbx.platform.typedef.vsize_t = ulong
|
97
|
+
rbx.platform.typedef.psize_t = ulong
|
98
|
+
rbx.platform.typedef.caddr_t = string
|
99
|
+
rbx.platform.typedef.daddr_t = int
|
100
|
+
rbx.platform.typedef.daddr32_t = int
|
101
|
+
rbx.platform.typedef.daddr64_t = long_long
|
102
|
+
rbx.platform.typedef.dev_t = int
|
103
|
+
rbx.platform.typedef.fixpt_t = uint
|
104
|
+
rbx.platform.typedef.gid_t = uint
|
105
|
+
rbx.platform.typedef.id_t = uint
|
106
|
+
rbx.platform.typedef.ino_t = uint
|
107
|
+
rbx.platform.typedef.key_t = long
|
108
|
+
rbx.platform.typedef.mode_t = uint
|
109
|
+
rbx.platform.typedef.nlink_t = uint
|
110
|
+
rbx.platform.typedef.pid_t = int
|
111
|
+
rbx.platform.typedef.rlim_t = ulong_long
|
112
|
+
rbx.platform.typedef.segsz_t = int
|
113
|
+
rbx.platform.typedef.swblk_t = int
|
114
|
+
rbx.platform.typedef.uid_t = uint
|
115
|
+
rbx.platform.typedef.useconds_t = uint
|
116
|
+
rbx.platform.typedef.suseconds_t = int
|
117
|
+
rbx.platform.typedef.in_addr_t = uint
|
118
|
+
rbx.platform.typedef.in_port_t = ushort
|
119
|
+
rbx.platform.typedef.sa_family_t = uchar
|
120
|
+
rbx.platform.typedef.socklen_t = uint
|
121
|
+
rbx.platform.typedef.clock_t = int
|
122
|
+
rbx.platform.typedef.clockid_t = int
|
123
|
+
rbx.platform.typedef.size_t = ulong
|
124
|
+
rbx.platform.typedef.ssize_t = long
|
125
|
+
rbx.platform.typedef.time_t = int
|
126
|
+
rbx.platform.typedef.timer_t = int
|
127
|
+
rbx.platform.typedef.off_t = long_long
|
128
|
+
rbx.platform.typedef.__fd_mask = int
|
@@ -0,0 +1,102 @@
|
|
1
|
+
rbx.platform.typedef.__u_char = uchar
|
2
|
+
rbx.platform.typedef.__u_short = ushort
|
3
|
+
rbx.platform.typedef.__u_int = uint
|
4
|
+
rbx.platform.typedef.__u_long = ulong
|
5
|
+
rbx.platform.typedef.__int8_t = char
|
6
|
+
rbx.platform.typedef.__uint8_t = uchar
|
7
|
+
rbx.platform.typedef.__int16_t = short
|
8
|
+
rbx.platform.typedef.__uint16_t = ushort
|
9
|
+
rbx.platform.typedef.__int32_t = int
|
10
|
+
rbx.platform.typedef.__uint32_t = uint
|
11
|
+
rbx.platform.typedef.__int64_t = long
|
12
|
+
rbx.platform.typedef.__uint64_t = ulong
|
13
|
+
rbx.platform.typedef.__quad_t = long
|
14
|
+
rbx.platform.typedef.__u_quad_t = ulong
|
15
|
+
rbx.platform.typedef.__dev_t = ulong
|
16
|
+
rbx.platform.typedef.__uid_t = uint
|
17
|
+
rbx.platform.typedef.__gid_t = uint
|
18
|
+
rbx.platform.typedef.__ino_t = ulong
|
19
|
+
rbx.platform.typedef.__ino64_t = ulong
|
20
|
+
rbx.platform.typedef.__mode_t = uint
|
21
|
+
rbx.platform.typedef.__nlink_t = ulong
|
22
|
+
rbx.platform.typedef.__off_t = long
|
23
|
+
rbx.platform.typedef.__off64_t = long
|
24
|
+
rbx.platform.typedef.__pid_t = int
|
25
|
+
rbx.platform.typedef.__clock_t = long
|
26
|
+
rbx.platform.typedef.__rlim_t = ulong
|
27
|
+
rbx.platform.typedef.__rlim64_t = ulong
|
28
|
+
rbx.platform.typedef.__id_t = uint
|
29
|
+
rbx.platform.typedef.__time_t = long
|
30
|
+
rbx.platform.typedef.__useconds_t = uint
|
31
|
+
rbx.platform.typedef.__suseconds_t = long
|
32
|
+
rbx.platform.typedef.__daddr_t = int
|
33
|
+
rbx.platform.typedef.__swblk_t = long
|
34
|
+
rbx.platform.typedef.__key_t = int
|
35
|
+
rbx.platform.typedef.__clockid_t = int
|
36
|
+
rbx.platform.typedef.__timer_t = pointer
|
37
|
+
rbx.platform.typedef.blksize_t = long
|
38
|
+
rbx.platform.typedef.__blkcnt_t = long
|
39
|
+
rbx.platform.typedef.__blkcnt64_t = long
|
40
|
+
rbx.platform.typedef.__fsblkcnt_t = ulong
|
41
|
+
rbx.platform.typedef.__fsblkcnt64_t = ulong
|
42
|
+
rbx.platform.typedef.__fsfilcnt_t = ulong
|
43
|
+
rbx.platform.typedef.__fsfilcnt64_t = ulong
|
44
|
+
rbx.platform.typedef.__ssize_t = long
|
45
|
+
rbx.platform.typedef.__loff_t = long
|
46
|
+
rbx.platform.typedef.*__qaddr_t = long
|
47
|
+
rbx.platform.typedef.*__caddr_t = char
|
48
|
+
rbx.platform.typedef.__intptr_t = long
|
49
|
+
rbx.platform.typedef.__socklen_t = uint
|
50
|
+
rbx.platform.typedef.u_char = uchar
|
51
|
+
rbx.platform.typedef.u_short = ushort
|
52
|
+
rbx.platform.typedef.u_int = uint
|
53
|
+
rbx.platform.typedef.u_long = ulong
|
54
|
+
rbx.platform.typedef.quad_t = long
|
55
|
+
rbx.platform.typedef.u_quad_t = ulong
|
56
|
+
rbx.platform.typedef.loff_t = long
|
57
|
+
rbx.platform.typedef.ino_t = ulong
|
58
|
+
rbx.platform.typedef.dev_t = ulong
|
59
|
+
rbx.platform.typedef.gid_t = uint
|
60
|
+
rbx.platform.typedef.in_addr_t = uint
|
61
|
+
rbx.platform.typedef.in_port_t = ushort
|
62
|
+
rbx.platform.typedef.mode_t = uint
|
63
|
+
rbx.platform.typedef.nlink_t = ulong
|
64
|
+
rbx.platform.typedef.uid_t = uint
|
65
|
+
rbx.platform.typedef.off_t = long
|
66
|
+
rbx.platform.typedef.pid_t = int
|
67
|
+
rbx.platform.typedef.id_t = uint
|
68
|
+
rbx.platform.typedef.ssize_t = long
|
69
|
+
rbx.platform.typedef.daddr_t = int
|
70
|
+
rbx.platform.typedef.key_t = int
|
71
|
+
rbx.platform.typedef.time_t = long
|
72
|
+
rbx.platform.typedef.clockid_t = int
|
73
|
+
rbx.platform.typedef.timer_t = pointer
|
74
|
+
rbx.platform.typedef.size_t = ulong
|
75
|
+
rbx.platform.typedef.ulong = ulong
|
76
|
+
rbx.platform.typedef.ushort = ushort
|
77
|
+
rbx.platform.typedef.uint = uint
|
78
|
+
rbx.platform.typedef.int8_t = char
|
79
|
+
rbx.platform.typedef.int16_t = short
|
80
|
+
rbx.platform.typedef.int32_t = int
|
81
|
+
rbx.platform.typedef.int64_t = long_long
|
82
|
+
rbx.platform.typedef.u_int8_t = uchar
|
83
|
+
rbx.platform.typedef.u_int16_t = ushort
|
84
|
+
rbx.platform.typedef.u_int32_t = uint
|
85
|
+
rbx.platform.typedef.u_int64_t = ulong_long
|
86
|
+
rbx.platform.typedef.register_t = long
|
87
|
+
rbx.platform.typedef.__sig_atomic_t = int
|
88
|
+
rbx.platform.typedef.suseconds_t = long
|
89
|
+
rbx.platform.typedef.__fd_mask = long
|
90
|
+
rbx.platform.typedef.fd_mask = long
|
91
|
+
rbx.platform.typedef.blkcnt_t = long
|
92
|
+
rbx.platform.typedef.fsblkcnt_t = ulong
|
93
|
+
rbx.platform.typedef.fsfilcnt_t = ulong
|
94
|
+
rbx.platform.typedef.pthread_t = ulong
|
95
|
+
rbx.platform.typedef.pthread_key_t = uint
|
96
|
+
rbx.platform.typedef.pthread_once_t = int
|
97
|
+
rbx.platform.typedef.socklen_t = uint
|
98
|
+
rbx.platform.typedef.sa_family_t = ushort
|
99
|
+
rbx.platform.typedef.rlim_t = ulong
|
100
|
+
rbx.platform.typedef.__rlimit_resource_t = int
|
101
|
+
rbx.platform.typedef.__rusage_who_t = int
|
102
|
+
rbx.platform.typedef.__priority_which_t = int
|