ffi 1.11.2-java → 1.13.1-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (98) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data.tar.gz.sig +0 -0
  4. data/.appveyor.yml +30 -0
  5. data/.github/workflows/ci.yml +64 -0
  6. data/.gitignore +25 -0
  7. data/.gitmodules +4 -0
  8. data/.travis.yml +58 -0
  9. data/.yardopts +5 -0
  10. data/CHANGELOG.md +75 -0
  11. data/Gemfile +17 -0
  12. data/LICENSE.SPECS +22 -0
  13. data/README.md +10 -1
  14. data/Rakefile +24 -43
  15. data/ffi.gemspec +43 -0
  16. data/lib/ffi.rb +28 -0
  17. data/lib/ffi/autopointer.rb +203 -0
  18. data/lib/ffi/buffer.rb +4 -0
  19. data/lib/ffi/callback.rb +4 -0
  20. data/lib/ffi/data_converter.rb +67 -0
  21. data/lib/ffi/enum.rb +296 -0
  22. data/lib/ffi/errno.rb +43 -0
  23. data/lib/ffi/ffi.rb +46 -0
  24. data/lib/ffi/io.rb +62 -0
  25. data/lib/ffi/library.rb +592 -0
  26. data/lib/ffi/managedstruct.rb +84 -0
  27. data/lib/ffi/memorypointer.rb +1 -0
  28. data/lib/ffi/platform.rb +179 -0
  29. data/lib/ffi/platform/aarch64-freebsd/types.conf +128 -0
  30. data/lib/ffi/platform/aarch64-freebsd12/types.conf +128 -0
  31. data/lib/ffi/platform/aarch64-linux/types.conf +104 -0
  32. data/lib/ffi/platform/arm-freebsd/types.conf +152 -0
  33. data/lib/ffi/platform/arm-freebsd12/types.conf +152 -0
  34. data/lib/ffi/platform/arm-linux/types.conf +132 -0
  35. data/lib/ffi/platform/i386-cygwin/types.conf +3 -0
  36. data/lib/ffi/platform/i386-darwin/types.conf +100 -0
  37. data/lib/ffi/platform/i386-freebsd/types.conf +152 -0
  38. data/lib/ffi/platform/i386-freebsd12/types.conf +152 -0
  39. data/lib/ffi/platform/i386-gnu/types.conf +107 -0
  40. data/lib/ffi/platform/i386-linux/types.conf +103 -0
  41. data/lib/ffi/platform/i386-netbsd/types.conf +126 -0
  42. data/lib/ffi/platform/i386-openbsd/types.conf +128 -0
  43. data/lib/ffi/platform/i386-solaris/types.conf +122 -0
  44. data/lib/ffi/platform/i386-windows/types.conf +52 -0
  45. data/lib/ffi/platform/ia64-linux/types.conf +104 -0
  46. data/lib/ffi/platform/mips-linux/types.conf +102 -0
  47. data/lib/ffi/platform/mips64-linux/types.conf +104 -0
  48. data/lib/ffi/platform/mips64el-linux/types.conf +104 -0
  49. data/lib/ffi/platform/mipsel-linux/types.conf +102 -0
  50. data/lib/ffi/platform/mipsisa32r6-linux/types.conf +102 -0
  51. data/lib/ffi/platform/mipsisa32r6el-linux/types.conf +102 -0
  52. data/lib/ffi/platform/mipsisa64r6-linux/types.conf +104 -0
  53. data/lib/ffi/platform/mipsisa64r6el-linux/types.conf +104 -0
  54. data/lib/ffi/platform/powerpc-aix/types.conf +180 -0
  55. data/lib/ffi/platform/powerpc-darwin/types.conf +100 -0
  56. data/lib/ffi/platform/powerpc-linux/types.conf +130 -0
  57. data/lib/ffi/platform/powerpc-openbsd/types.conf +156 -0
  58. data/lib/ffi/platform/powerpc64-linux/types.conf +104 -0
  59. data/lib/ffi/platform/s390-linux/types.conf +102 -0
  60. data/lib/ffi/platform/s390x-linux/types.conf +102 -0
  61. data/lib/ffi/platform/sparc-linux/types.conf +102 -0
  62. data/lib/ffi/platform/sparc-solaris/types.conf +128 -0
  63. data/lib/ffi/platform/sparc64-linux/types.conf +102 -0
  64. data/lib/ffi/platform/sparcv9-openbsd/types.conf +156 -0
  65. data/lib/ffi/platform/sparcv9-solaris/types.conf +128 -0
  66. data/lib/ffi/platform/x86_64-cygwin/types.conf +3 -0
  67. data/lib/ffi/platform/x86_64-darwin/types.conf +130 -0
  68. data/lib/ffi/platform/x86_64-dragonflybsd/types.conf +130 -0
  69. data/lib/ffi/platform/x86_64-freebsd/types.conf +128 -0
  70. data/lib/ffi/platform/x86_64-freebsd12/types.conf +158 -0
  71. data/lib/ffi/platform/x86_64-linux/types.conf +132 -0
  72. data/lib/ffi/platform/x86_64-netbsd/types.conf +128 -0
  73. data/lib/ffi/platform/x86_64-openbsd/types.conf +134 -0
  74. data/lib/ffi/platform/x86_64-solaris/types.conf +122 -0
  75. data/lib/ffi/platform/x86_64-windows/types.conf +52 -0
  76. data/lib/ffi/pointer.rb +167 -0
  77. data/lib/ffi/struct.rb +316 -0
  78. data/lib/ffi/struct_by_reference.rb +72 -0
  79. data/lib/ffi/struct_layout.rb +96 -0
  80. data/lib/ffi/struct_layout_builder.rb +227 -0
  81. data/lib/ffi/tools/const_generator.rb +230 -0
  82. data/lib/ffi/tools/generator.rb +105 -0
  83. data/lib/ffi/tools/generator_task.rb +32 -0
  84. data/lib/ffi/tools/struct_generator.rb +194 -0
  85. data/lib/ffi/tools/types_generator.rb +137 -0
  86. data/lib/ffi/types.rb +194 -0
  87. data/lib/ffi/union.rb +43 -0
  88. data/lib/ffi/variadic.rb +78 -0
  89. data/lib/ffi/version.rb +3 -0
  90. data/samples/getlogin.rb +8 -0
  91. data/samples/getpid.rb +8 -0
  92. data/samples/gettimeofday.rb +18 -0
  93. data/samples/hello.rb +8 -0
  94. data/samples/inotify.rb +60 -0
  95. data/samples/pty.rb +75 -0
  96. data/samples/qsort.rb +20 -0
  97. metadata +197 -8
  98. metadata.gz.sig +0 -0
@@ -0,0 +1,102 @@
1
+ rbx.platform.typedef.*__caddr_t = char
2
+ rbx.platform.typedef.*__qaddr_t = long
3
+ rbx.platform.typedef.__blkcnt64_t = long
4
+ rbx.platform.typedef.__blkcnt_t = long
5
+ rbx.platform.typedef.__blksize_t = long
6
+ rbx.platform.typedef.__clock_t = long
7
+ rbx.platform.typedef.__clockid_t = int
8
+ rbx.platform.typedef.__daddr_t = int
9
+ rbx.platform.typedef.__dev_t = ulong
10
+ rbx.platform.typedef.__fd_mask = long
11
+ rbx.platform.typedef.__fsblkcnt64_t = ulong
12
+ rbx.platform.typedef.__fsblkcnt_t = ulong
13
+ rbx.platform.typedef.__fsfilcnt64_t = ulong
14
+ rbx.platform.typedef.__fsfilcnt_t = ulong
15
+ rbx.platform.typedef.__gid_t = uint
16
+ rbx.platform.typedef.__id_t = uint
17
+ rbx.platform.typedef.__ino64_t = ulong
18
+ rbx.platform.typedef.__ino_t = ulong
19
+ rbx.platform.typedef.__int16_t = short
20
+ rbx.platform.typedef.__int32_t = int
21
+ rbx.platform.typedef.__int64_t = long
22
+ rbx.platform.typedef.__int8_t = char
23
+ rbx.platform.typedef.__intptr_t = long
24
+ rbx.platform.typedef.__key_t = int
25
+ rbx.platform.typedef.__loff_t = long
26
+ rbx.platform.typedef.__mode_t = uint
27
+ rbx.platform.typedef.__nlink_t = uint
28
+ rbx.platform.typedef.__off64_t = long
29
+ rbx.platform.typedef.__off_t = long
30
+ rbx.platform.typedef.__pid_t = int
31
+ rbx.platform.typedef.__priority_which_t = int
32
+ rbx.platform.typedef.__quad_t = long
33
+ rbx.platform.typedef.__rlim64_t = ulong
34
+ rbx.platform.typedef.__rlim_t = ulong
35
+ rbx.platform.typedef.__rlimit_resource_t = int
36
+ rbx.platform.typedef.__rusage_who_t = int
37
+ rbx.platform.typedef.__sig_atomic_t = int
38
+ rbx.platform.typedef.__socklen_t = uint
39
+ rbx.platform.typedef.__ssize_t = long
40
+ rbx.platform.typedef.__suseconds_t = int
41
+ rbx.platform.typedef.__swblk_t = long
42
+ rbx.platform.typedef.__time_t = long
43
+ rbx.platform.typedef.__timer_t = pointer
44
+ rbx.platform.typedef.__u_char = uchar
45
+ rbx.platform.typedef.__u_int = uint
46
+ rbx.platform.typedef.__u_long = ulong
47
+ rbx.platform.typedef.__u_quad_t = ulong
48
+ rbx.platform.typedef.__u_short = ushort
49
+ rbx.platform.typedef.__uid_t = uint
50
+ rbx.platform.typedef.__uint16_t = ushort
51
+ rbx.platform.typedef.__uint32_t = uint
52
+ rbx.platform.typedef.__uint64_t = ulong
53
+ rbx.platform.typedef.__uint8_t = uchar
54
+ rbx.platform.typedef.__useconds_t = uint
55
+ rbx.platform.typedef.blkcnt_t = long
56
+ rbx.platform.typedef.blksize_t = long
57
+ rbx.platform.typedef.clock_t = long
58
+ rbx.platform.typedef.clockid_t = int
59
+ rbx.platform.typedef.daddr_t = int
60
+ rbx.platform.typedef.dev_t = ulong
61
+ rbx.platform.typedef.fd_mask = long
62
+ rbx.platform.typedef.fsblkcnt_t = ulong
63
+ rbx.platform.typedef.fsfilcnt_t = ulong
64
+ rbx.platform.typedef.gid_t = uint
65
+ rbx.platform.typedef.id_t = uint
66
+ rbx.platform.typedef.ino_t = ulong
67
+ rbx.platform.typedef.int16_t = short
68
+ rbx.platform.typedef.int32_t = int
69
+ rbx.platform.typedef.int64_t = long_long
70
+ rbx.platform.typedef.int8_t = char
71
+ rbx.platform.typedef.key_t = int
72
+ rbx.platform.typedef.loff_t = long
73
+ rbx.platform.typedef.mode_t = uint
74
+ rbx.platform.typedef.nlink_t = uint
75
+ rbx.platform.typedef.off_t = long
76
+ rbx.platform.typedef.pid_t = int
77
+ rbx.platform.typedef.pthread_key_t = uint
78
+ rbx.platform.typedef.pthread_once_t = int
79
+ rbx.platform.typedef.pthread_t = ulong
80
+ rbx.platform.typedef.quad_t = long
81
+ rbx.platform.typedef.register_t = long
82
+ rbx.platform.typedef.rlim_t = ulong
83
+ rbx.platform.typedef.sa_family_t = ushort
84
+ rbx.platform.typedef.size_t = ulong
85
+ rbx.platform.typedef.socklen_t = uint
86
+ rbx.platform.typedef.ssize_t = long
87
+ rbx.platform.typedef.suseconds_t = int
88
+ rbx.platform.typedef.time_t = long
89
+ rbx.platform.typedef.timer_t = pointer
90
+ rbx.platform.typedef.u_char = uchar
91
+ rbx.platform.typedef.u_int = uint
92
+ rbx.platform.typedef.u_int16_t = ushort
93
+ rbx.platform.typedef.u_int32_t = uint
94
+ rbx.platform.typedef.u_int64_t = ulong_long
95
+ rbx.platform.typedef.u_int8_t = uchar
96
+ rbx.platform.typedef.u_long = ulong
97
+ rbx.platform.typedef.u_quad_t = ulong
98
+ rbx.platform.typedef.u_short = ushort
99
+ rbx.platform.typedef.uid_t = uint
100
+ rbx.platform.typedef.uint = uint
101
+ rbx.platform.typedef.ulong = ulong
102
+ rbx.platform.typedef.ushort = ushort
@@ -0,0 +1,156 @@
1
+ rbx.platform.typedef.__blkcnt_t = long_long
2
+ rbx.platform.typedef.__blksize_t = int
3
+ rbx.platform.typedef.__clock_t = long_long
4
+ rbx.platform.typedef.__clockid_t = int
5
+ rbx.platform.typedef.__cpuid_t = ulong
6
+ rbx.platform.typedef.__dev_t = int
7
+ rbx.platform.typedef.__fd_mask = uint
8
+ rbx.platform.typedef.__fixpt_t = uint
9
+ rbx.platform.typedef.__fsblkcnt_t = ulong_long
10
+ rbx.platform.typedef.__fsfilcnt_t = ulong_long
11
+ rbx.platform.typedef.__gid_t = uint
12
+ rbx.platform.typedef.__id_t = uint
13
+ rbx.platform.typedef.__in_addr_t = uint
14
+ rbx.platform.typedef.__in_port_t = ushort
15
+ rbx.platform.typedef.__ino_t = ulong_long
16
+ rbx.platform.typedef.__int16_t = short
17
+ rbx.platform.typedef.__int32_t = int
18
+ rbx.platform.typedef.__int64_t = long_long
19
+ rbx.platform.typedef.__int8_t = char
20
+ rbx.platform.typedef.__int_fast16_t = int
21
+ rbx.platform.typedef.__int_fast32_t = int
22
+ rbx.platform.typedef.__int_fast64_t = long_long
23
+ rbx.platform.typedef.__int_fast8_t = int
24
+ rbx.platform.typedef.__int_least16_t = short
25
+ rbx.platform.typedef.__int_least32_t = int
26
+ rbx.platform.typedef.__int_least64_t = long_long
27
+ rbx.platform.typedef.__int_least8_t = char
28
+ rbx.platform.typedef.__intmax_t = long_long
29
+ rbx.platform.typedef.__intptr_t = long
30
+ rbx.platform.typedef.__key_t = long
31
+ rbx.platform.typedef.__mode_t = uint
32
+ rbx.platform.typedef.__nlink_t = uint
33
+ rbx.platform.typedef.__off_t = long_long
34
+ rbx.platform.typedef.__paddr_t = ulong
35
+ rbx.platform.typedef.__pid_t = int
36
+ rbx.platform.typedef.__psize_t = ulong
37
+ rbx.platform.typedef.__ptrdiff_t = long
38
+ rbx.platform.typedef.__register_t = long
39
+ rbx.platform.typedef.__rlim_t = ulong_long
40
+ rbx.platform.typedef.__rune_t = int
41
+ rbx.platform.typedef.__sa_family_t = uchar
42
+ rbx.platform.typedef.__segsz_t = int
43
+ rbx.platform.typedef.__size_t = ulong
44
+ rbx.platform.typedef.__socklen_t = uint
45
+ rbx.platform.typedef.__ssize_t = long
46
+ rbx.platform.typedef.__suseconds_t = long
47
+ rbx.platform.typedef.__swblk_t = int
48
+ rbx.platform.typedef.__time_t = long_long
49
+ rbx.platform.typedef.__timer_t = int
50
+ rbx.platform.typedef.__uid_t = uint
51
+ rbx.platform.typedef.__uint16_t = ushort
52
+ rbx.platform.typedef.__uint32_t = uint
53
+ rbx.platform.typedef.__uint64_t = ulong_long
54
+ rbx.platform.typedef.__uint8_t = uchar
55
+ rbx.platform.typedef.__uint_fast16_t = uint
56
+ rbx.platform.typedef.__uint_fast32_t = uint
57
+ rbx.platform.typedef.__uint_fast64_t = ulong_long
58
+ rbx.platform.typedef.__uint_fast8_t = uint
59
+ rbx.platform.typedef.__uint_least16_t = ushort
60
+ rbx.platform.typedef.__uint_least32_t = uint
61
+ rbx.platform.typedef.__uint_least64_t = ulong_long
62
+ rbx.platform.typedef.__uint_least8_t = uchar
63
+ rbx.platform.typedef.__uintmax_t = ulong_long
64
+ rbx.platform.typedef.__uintptr_t = ulong
65
+ rbx.platform.typedef.__useconds_t = uint
66
+ rbx.platform.typedef.__vaddr_t = ulong
67
+ rbx.platform.typedef.__vsize_t = ulong
68
+ rbx.platform.typedef.__wchar_t = int
69
+ rbx.platform.typedef.__wctrans_t = pointer
70
+ rbx.platform.typedef.__wctype_t = pointer
71
+ rbx.platform.typedef.__wint_t = int
72
+ rbx.platform.typedef.blkcnt_t = long_long
73
+ rbx.platform.typedef.blksize_t = int
74
+ rbx.platform.typedef.caddr_t = string
75
+ rbx.platform.typedef.clock_t = long_long
76
+ rbx.platform.typedef.clockid_t = int
77
+ rbx.platform.typedef.cpuid_t = ulong
78
+ rbx.platform.typedef.daddr32_t = int
79
+ rbx.platform.typedef.daddr_t = long_long
80
+ rbx.platform.typedef.dev_t = int
81
+ rbx.platform.typedef.fixpt_t = uint
82
+ rbx.platform.typedef.fsblkcnt_t = ulong_long
83
+ rbx.platform.typedef.fsfilcnt_t = ulong_long
84
+ rbx.platform.typedef.gid_t = uint
85
+ rbx.platform.typedef.id_t = uint
86
+ rbx.platform.typedef.in_addr_t = uint
87
+ rbx.platform.typedef.in_port_t = ushort
88
+ rbx.platform.typedef.ino_t = ulong_long
89
+ rbx.platform.typedef.int16_t = short
90
+ rbx.platform.typedef.int32_t = int
91
+ rbx.platform.typedef.int64_t = long_long
92
+ rbx.platform.typedef.int8_t = char
93
+ rbx.platform.typedef.int_fast16_t = int
94
+ rbx.platform.typedef.int_fast32_t = int
95
+ rbx.platform.typedef.int_fast64_t = long_long
96
+ rbx.platform.typedef.int_fast8_t = int
97
+ rbx.platform.typedef.int_least16_t = short
98
+ rbx.platform.typedef.int_least32_t = int
99
+ rbx.platform.typedef.int_least64_t = long_long
100
+ rbx.platform.typedef.int_least8_t = char
101
+ rbx.platform.typedef.intmax_t = long_long
102
+ rbx.platform.typedef.intptr_t = long
103
+ rbx.platform.typedef.key_t = long
104
+ rbx.platform.typedef.mode_t = uint
105
+ rbx.platform.typedef.nlink_t = uint
106
+ rbx.platform.typedef.off_t = long_long
107
+ rbx.platform.typedef.paddr_t = ulong
108
+ rbx.platform.typedef.pid_t = int
109
+ rbx.platform.typedef.psize_t = ulong
110
+ rbx.platform.typedef.ptrdiff_t = long
111
+ rbx.platform.typedef.quad_t = long_long
112
+ rbx.platform.typedef.register_t = long
113
+ rbx.platform.typedef.rlim_t = ulong_long
114
+ rbx.platform.typedef.sa_family_t = uchar
115
+ rbx.platform.typedef.segsz_t = int
116
+ rbx.platform.typedef.sigset_t = uint
117
+ rbx.platform.typedef.size_t = ulong
118
+ rbx.platform.typedef.socklen_t = uint
119
+ rbx.platform.typedef.ssize_t = long
120
+ rbx.platform.typedef.suseconds_t = long
121
+ rbx.platform.typedef.swblk_t = int
122
+ rbx.platform.typedef.time_t = long_long
123
+ rbx.platform.typedef.timer_t = int
124
+ rbx.platform.typedef.u_char = uchar
125
+ rbx.platform.typedef.u_int = uint
126
+ rbx.platform.typedef.u_int16_t = ushort
127
+ rbx.platform.typedef.u_int32_t = uint
128
+ rbx.platform.typedef.u_int64_t = ulong_long
129
+ rbx.platform.typedef.u_int8_t = uchar
130
+ rbx.platform.typedef.u_long = ulong
131
+ rbx.platform.typedef.u_quad_t = ulong_long
132
+ rbx.platform.typedef.u_short = ushort
133
+ rbx.platform.typedef.uid_t = uint
134
+ rbx.platform.typedef.uint = uint
135
+ rbx.platform.typedef.uint16_t = ushort
136
+ rbx.platform.typedef.uint32_t = uint
137
+ rbx.platform.typedef.uint64_t = ulong_long
138
+ rbx.platform.typedef.uint8_t = uchar
139
+ rbx.platform.typedef.uint_fast16_t = uint
140
+ rbx.platform.typedef.uint_fast32_t = uint
141
+ rbx.platform.typedef.uint_fast64_t = ulong_long
142
+ rbx.platform.typedef.uint_fast8_t = uint
143
+ rbx.platform.typedef.uint_least16_t = ushort
144
+ rbx.platform.typedef.uint_least32_t = uint
145
+ rbx.platform.typedef.uint_least64_t = ulong_long
146
+ rbx.platform.typedef.uint_least8_t = uchar
147
+ rbx.platform.typedef.uintmax_t = ulong_long
148
+ rbx.platform.typedef.uintptr_t = ulong
149
+ rbx.platform.typedef.ulong = ulong
150
+ rbx.platform.typedef.unchar = uchar
151
+ rbx.platform.typedef.useconds_t = uint
152
+ rbx.platform.typedef.ushort = ushort
153
+ rbx.platform.typedef.vaddr_t = ulong
154
+ rbx.platform.typedef.vsize_t = ulong
155
+ rbx.platform.typedef.wchar_t = int
156
+ rbx.platform.typedef.wint_t = int
@@ -0,0 +1,128 @@
1
+ rbx.platform.typedef.() = pointer
2
+ rbx.platform.typedef.*caddr_t = char
3
+ rbx.platform.typedef.Psocklen_t = pointer
4
+ rbx.platform.typedef.avl_index_t = uint
5
+ rbx.platform.typedef.blkcnt64_t = long_long
6
+ rbx.platform.typedef.blkcnt_t = long_long
7
+ rbx.platform.typedef.blksize_t = long
8
+ rbx.platform.typedef.clock_t = long
9
+ rbx.platform.typedef.clockid_t = int
10
+ rbx.platform.typedef.cnt_t = short
11
+ rbx.platform.typedef.cpu_flag_t = ushort
12
+ rbx.platform.typedef.ctid_t = long
13
+ rbx.platform.typedef.daddr_t = long
14
+ rbx.platform.typedef.dev_t = ulong
15
+ rbx.platform.typedef.diskaddr_t = ulong_long
16
+ rbx.platform.typedef.disp_lock_t = uchar
17
+ rbx.platform.typedef.fd_mask = long
18
+ rbx.platform.typedef.fds_mask = long
19
+ rbx.platform.typedef.fsblkcnt64_t = ulong_long
20
+ rbx.platform.typedef.fsblkcnt_t = ulong_long
21
+ rbx.platform.typedef.fsfilcnt64_t = ulong_long
22
+ rbx.platform.typedef.fsfilcnt_t = ulong_long
23
+ rbx.platform.typedef.gid_t = long
24
+ rbx.platform.typedef.hrtime_t = long_long
25
+ rbx.platform.typedef.id_t = long
26
+ rbx.platform.typedef.in_addr_t = uint
27
+ rbx.platform.typedef.in_port_t = ushort
28
+ rbx.platform.typedef.index_t = short
29
+ rbx.platform.typedef.ino64_t = ulong_long
30
+ rbx.platform.typedef.ino_t = ulong_long
31
+ rbx.platform.typedef.int) = pointer
32
+ rbx.platform.typedef.int) = pointer
33
+ rbx.platform.typedef.int16_t = short
34
+ rbx.platform.typedef.int32_t = int
35
+ rbx.platform.typedef.int64_t = long_long
36
+ rbx.platform.typedef.int8_t = char
37
+ rbx.platform.typedef.int_fast16_t = int
38
+ rbx.platform.typedef.int_fast32_t = int
39
+ rbx.platform.typedef.int_fast64_t = long_long
40
+ rbx.platform.typedef.int_fast8_t = char
41
+ rbx.platform.typedef.int_least16_t = short
42
+ rbx.platform.typedef.int_least32_t = int
43
+ rbx.platform.typedef.int_least64_t = long_long
44
+ rbx.platform.typedef.int_least8_t = char
45
+ rbx.platform.typedef.intmax_t = long_long
46
+ rbx.platform.typedef.intptr_t = int
47
+ rbx.platform.typedef.ipaddr_t = uint
48
+ rbx.platform.typedef.k_fltset_t = uint
49
+ rbx.platform.typedef.key_t = int
50
+ rbx.platform.typedef.kid_t = int
51
+ rbx.platform.typedef.len_t = ulong_long
52
+ rbx.platform.typedef.lock_t = uchar
53
+ rbx.platform.typedef.longlong_t = long_long
54
+ rbx.platform.typedef.major_t = ulong
55
+ rbx.platform.typedef.minor_t = ulong
56
+ rbx.platform.typedef.mode_t = ulong
57
+ rbx.platform.typedef.model_t = uint
58
+ rbx.platform.typedef.nfds_t = ulong
59
+ rbx.platform.typedef.nlink_t = ulong
60
+ rbx.platform.typedef.o_dev_t = short
61
+ rbx.platform.typedef.o_gid_t = ushort
62
+ rbx.platform.typedef.o_ino_t = ushort
63
+ rbx.platform.typedef.o_mode_t = ushort
64
+ rbx.platform.typedef.o_nlink_t = short
65
+ rbx.platform.typedef.o_pid_t = short
66
+ rbx.platform.typedef.o_uid_t = ushort
67
+ rbx.platform.typedef.off64_t = long_long
68
+ rbx.platform.typedef.off_t = long_long
69
+ rbx.platform.typedef.offset_t = long_long
70
+ rbx.platform.typedef.pad64_t = long_long
71
+ rbx.platform.typedef.pfn_t = ulong
72
+ rbx.platform.typedef.pgcnt_t = ulong
73
+ rbx.platform.typedef.pid_t = long
74
+ rbx.platform.typedef.poolid_t = long
75
+ rbx.platform.typedef.pri_t = short
76
+ rbx.platform.typedef.projid_t = long
77
+ rbx.platform.typedef.pthread_key_t = uint
78
+ rbx.platform.typedef.pthread_t = uint
79
+ rbx.platform.typedef.ptrdiff_t = int
80
+ rbx.platform.typedef.rlim64_t = ulong_long
81
+ rbx.platform.typedef.rlim_t = ulong_long
82
+ rbx.platform.typedef.sa_family_t = ushort
83
+ rbx.platform.typedef.size_t = uint
84
+ rbx.platform.typedef.size_t) = pointer
85
+ rbx.platform.typedef.socklen_t = uint
86
+ rbx.platform.typedef.spgcnt_t = long
87
+ rbx.platform.typedef.ssize_t = int
88
+ rbx.platform.typedef.suseconds_t = long
89
+ rbx.platform.typedef.sysid_t = short
90
+ rbx.platform.typedef.t_scalar_t = long
91
+ rbx.platform.typedef.t_uscalar_t = ulong
92
+ rbx.platform.typedef.taskid_t = long
93
+ rbx.platform.typedef.time_t = long
94
+ rbx.platform.typedef.timer_t = int
95
+ rbx.platform.typedef.ts_t = long_long
96
+ rbx.platform.typedef.u_char = uchar
97
+ rbx.platform.typedef.u_int = uint
98
+ rbx.platform.typedef.u_long = ulong
99
+ rbx.platform.typedef.u_longlong_t = ulong_long
100
+ rbx.platform.typedef.u_offset_t = ulong_long
101
+ rbx.platform.typedef.u_short = ushort
102
+ rbx.platform.typedef.uchar_t = uchar
103
+ rbx.platform.typedef.uid_t = long
104
+ rbx.platform.typedef.uint = uint
105
+ rbx.platform.typedef.uint16_t = ushort
106
+ rbx.platform.typedef.uint32_t = uint
107
+ rbx.platform.typedef.uint64_t = ulong_long
108
+ rbx.platform.typedef.uint8_t = uchar
109
+ rbx.platform.typedef.uint_fast16_t = uint
110
+ rbx.platform.typedef.uint_fast32_t = uint
111
+ rbx.platform.typedef.uint_fast64_t = ulong_long
112
+ rbx.platform.typedef.uint_fast8_t = uchar
113
+ rbx.platform.typedef.uint_least16_t = ushort
114
+ rbx.platform.typedef.uint_least32_t = uint
115
+ rbx.platform.typedef.uint_least64_t = ulong_long
116
+ rbx.platform.typedef.uint_least8_t = uchar
117
+ rbx.platform.typedef.uint_t = uint
118
+ rbx.platform.typedef.uintmax_t = ulong_long
119
+ rbx.platform.typedef.uintptr_t = uint
120
+ rbx.platform.typedef.ulong = ulong
121
+ rbx.platform.typedef.ulong_t = ulong
122
+ rbx.platform.typedef.unchar = uchar
123
+ rbx.platform.typedef.upad64_t = ulong_long
124
+ rbx.platform.typedef.use_t = uchar
125
+ rbx.platform.typedef.useconds_t = uint
126
+ rbx.platform.typedef.ushort = ushort
127
+ rbx.platform.typedef.ushort_t = ushort
128
+ rbx.platform.typedef.zoneid_t = long
@@ -0,0 +1,3 @@
1
+ rbx.platform.typedef.ptrdiff_t = int64
2
+ rbx.platform.typedef.size_t = uint64
3
+ rbx.platform.typedef.ssize_t = int64
@@ -0,0 +1,130 @@
1
+ rbx.platform.typedef.__darwin_blkcnt_t = long_long
2
+ rbx.platform.typedef.__darwin_blksize_t = int
3
+ rbx.platform.typedef.__darwin_clock_t = ulong
4
+ rbx.platform.typedef.__darwin_ct_rune_t = int
5
+ rbx.platform.typedef.__darwin_dev_t = int
6
+ rbx.platform.typedef.__darwin_fsblkcnt_t = uint
7
+ rbx.platform.typedef.__darwin_fsfilcnt_t = uint
8
+ rbx.platform.typedef.__darwin_gid_t = uint
9
+ rbx.platform.typedef.__darwin_id_t = uint
10
+ rbx.platform.typedef.__darwin_ino64_t = ulong_long
11
+ rbx.platform.typedef.__darwin_ino_t = ulong_long
12
+ rbx.platform.typedef.__darwin_intptr_t = long
13
+ rbx.platform.typedef.__darwin_mach_port_name_t = uint
14
+ rbx.platform.typedef.__darwin_mach_port_t = uint
15
+ rbx.platform.typedef.__darwin_mode_t = ushort
16
+ rbx.platform.typedef.__darwin_natural_t = uint
17
+ rbx.platform.typedef.__darwin_off_t = long_long
18
+ rbx.platform.typedef.__darwin_pid_t = int
19
+ rbx.platform.typedef.__darwin_pthread_key_t = ulong
20
+ rbx.platform.typedef.__darwin_ptrdiff_t = long
21
+ rbx.platform.typedef.__darwin_rune_t = int
22
+ rbx.platform.typedef.__darwin_sigset_t = uint
23
+ rbx.platform.typedef.__darwin_size_t = ulong
24
+ rbx.platform.typedef.__darwin_socklen_t = uint
25
+ rbx.platform.typedef.__darwin_ssize_t = long
26
+ rbx.platform.typedef.__darwin_suseconds_t = int
27
+ rbx.platform.typedef.__darwin_time_t = long
28
+ rbx.platform.typedef.__darwin_uid_t = uint
29
+ rbx.platform.typedef.__darwin_useconds_t = uint
30
+ rbx.platform.typedef.__darwin_uuid_string_t[37] = char
31
+ rbx.platform.typedef.__darwin_uuid_t[16] = uchar
32
+ rbx.platform.typedef.__darwin_wchar_t = int
33
+ rbx.platform.typedef.__darwin_wint_t = int
34
+ rbx.platform.typedef.__int16_t = short
35
+ rbx.platform.typedef.__int32_t = int
36
+ rbx.platform.typedef.__int64_t = long_long
37
+ rbx.platform.typedef.__int8_t = char
38
+ rbx.platform.typedef.__uint16_t = ushort
39
+ rbx.platform.typedef.__uint32_t = uint
40
+ rbx.platform.typedef.__uint64_t = ulong_long
41
+ rbx.platform.typedef.__uint8_t = uchar
42
+ rbx.platform.typedef.blkcnt_t = long_long
43
+ rbx.platform.typedef.blksize_t = int
44
+ rbx.platform.typedef.caddr_t = string
45
+ rbx.platform.typedef.clock_t = ulong
46
+ rbx.platform.typedef.daddr_t = int
47
+ rbx.platform.typedef.dev_t = int
48
+ rbx.platform.typedef.errno_t = int
49
+ rbx.platform.typedef.fd_mask = int
50
+ rbx.platform.typedef.fixpt_t = uint
51
+ rbx.platform.typedef.fsblkcnt_t = uint
52
+ rbx.platform.typedef.fsfilcnt_t = uint
53
+ rbx.platform.typedef.gid_t = uint
54
+ rbx.platform.typedef.id_t = uint
55
+ rbx.platform.typedef.in_addr_t = uint
56
+ rbx.platform.typedef.in_port_t = ushort
57
+ rbx.platform.typedef.ino64_t = ulong_long
58
+ rbx.platform.typedef.ino_t = ulong_long
59
+ rbx.platform.typedef.int16_t = short
60
+ rbx.platform.typedef.int32_t = int
61
+ rbx.platform.typedef.int64_t = long_long
62
+ rbx.platform.typedef.int8_t = char
63
+ rbx.platform.typedef.int_fast16_t = short
64
+ rbx.platform.typedef.int_fast32_t = int
65
+ rbx.platform.typedef.int_fast64_t = long_long
66
+ rbx.platform.typedef.int_fast8_t = char
67
+ rbx.platform.typedef.int_least16_t = short
68
+ rbx.platform.typedef.int_least32_t = int
69
+ rbx.platform.typedef.int_least64_t = long_long
70
+ rbx.platform.typedef.int_least8_t = char
71
+ rbx.platform.typedef.intmax_t = long
72
+ rbx.platform.typedef.intptr_t = long
73
+ rbx.platform.typedef.key_t = int
74
+ rbx.platform.typedef.mode_t = ushort
75
+ rbx.platform.typedef.nlink_t = ushort
76
+ rbx.platform.typedef.off_t = long_long
77
+ rbx.platform.typedef.pid_t = int
78
+ rbx.platform.typedef.pthread_key_t = ulong
79
+ rbx.platform.typedef.ptrdiff_t = long
80
+ rbx.platform.typedef.qaddr_t = pointer
81
+ rbx.platform.typedef.quad_t = long_long
82
+ rbx.platform.typedef.register_t = long_long
83
+ rbx.platform.typedef.rlim_t = ulong_long
84
+ rbx.platform.typedef.rsize_t = ulong
85
+ rbx.platform.typedef.sa_family_t = uchar
86
+ rbx.platform.typedef.sae_associd_t = uint
87
+ rbx.platform.typedef.sae_connid_t = uint
88
+ rbx.platform.typedef.segsz_t = int
89
+ rbx.platform.typedef.size_t = ulong
90
+ rbx.platform.typedef.socklen_t = uint
91
+ rbx.platform.typedef.ssize_t = long
92
+ rbx.platform.typedef.suseconds_t = int
93
+ rbx.platform.typedef.swblk_t = int
94
+ rbx.platform.typedef.syscall_arg_t = ulong_long
95
+ rbx.platform.typedef.time_t = long
96
+ rbx.platform.typedef.u_char = uchar
97
+ rbx.platform.typedef.u_int = uint
98
+ rbx.platform.typedef.u_int16_t = ushort
99
+ rbx.platform.typedef.u_int32_t = uint
100
+ rbx.platform.typedef.u_int64_t = ulong_long
101
+ rbx.platform.typedef.u_int8_t = uchar
102
+ rbx.platform.typedef.u_long = ulong
103
+ rbx.platform.typedef.u_quad_t = ulong_long
104
+ rbx.platform.typedef.u_short = ushort
105
+ rbx.platform.typedef.uid_t = uint
106
+ rbx.platform.typedef.uint = uint
107
+ rbx.platform.typedef.uint16_t = ushort
108
+ rbx.platform.typedef.uint32_t = uint
109
+ rbx.platform.typedef.uint64_t = ulong_long
110
+ rbx.platform.typedef.uint8_t = uchar
111
+ rbx.platform.typedef.uint_fast16_t = ushort
112
+ rbx.platform.typedef.uint_fast32_t = uint
113
+ rbx.platform.typedef.uint_fast64_t = ulong_long
114
+ rbx.platform.typedef.uint_fast8_t = uchar
115
+ rbx.platform.typedef.uint_least16_t = ushort
116
+ rbx.platform.typedef.uint_least32_t = uint
117
+ rbx.platform.typedef.uint_least64_t = ulong_long
118
+ rbx.platform.typedef.uint_least8_t = uchar
119
+ rbx.platform.typedef.uintmax_t = ulong
120
+ rbx.platform.typedef.uintptr_t = ulong
121
+ rbx.platform.typedef.useconds_t = uint
122
+ rbx.platform.typedef.user_addr_t = ulong_long
123
+ rbx.platform.typedef.user_long_t = long_long
124
+ rbx.platform.typedef.user_off_t = long_long
125
+ rbx.platform.typedef.user_size_t = ulong_long
126
+ rbx.platform.typedef.user_ssize_t = long_long
127
+ rbx.platform.typedef.user_time_t = long_long
128
+ rbx.platform.typedef.user_ulong_t = ulong_long
129
+ rbx.platform.typedef.ushort = ushort
130
+ rbx.platform.typedef.wchar_t = int