ffi 1.17.0.rc1-x86_64-linux-gnu

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 (134) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +442 -0
  3. data/COPYING +49 -0
  4. data/Gemfile +21 -0
  5. data/LICENSE +24 -0
  6. data/LICENSE.SPECS +22 -0
  7. data/README.md +137 -0
  8. data/Rakefile +206 -0
  9. data/ffi.gemspec +42 -0
  10. data/lib/2.5/ffi_c.so +0 -0
  11. data/lib/2.6/ffi_c.so +0 -0
  12. data/lib/2.7/ffi_c.so +0 -0
  13. data/lib/3.0/ffi_c.so +0 -0
  14. data/lib/3.1/ffi_c.so +0 -0
  15. data/lib/3.2/ffi_c.so +0 -0
  16. data/lib/3.3/ffi_c.so +0 -0
  17. data/lib/ffi/abstract_memory.rb +44 -0
  18. data/lib/ffi/autopointer.rb +188 -0
  19. data/lib/ffi/buffer.rb +4 -0
  20. data/lib/ffi/callback.rb +4 -0
  21. data/lib/ffi/compat.rb +43 -0
  22. data/lib/ffi/data_converter.rb +67 -0
  23. data/lib/ffi/dynamic_library.rb +118 -0
  24. data/lib/ffi/enum.rb +302 -0
  25. data/lib/ffi/errno.rb +43 -0
  26. data/lib/ffi/ffi.rb +50 -0
  27. data/lib/ffi/function.rb +71 -0
  28. data/lib/ffi/io.rb +62 -0
  29. data/lib/ffi/library.rb +576 -0
  30. data/lib/ffi/library_path.rb +109 -0
  31. data/lib/ffi/managedstruct.rb +84 -0
  32. data/lib/ffi/memorypointer.rb +1 -0
  33. data/lib/ffi/platform/aarch64-darwin/types.conf +130 -0
  34. data/lib/ffi/platform/aarch64-freebsd/types.conf +128 -0
  35. data/lib/ffi/platform/aarch64-freebsd12/types.conf +181 -0
  36. data/lib/ffi/platform/aarch64-linux/types.conf +175 -0
  37. data/lib/ffi/platform/aarch64-openbsd/types.conf +134 -0
  38. data/lib/ffi/platform/aarch64-windows/types.conf +52 -0
  39. data/lib/ffi/platform/arm-freebsd/types.conf +152 -0
  40. data/lib/ffi/platform/arm-freebsd12/types.conf +152 -0
  41. data/lib/ffi/platform/arm-linux/types.conf +132 -0
  42. data/lib/ffi/platform/hppa1.1-linux/types.conf +178 -0
  43. data/lib/ffi/platform/hppa2.0-linux/types.conf +178 -0
  44. data/lib/ffi/platform/i386-cygwin/types.conf +3 -0
  45. data/lib/ffi/platform/i386-darwin/types.conf +100 -0
  46. data/lib/ffi/platform/i386-freebsd/types.conf +152 -0
  47. data/lib/ffi/platform/i386-freebsd12/types.conf +152 -0
  48. data/lib/ffi/platform/i386-gnu/types.conf +107 -0
  49. data/lib/ffi/platform/i386-linux/types.conf +103 -0
  50. data/lib/ffi/platform/i386-netbsd/types.conf +126 -0
  51. data/lib/ffi/platform/i386-openbsd/types.conf +128 -0
  52. data/lib/ffi/platform/i386-solaris/types.conf +122 -0
  53. data/lib/ffi/platform/i386-windows/types.conf +52 -0
  54. data/lib/ffi/platform/ia64-linux/types.conf +104 -0
  55. data/lib/ffi/platform/loongarch64-linux/types.conf +141 -0
  56. data/lib/ffi/platform/mips-linux/types.conf +102 -0
  57. data/lib/ffi/platform/mips64-linux/types.conf +104 -0
  58. data/lib/ffi/platform/mips64el-linux/types.conf +104 -0
  59. data/lib/ffi/platform/mipsel-linux/types.conf +102 -0
  60. data/lib/ffi/platform/mipsisa32r6-linux/types.conf +102 -0
  61. data/lib/ffi/platform/mipsisa32r6el-linux/types.conf +102 -0
  62. data/lib/ffi/platform/mipsisa64r6-linux/types.conf +104 -0
  63. data/lib/ffi/platform/mipsisa64r6el-linux/types.conf +104 -0
  64. data/lib/ffi/platform/powerpc-aix/types.conf +180 -0
  65. data/lib/ffi/platform/powerpc-darwin/types.conf +100 -0
  66. data/lib/ffi/platform/powerpc-linux/types.conf +130 -0
  67. data/lib/ffi/platform/powerpc-openbsd/types.conf +156 -0
  68. data/lib/ffi/platform/powerpc64-linux/types.conf +104 -0
  69. data/lib/ffi/platform/powerpc64le-linux/types.conf +100 -0
  70. data/lib/ffi/platform/riscv64-linux/types.conf +104 -0
  71. data/lib/ffi/platform/s390-linux/types.conf +102 -0
  72. data/lib/ffi/platform/s390x-linux/types.conf +102 -0
  73. data/lib/ffi/platform/sparc-linux/types.conf +102 -0
  74. data/lib/ffi/platform/sparc-solaris/types.conf +128 -0
  75. data/lib/ffi/platform/sparcv9-linux/types.conf +102 -0
  76. data/lib/ffi/platform/sparcv9-openbsd/types.conf +156 -0
  77. data/lib/ffi/platform/sparcv9-solaris/types.conf +128 -0
  78. data/lib/ffi/platform/sw_64-linux/types.conf +141 -0
  79. data/lib/ffi/platform/x86_64-cygwin/types.conf +3 -0
  80. data/lib/ffi/platform/x86_64-darwin/types.conf +130 -0
  81. data/lib/ffi/platform/x86_64-dragonflybsd/types.conf +130 -0
  82. data/lib/ffi/platform/x86_64-freebsd/types.conf +128 -0
  83. data/lib/ffi/platform/x86_64-freebsd12/types.conf +158 -0
  84. data/lib/ffi/platform/x86_64-haiku/types.conf +117 -0
  85. data/lib/ffi/platform/x86_64-linux/types.conf +132 -0
  86. data/lib/ffi/platform/x86_64-msys/types.conf +119 -0
  87. data/lib/ffi/platform/x86_64-netbsd/types.conf +128 -0
  88. data/lib/ffi/platform/x86_64-openbsd/types.conf +134 -0
  89. data/lib/ffi/platform/x86_64-solaris/types.conf +122 -0
  90. data/lib/ffi/platform/x86_64-windows/types.conf +52 -0
  91. data/lib/ffi/platform.rb +187 -0
  92. data/lib/ffi/pointer.rb +167 -0
  93. data/lib/ffi/struct.rb +317 -0
  94. data/lib/ffi/struct_by_reference.rb +72 -0
  95. data/lib/ffi/struct_layout.rb +96 -0
  96. data/lib/ffi/struct_layout_builder.rb +227 -0
  97. data/lib/ffi/tools/const_generator.rb +232 -0
  98. data/lib/ffi/tools/generator.rb +105 -0
  99. data/lib/ffi/tools/generator_task.rb +32 -0
  100. data/lib/ffi/tools/struct_generator.rb +195 -0
  101. data/lib/ffi/tools/types_generator.rb +137 -0
  102. data/lib/ffi/types.rb +222 -0
  103. data/lib/ffi/union.rb +43 -0
  104. data/lib/ffi/variadic.rb +80 -0
  105. data/lib/ffi/version.rb +3 -0
  106. data/lib/ffi.rb +27 -0
  107. data/rakelib/ffi_gem_helper.rb +65 -0
  108. data/samples/getlogin.rb +8 -0
  109. data/samples/getpid.rb +8 -0
  110. data/samples/gettimeofday.rb +18 -0
  111. data/samples/hello.rb +8 -0
  112. data/samples/hello_ractor.rb +11 -0
  113. data/samples/inotify.rb +60 -0
  114. data/samples/pty.rb +75 -0
  115. data/samples/qsort.rb +20 -0
  116. data/samples/qsort_ractor.rb +28 -0
  117. data/sig/ffi/abstract_memory.rbs +164 -0
  118. data/sig/ffi/auto_pointer.rbs +27 -0
  119. data/sig/ffi/buffer.rbs +18 -0
  120. data/sig/ffi/data_converter.rbs +10 -0
  121. data/sig/ffi/dynamic_library.rbs +9 -0
  122. data/sig/ffi/enum.rbs +38 -0
  123. data/sig/ffi/function.rbs +39 -0
  124. data/sig/ffi/library.rbs +42 -0
  125. data/sig/ffi/native_type.rbs +86 -0
  126. data/sig/ffi/pointer.rbs +42 -0
  127. data/sig/ffi/struct.rbs +76 -0
  128. data/sig/ffi/struct_by_reference.rbs +11 -0
  129. data/sig/ffi/struct_by_value.rbs +7 -0
  130. data/sig/ffi/struct_layout.rbs +9 -0
  131. data/sig/ffi/struct_layout_builder.rbs +5 -0
  132. data/sig/ffi/type.rbs +39 -0
  133. data/sig/ffi.rbs +26 -0
  134. metadata +244 -0
@@ -0,0 +1,175 @@
1
+ rbx.platform.typedef.*__caddr_t = char
2
+ rbx.platform.typedef.__blkcnt64_t = long
3
+ rbx.platform.typedef.__blkcnt_t = long
4
+ rbx.platform.typedef.__blksize_t = int
5
+ rbx.platform.typedef.__clock_t = long
6
+ rbx.platform.typedef.__clockid_t = int
7
+ rbx.platform.typedef.__daddr_t = int
8
+ rbx.platform.typedef.__dev_t = ulong
9
+ rbx.platform.typedef.__fd_mask = long
10
+ rbx.platform.typedef.__fsblkcnt64_t = ulong
11
+ rbx.platform.typedef.__fsblkcnt_t = ulong
12
+ rbx.platform.typedef.__fsfilcnt64_t = ulong
13
+ rbx.platform.typedef.__fsfilcnt_t = ulong
14
+ rbx.platform.typedef.__fsword_t = long
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.__int_least16_t = short
24
+ rbx.platform.typedef.__int_least32_t = int
25
+ rbx.platform.typedef.__int_least64_t = long
26
+ rbx.platform.typedef.__int_least8_t = char
27
+ rbx.platform.typedef.__intmax_t = long
28
+ rbx.platform.typedef.__intptr_t = long
29
+ rbx.platform.typedef.__kernel_caddr_t = string
30
+ rbx.platform.typedef.__kernel_clock_t = long
31
+ rbx.platform.typedef.__kernel_clockid_t = int
32
+ rbx.platform.typedef.__kernel_daddr_t = int
33
+ rbx.platform.typedef.__kernel_gid16_t = ushort
34
+ rbx.platform.typedef.__kernel_gid32_t = uint
35
+ rbx.platform.typedef.__kernel_gid_t = uint
36
+ rbx.platform.typedef.__kernel_ino_t = ulong
37
+ rbx.platform.typedef.__kernel_ipc_pid_t = int
38
+ rbx.platform.typedef.__kernel_key_t = int
39
+ rbx.platform.typedef.__kernel_loff_t = long_long
40
+ rbx.platform.typedef.__kernel_long_t = long
41
+ rbx.platform.typedef.__kernel_mode_t = uint
42
+ rbx.platform.typedef.__kernel_mqd_t = int
43
+ rbx.platform.typedef.__kernel_off_t = long
44
+ rbx.platform.typedef.__kernel_old_dev_t = uint
45
+ rbx.platform.typedef.__kernel_old_gid_t = ushort
46
+ rbx.platform.typedef.__kernel_old_time_t = long
47
+ rbx.platform.typedef.__kernel_old_uid_t = ushort
48
+ rbx.platform.typedef.__kernel_pid_t = int
49
+ rbx.platform.typedef.__kernel_ptrdiff_t = long
50
+ rbx.platform.typedef.__kernel_size_t = ulong
51
+ rbx.platform.typedef.__kernel_ssize_t = long
52
+ rbx.platform.typedef.__kernel_suseconds_t = long
53
+ rbx.platform.typedef.__kernel_time64_t = long_long
54
+ rbx.platform.typedef.__kernel_time_t = long
55
+ rbx.platform.typedef.__kernel_timer_t = int
56
+ rbx.platform.typedef.__kernel_uid16_t = ushort
57
+ rbx.platform.typedef.__kernel_uid32_t = uint
58
+ rbx.platform.typedef.__kernel_uid_t = uint
59
+ rbx.platform.typedef.__kernel_ulong_t = ulong
60
+ rbx.platform.typedef.__key_t = int
61
+ rbx.platform.typedef.__loff_t = long
62
+ rbx.platform.typedef.__mode_t = uint
63
+ rbx.platform.typedef.__nlink_t = uint
64
+ rbx.platform.typedef.__off64_t = long
65
+ rbx.platform.typedef.__off_t = long
66
+ rbx.platform.typedef.__pid_t = int
67
+ rbx.platform.typedef.__priority_which_t = int
68
+ rbx.platform.typedef.__quad_t = long
69
+ rbx.platform.typedef.__rlim64_t = ulong
70
+ rbx.platform.typedef.__rlim_t = ulong
71
+ rbx.platform.typedef.__rlimit_resource_t = int
72
+ rbx.platform.typedef.__rusage_who_t = int
73
+ rbx.platform.typedef.__sig_atomic_t = int
74
+ rbx.platform.typedef.__socklen_t = uint
75
+ rbx.platform.typedef.__ssize_t = long
76
+ rbx.platform.typedef.__suseconds64_t = long
77
+ rbx.platform.typedef.__suseconds_t = long
78
+ rbx.platform.typedef.__syscall_slong_t = long
79
+ rbx.platform.typedef.__syscall_ulong_t = ulong
80
+ rbx.platform.typedef.__thrd_t = ulong
81
+ rbx.platform.typedef.__time_t = long
82
+ rbx.platform.typedef.__timer_t = pointer
83
+ rbx.platform.typedef.__tss_t = uint
84
+ rbx.platform.typedef.__u_char = uchar
85
+ rbx.platform.typedef.__u_int = uint
86
+ rbx.platform.typedef.__u_long = ulong
87
+ rbx.platform.typedef.__u_quad_t = ulong
88
+ rbx.platform.typedef.__u_short = ushort
89
+ rbx.platform.typedef.__uid_t = uint
90
+ rbx.platform.typedef.__uint16_t = ushort
91
+ rbx.platform.typedef.__uint32_t = uint
92
+ rbx.platform.typedef.__uint64_t = ulong
93
+ rbx.platform.typedef.__uint8_t = uchar
94
+ rbx.platform.typedef.__uint_least16_t = ushort
95
+ rbx.platform.typedef.__uint_least32_t = uint
96
+ rbx.platform.typedef.__uint_least64_t = ulong
97
+ rbx.platform.typedef.__uint_least8_t = uchar
98
+ rbx.platform.typedef.__uintmax_t = ulong
99
+ rbx.platform.typedef.__useconds_t = uint
100
+ rbx.platform.typedef.blkcnt_t = long
101
+ rbx.platform.typedef.blksize_t = int
102
+ rbx.platform.typedef.clock_t = long
103
+ rbx.platform.typedef.clockid_t = int
104
+ rbx.platform.typedef.daddr_t = int
105
+ rbx.platform.typedef.dev_t = ulong
106
+ rbx.platform.typedef.fd_mask = long
107
+ rbx.platform.typedef.fsblkcnt_t = ulong
108
+ rbx.platform.typedef.fsfilcnt_t = ulong
109
+ rbx.platform.typedef.gid_t = uint
110
+ rbx.platform.typedef.id_t = uint
111
+ rbx.platform.typedef.in_addr_t = uint
112
+ rbx.platform.typedef.in_port_t = ushort
113
+ rbx.platform.typedef.ino_t = ulong
114
+ rbx.platform.typedef.int16_t = short
115
+ rbx.platform.typedef.int32_t = int
116
+ rbx.platform.typedef.int64_t = long
117
+ rbx.platform.typedef.int8_t = char
118
+ rbx.platform.typedef.int_fast16_t = long
119
+ rbx.platform.typedef.int_fast32_t = long
120
+ rbx.platform.typedef.int_fast64_t = long
121
+ rbx.platform.typedef.int_fast8_t = char
122
+ rbx.platform.typedef.int_least16_t = short
123
+ rbx.platform.typedef.int_least32_t = int
124
+ rbx.platform.typedef.int_least64_t = long
125
+ rbx.platform.typedef.int_least8_t = char
126
+ rbx.platform.typedef.intmax_t = long
127
+ rbx.platform.typedef.intptr_t = long
128
+ rbx.platform.typedef.key_t = int
129
+ rbx.platform.typedef.loff_t = long
130
+ rbx.platform.typedef.mode_t = uint
131
+ rbx.platform.typedef.nlink_t = uint
132
+ rbx.platform.typedef.off_t = long
133
+ rbx.platform.typedef.pid_t = int
134
+ rbx.platform.typedef.pthread_key_t = uint
135
+ rbx.platform.typedef.pthread_once_t = int
136
+ rbx.platform.typedef.pthread_t = ulong
137
+ rbx.platform.typedef.ptrdiff_t = long
138
+ rbx.platform.typedef.quad_t = long
139
+ rbx.platform.typedef.register_t = long
140
+ rbx.platform.typedef.rlim_t = ulong
141
+ rbx.platform.typedef.sa_family_t = ushort
142
+ rbx.platform.typedef.size_t = ulong
143
+ rbx.platform.typedef.socklen_t = uint
144
+ rbx.platform.typedef.ssize_t = long
145
+ rbx.platform.typedef.suseconds_t = long
146
+ rbx.platform.typedef.time_t = long
147
+ rbx.platform.typedef.timer_t = pointer
148
+ rbx.platform.typedef.u_char = uchar
149
+ rbx.platform.typedef.u_int = uint
150
+ rbx.platform.typedef.u_int16_t = ushort
151
+ rbx.platform.typedef.u_int32_t = uint
152
+ rbx.platform.typedef.u_int64_t = ulong
153
+ rbx.platform.typedef.u_int8_t = uchar
154
+ rbx.platform.typedef.u_long = ulong
155
+ rbx.platform.typedef.u_quad_t = ulong
156
+ rbx.platform.typedef.u_short = ushort
157
+ rbx.platform.typedef.uid_t = uint
158
+ rbx.platform.typedef.uint = uint
159
+ rbx.platform.typedef.uint16_t = ushort
160
+ rbx.platform.typedef.uint32_t = uint
161
+ rbx.platform.typedef.uint64_t = ulong
162
+ rbx.platform.typedef.uint8_t = uchar
163
+ rbx.platform.typedef.uint_fast16_t = ulong
164
+ rbx.platform.typedef.uint_fast32_t = ulong
165
+ rbx.platform.typedef.uint_fast64_t = ulong
166
+ rbx.platform.typedef.uint_fast8_t = uchar
167
+ rbx.platform.typedef.uint_least16_t = ushort
168
+ rbx.platform.typedef.uint_least32_t = uint
169
+ rbx.platform.typedef.uint_least64_t = ulong
170
+ rbx.platform.typedef.uint_least8_t = uchar
171
+ rbx.platform.typedef.uintmax_t = ulong
172
+ rbx.platform.typedef.uintptr_t = ulong
173
+ rbx.platform.typedef.ulong = ulong
174
+ rbx.platform.typedef.ushort = ushort
175
+ rbx.platform.typedef.wchar_t = uint
@@ -0,0 +1,134 @@
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.key_t = long
94
+ rbx.platform.typedef.mode_t = uint
95
+ rbx.platform.typedef.nlink_t = uint
96
+ rbx.platform.typedef.off_t = long_long
97
+ rbx.platform.typedef.paddr_t = ulong
98
+ rbx.platform.typedef.pid_t = int
99
+ rbx.platform.typedef.psize_t = ulong
100
+ rbx.platform.typedef.qaddr_t = pointer
101
+ rbx.platform.typedef.quad_t = long_long
102
+ rbx.platform.typedef.register_t = long
103
+ rbx.platform.typedef.rlim_t = ulong_long
104
+ rbx.platform.typedef.sa_family_t = uchar
105
+ rbx.platform.typedef.segsz_t = int
106
+ rbx.platform.typedef.sigset_t = uint
107
+ rbx.platform.typedef.size_t = ulong
108
+ rbx.platform.typedef.socklen_t = uint
109
+ rbx.platform.typedef.ssize_t = long
110
+ rbx.platform.typedef.suseconds_t = long
111
+ rbx.platform.typedef.swblk_t = int
112
+ rbx.platform.typedef.time_t = long_long
113
+ rbx.platform.typedef.timer_t = int
114
+ rbx.platform.typedef.u_char = uchar
115
+ rbx.platform.typedef.u_int = uint
116
+ rbx.platform.typedef.u_int16_t = ushort
117
+ rbx.platform.typedef.u_int32_t = uint
118
+ rbx.platform.typedef.u_int64_t = ulong_long
119
+ rbx.platform.typedef.u_int8_t = uchar
120
+ rbx.platform.typedef.u_long = ulong
121
+ rbx.platform.typedef.u_quad_t = ulong_long
122
+ rbx.platform.typedef.u_short = ushort
123
+ rbx.platform.typedef.uid_t = uint
124
+ rbx.platform.typedef.uint = uint
125
+ rbx.platform.typedef.uint16_t = ushort
126
+ rbx.platform.typedef.uint32_t = uint
127
+ rbx.platform.typedef.uint64_t = ulong_long
128
+ rbx.platform.typedef.uint8_t = uchar
129
+ rbx.platform.typedef.ulong = ulong
130
+ rbx.platform.typedef.unchar = uchar
131
+ rbx.platform.typedef.useconds_t = uint
132
+ rbx.platform.typedef.ushort = ushort
133
+ rbx.platform.typedef.vaddr_t = ulong
134
+ rbx.platform.typedef.vsize_t = ulong
@@ -0,0 +1,52 @@
1
+ rbx.platform.typedef.__time32_t = long
2
+ rbx.platform.typedef.__time64_t = long_long
3
+ rbx.platform.typedef._dev_t = uint
4
+ rbx.platform.typedef._ino_t = ushort
5
+ rbx.platform.typedef._mode_t = ushort
6
+ rbx.platform.typedef._off64_t = long_long
7
+ rbx.platform.typedef._off_t = long
8
+ rbx.platform.typedef._pid_t = long_long
9
+ rbx.platform.typedef._sigset_t = ulong_long
10
+ rbx.platform.typedef.dev_t = uint
11
+ rbx.platform.typedef.errno_t = int
12
+ rbx.platform.typedef.ino_t = ushort
13
+ rbx.platform.typedef.int16_t = short
14
+ rbx.platform.typedef.int32_t = int
15
+ rbx.platform.typedef.int64_t = long_long
16
+ rbx.platform.typedef.int8_t = char
17
+ rbx.platform.typedef.int_fast16_t = short
18
+ rbx.platform.typedef.int_fast32_t = int
19
+ rbx.platform.typedef.int_fast64_t = long_long
20
+ rbx.platform.typedef.int_fast8_t = char
21
+ rbx.platform.typedef.int_least16_t = short
22
+ rbx.platform.typedef.int_least32_t = int
23
+ rbx.platform.typedef.int_least64_t = long_long
24
+ rbx.platform.typedef.int_least8_t = char
25
+ rbx.platform.typedef.intmax_t = long_long
26
+ rbx.platform.typedef.intptr_t = long_long
27
+ rbx.platform.typedef.mode_t = ushort
28
+ rbx.platform.typedef.off32_t = long
29
+ rbx.platform.typedef.off64_t = long_long
30
+ rbx.platform.typedef.off_t = long_long
31
+ rbx.platform.typedef.pid_t = long_long
32
+ rbx.platform.typedef.ptrdiff_t = long_long
33
+ rbx.platform.typedef.rsize_t = ulong_long
34
+ rbx.platform.typedef.size_t = ulong_long
35
+ rbx.platform.typedef.ssize_t = long_long
36
+ rbx.platform.typedef.time_t = long_long
37
+ rbx.platform.typedef.uint16_t = ushort
38
+ rbx.platform.typedef.uint64_t = ulong_long
39
+ rbx.platform.typedef.uint8_t = uchar
40
+ rbx.platform.typedef.uint_fast16_t = ushort
41
+ rbx.platform.typedef.uint_fast32_t = uint
42
+ rbx.platform.typedef.uint_fast64_t = ulong_long
43
+ rbx.platform.typedef.uint_fast8_t = uchar
44
+ rbx.platform.typedef.uint_least16_t = ushort
45
+ rbx.platform.typedef.uint_least64_t = ulong_long
46
+ rbx.platform.typedef.uint_least8_t = uchar
47
+ rbx.platform.typedef.uintmax_t = ulong_long
48
+ rbx.platform.typedef.uintptr_t = ulong_long
49
+ rbx.platform.typedef.useconds_t = uint
50
+ rbx.platform.typedef.wchar_t = ushort
51
+ rbx.platform.typedef.wctype_t = ushort
52
+ rbx.platform.typedef.wint_t = ushort
@@ -0,0 +1,152 @@
1
+
2
+ rbx.platform.typedef.*) = pointer
3
+ rbx.platform.typedef.__accmode_t = int
4
+ rbx.platform.typedef.__blkcnt_t = long_long
5
+ rbx.platform.typedef.__blksize_t = uint
6
+ rbx.platform.typedef.__clock_t = ulong
7
+ rbx.platform.typedef.__clockid_t = int
8
+ rbx.platform.typedef.__cpulevel_t = int
9
+ rbx.platform.typedef.__cpumask_t = uint
10
+ rbx.platform.typedef.__cpusetid_t = int
11
+ rbx.platform.typedef.__cpuwhich_t = int
12
+ rbx.platform.typedef.__critical_t = int
13
+ rbx.platform.typedef.__ct_rune_t = int
14
+ rbx.platform.typedef.__dev_t = uint
15
+ rbx.platform.typedef.__fd_mask = ulong
16
+ rbx.platform.typedef.__fflags_t = uint
17
+ rbx.platform.typedef.__fixpt_t = uint
18
+ rbx.platform.typedef.__fsblkcnt_t = ulong_long
19
+ rbx.platform.typedef.__fsfilcnt_t = ulong_long
20
+ rbx.platform.typedef.__gid_t = uint
21
+ rbx.platform.typedef.__id_t = long_long
22
+ rbx.platform.typedef.__ino_t = uint
23
+ rbx.platform.typedef.__int16_t = short
24
+ rbx.platform.typedef.__int32_t = int
25
+ rbx.platform.typedef.__int64_t = long_long
26
+ rbx.platform.typedef.__int8_t = char
27
+ rbx.platform.typedef.__int_fast16_t = int
28
+ rbx.platform.typedef.__int_fast32_t = int
29
+ rbx.platform.typedef.__int_fast64_t = long_long
30
+ rbx.platform.typedef.__int_fast8_t = int
31
+ rbx.platform.typedef.__int_least16_t = short
32
+ rbx.platform.typedef.__int_least32_t = int
33
+ rbx.platform.typedef.__int_least64_t = long_long
34
+ rbx.platform.typedef.__int_least8_t = char
35
+ rbx.platform.typedef.__intfptr_t = int
36
+ rbx.platform.typedef.__intmax_t = long_long
37
+ rbx.platform.typedef.__intptr_t = int
38
+ rbx.platform.typedef.__key_t = long
39
+ rbx.platform.typedef.__lwpid_t = int
40
+ rbx.platform.typedef.__mode_t = ushort
41
+ rbx.platform.typedef.__nl_item = int
42
+ rbx.platform.typedef.__nlink_t = ushort
43
+ rbx.platform.typedef.__off_t = long_long
44
+ rbx.platform.typedef.__pid_t = int
45
+ rbx.platform.typedef.__ptrdiff_t = int
46
+ rbx.platform.typedef.__register_t = int
47
+ rbx.platform.typedef.__rlim_t = long_long
48
+ rbx.platform.typedef.__rune_t = int
49
+ rbx.platform.typedef.__sa_family_t = uchar
50
+ rbx.platform.typedef.__segsz_t = int
51
+ rbx.platform.typedef.__size_t = uint
52
+ rbx.platform.typedef.__socklen_t = uint
53
+ rbx.platform.typedef.__ssize_t = int
54
+ rbx.platform.typedef.__suseconds_t = long
55
+ rbx.platform.typedef.__time_t = int
56
+ rbx.platform.typedef.__u_register_t = uint
57
+ rbx.platform.typedef.__uid_t = uint
58
+ rbx.platform.typedef.__uint16_t = ushort
59
+ rbx.platform.typedef.__uint32_t = uint
60
+ rbx.platform.typedef.__uint64_t = ulong_long
61
+ rbx.platform.typedef.__uint8_t = uchar
62
+ rbx.platform.typedef.__uint_fast16_t = uint
63
+ rbx.platform.typedef.__uint_fast32_t = uint
64
+ rbx.platform.typedef.__uint_fast64_t = ulong_long
65
+ rbx.platform.typedef.__uint_fast8_t = uint
66
+ rbx.platform.typedef.__uint_least16_t = ushort
67
+ rbx.platform.typedef.__uint_least32_t = uint
68
+ rbx.platform.typedef.__uint_least64_t = ulong_long
69
+ rbx.platform.typedef.__uint_least8_t = uchar
70
+ rbx.platform.typedef.__uintfptr_t = uint
71
+ rbx.platform.typedef.__uintmax_t = ulong_long
72
+ rbx.platform.typedef.__uintptr_t = uint
73
+ rbx.platform.typedef.__useconds_t = uint
74
+ rbx.platform.typedef.__vm_offset_t = uint
75
+ rbx.platform.typedef.__vm_ooffset_t = long_long
76
+ rbx.platform.typedef.__vm_paddr_t = uint
77
+ rbx.platform.typedef.__vm_pindex_t = ulong_long
78
+ rbx.platform.typedef.__vm_size_t = uint
79
+ rbx.platform.typedef.__wchar_t = int
80
+ rbx.platform.typedef.__wint_t = int
81
+ rbx.platform.typedef.__wint_t = int
82
+ rbx.platform.typedef.accmode_t = int
83
+ rbx.platform.typedef.blkcnt_t = long_long
84
+ rbx.platform.typedef.blksize_t = uint
85
+ rbx.platform.typedef.c_caddr_t = pointer
86
+ rbx.platform.typedef.caddr_t = string
87
+ rbx.platform.typedef.clock_t = ulong
88
+ rbx.platform.typedef.clockid_t = int
89
+ rbx.platform.typedef.cpulevel_t = int
90
+ rbx.platform.typedef.cpumask_t = uint
91
+ rbx.platform.typedef.cpusetid_t = int
92
+ rbx.platform.typedef.cpuwhich_t = int
93
+ rbx.platform.typedef.critical_t = int
94
+ rbx.platform.typedef.daddr_t = long_long
95
+ rbx.platform.typedef.dev_t = uint
96
+ rbx.platform.typedef.fd_mask = ulong
97
+ rbx.platform.typedef.fflags_t = uint
98
+ rbx.platform.typedef.fixpt_t = uint
99
+ rbx.platform.typedef.fsblkcnt_t = ulong_long
100
+ rbx.platform.typedef.fsfilcnt_t = ulong_long
101
+ rbx.platform.typedef.gid_t = uint
102
+ rbx.platform.typedef.id_t = long_long
103
+ rbx.platform.typedef.in_addr_t = uint
104
+ rbx.platform.typedef.in_port_t = ushort
105
+ rbx.platform.typedef.ino_t = uint
106
+ rbx.platform.typedef.int16_t = short
107
+ rbx.platform.typedef.int32_t = int
108
+ rbx.platform.typedef.int64_t = long_long
109
+ rbx.platform.typedef.int8_t = char
110
+ rbx.platform.typedef.intptr_t = int
111
+ rbx.platform.typedef.key_t = long
112
+ rbx.platform.typedef.lwpid_t = int
113
+ rbx.platform.typedef.mode_t = ushort
114
+ rbx.platform.typedef.nlink_t = ushort
115
+ rbx.platform.typedef.off_t = long_long
116
+ rbx.platform.typedef.pid_t = int
117
+ rbx.platform.typedef.pthread_key_t = int
118
+ rbx.platform.typedef.qaddr_t = pointer
119
+ rbx.platform.typedef.quad_t = long_long
120
+ rbx.platform.typedef.register_t = int
121
+ rbx.platform.typedef.rlim_t = long_long
122
+ rbx.platform.typedef.sa_family_t = uchar
123
+ rbx.platform.typedef.segsz_t = int
124
+ rbx.platform.typedef.size_t = uint
125
+ rbx.platform.typedef.socklen_t = uint
126
+ rbx.platform.typedef.ssize_t = int
127
+ rbx.platform.typedef.suseconds_t = long
128
+ rbx.platform.typedef.time_t = int
129
+ rbx.platform.typedef.u_char = uchar
130
+ rbx.platform.typedef.u_int = uint
131
+ rbx.platform.typedef.u_int16_t = ushort
132
+ rbx.platform.typedef.u_int32_t = uint
133
+ rbx.platform.typedef.u_int64_t = ulong_long
134
+ rbx.platform.typedef.u_int8_t = uchar
135
+ rbx.platform.typedef.u_long = ulong
136
+ rbx.platform.typedef.u_quad_t = ulong_long
137
+ rbx.platform.typedef.u_register_t = uint
138
+ rbx.platform.typedef.u_short = ushort
139
+ rbx.platform.typedef.uid_t = uint
140
+ rbx.platform.typedef.uint = uint
141
+ rbx.platform.typedef.uint16_t = ushort
142
+ rbx.platform.typedef.uint32_t = uint
143
+ rbx.platform.typedef.uint64_t = ulong_long
144
+ rbx.platform.typedef.uint8_t = uchar
145
+ rbx.platform.typedef.uintptr_t = uint
146
+ rbx.platform.typedef.useconds_t = uint
147
+ rbx.platform.typedef.ushort = ushort
148
+ rbx.platform.typedef.vm_offset_t = uint
149
+ rbx.platform.typedef.vm_ooffset_t = long_long
150
+ rbx.platform.typedef.vm_paddr_t = uint
151
+ rbx.platform.typedef.vm_pindex_t = ulong_long
152
+ rbx.platform.typedef.vm_size_t = uint
@@ -0,0 +1,152 @@
1
+
2
+ rbx.platform.typedef.*) = pointer
3
+ rbx.platform.typedef.__accmode_t = int
4
+ rbx.platform.typedef.__blkcnt_t = long_long
5
+ rbx.platform.typedef.__blksize_t = uint
6
+ rbx.platform.typedef.__clock_t = ulong
7
+ rbx.platform.typedef.__clockid_t = int
8
+ rbx.platform.typedef.__cpulevel_t = int
9
+ rbx.platform.typedef.__cpumask_t = uint
10
+ rbx.platform.typedef.__cpusetid_t = int
11
+ rbx.platform.typedef.__cpuwhich_t = int
12
+ rbx.platform.typedef.__critical_t = int
13
+ rbx.platform.typedef.__ct_rune_t = int
14
+ rbx.platform.typedef.__dev_t = ulong_long
15
+ rbx.platform.typedef.__fd_mask = ulong
16
+ rbx.platform.typedef.__fflags_t = uint
17
+ rbx.platform.typedef.__fixpt_t = uint
18
+ rbx.platform.typedef.__fsblkcnt_t = ulong_long
19
+ rbx.platform.typedef.__fsfilcnt_t = ulong_long
20
+ rbx.platform.typedef.__gid_t = uint
21
+ rbx.platform.typedef.__id_t = long_long
22
+ rbx.platform.typedef.__ino_t = ulong_long
23
+ rbx.platform.typedef.__int16_t = short
24
+ rbx.platform.typedef.__int32_t = int
25
+ rbx.platform.typedef.__int64_t = long_long
26
+ rbx.platform.typedef.__int8_t = char
27
+ rbx.platform.typedef.__int_fast16_t = int
28
+ rbx.platform.typedef.__int_fast32_t = int
29
+ rbx.platform.typedef.__int_fast64_t = long_long
30
+ rbx.platform.typedef.__int_fast8_t = int
31
+ rbx.platform.typedef.__int_least16_t = short
32
+ rbx.platform.typedef.__int_least32_t = int
33
+ rbx.platform.typedef.__int_least64_t = long_long
34
+ rbx.platform.typedef.__int_least8_t = char
35
+ rbx.platform.typedef.__intfptr_t = int
36
+ rbx.platform.typedef.__intmax_t = long_long
37
+ rbx.platform.typedef.__intptr_t = int
38
+ rbx.platform.typedef.__key_t = long
39
+ rbx.platform.typedef.__lwpid_t = int
40
+ rbx.platform.typedef.__mode_t = ushort
41
+ rbx.platform.typedef.__nl_item = int
42
+ rbx.platform.typedef.__nlink_t = ulong_long
43
+ rbx.platform.typedef.__off_t = long_long
44
+ rbx.platform.typedef.__pid_t = int
45
+ rbx.platform.typedef.__ptrdiff_t = int
46
+ rbx.platform.typedef.__register_t = int
47
+ rbx.platform.typedef.__rlim_t = long_long
48
+ rbx.platform.typedef.__rune_t = int
49
+ rbx.platform.typedef.__sa_family_t = uchar
50
+ rbx.platform.typedef.__segsz_t = int
51
+ rbx.platform.typedef.__size_t = uint
52
+ rbx.platform.typedef.__socklen_t = uint
53
+ rbx.platform.typedef.__ssize_t = int
54
+ rbx.platform.typedef.__suseconds_t = long
55
+ rbx.platform.typedef.__time_t = int
56
+ rbx.platform.typedef.__u_register_t = uint
57
+ rbx.platform.typedef.__uid_t = uint
58
+ rbx.platform.typedef.__uint16_t = ushort
59
+ rbx.platform.typedef.__uint32_t = uint
60
+ rbx.platform.typedef.__uint64_t = ulong_long
61
+ rbx.platform.typedef.__uint8_t = uchar
62
+ rbx.platform.typedef.__uint_fast16_t = uint
63
+ rbx.platform.typedef.__uint_fast32_t = uint
64
+ rbx.platform.typedef.__uint_fast64_t = ulong_long
65
+ rbx.platform.typedef.__uint_fast8_t = uint
66
+ rbx.platform.typedef.__uint_least16_t = ushort
67
+ rbx.platform.typedef.__uint_least32_t = uint
68
+ rbx.platform.typedef.__uint_least64_t = ulong_long
69
+ rbx.platform.typedef.__uint_least8_t = uchar
70
+ rbx.platform.typedef.__uintfptr_t = uint
71
+ rbx.platform.typedef.__uintmax_t = ulong_long
72
+ rbx.platform.typedef.__uintptr_t = uint
73
+ rbx.platform.typedef.__useconds_t = uint
74
+ rbx.platform.typedef.__vm_offset_t = uint
75
+ rbx.platform.typedef.__vm_ooffset_t = long_long
76
+ rbx.platform.typedef.__vm_paddr_t = uint
77
+ rbx.platform.typedef.__vm_pindex_t = ulong_long
78
+ rbx.platform.typedef.__vm_size_t = uint
79
+ rbx.platform.typedef.__wchar_t = int
80
+ rbx.platform.typedef.__wint_t = int
81
+ rbx.platform.typedef.__wint_t = int
82
+ rbx.platform.typedef.accmode_t = int
83
+ rbx.platform.typedef.blkcnt_t = long_long
84
+ rbx.platform.typedef.blksize_t = uint
85
+ rbx.platform.typedef.c_caddr_t = pointer
86
+ rbx.platform.typedef.caddr_t = string
87
+ rbx.platform.typedef.clock_t = ulong
88
+ rbx.platform.typedef.clockid_t = int
89
+ rbx.platform.typedef.cpulevel_t = int
90
+ rbx.platform.typedef.cpumask_t = uint
91
+ rbx.platform.typedef.cpusetid_t = int
92
+ rbx.platform.typedef.cpuwhich_t = int
93
+ rbx.platform.typedef.critical_t = int
94
+ rbx.platform.typedef.daddr_t = long_long
95
+ rbx.platform.typedef.dev_t = ulong_long
96
+ rbx.platform.typedef.fd_mask = ulong
97
+ rbx.platform.typedef.fflags_t = uint
98
+ rbx.platform.typedef.fixpt_t = uint
99
+ rbx.platform.typedef.fsblkcnt_t = ulong_long
100
+ rbx.platform.typedef.fsfilcnt_t = ulong_long
101
+ rbx.platform.typedef.gid_t = uint
102
+ rbx.platform.typedef.id_t = long_long
103
+ rbx.platform.typedef.in_addr_t = uint
104
+ rbx.platform.typedef.in_port_t = ushort
105
+ rbx.platform.typedef.ino_t = ulong_long
106
+ rbx.platform.typedef.int16_t = short
107
+ rbx.platform.typedef.int32_t = int
108
+ rbx.platform.typedef.int64_t = long_long
109
+ rbx.platform.typedef.int8_t = char
110
+ rbx.platform.typedef.intptr_t = int
111
+ rbx.platform.typedef.key_t = long
112
+ rbx.platform.typedef.lwpid_t = int
113
+ rbx.platform.typedef.mode_t = ushort
114
+ rbx.platform.typedef.nlink_t = ulong_long
115
+ rbx.platform.typedef.off_t = long_long
116
+ rbx.platform.typedef.pid_t = int
117
+ rbx.platform.typedef.pthread_key_t = int
118
+ rbx.platform.typedef.qaddr_t = pointer
119
+ rbx.platform.typedef.quad_t = long_long
120
+ rbx.platform.typedef.register_t = int
121
+ rbx.platform.typedef.rlim_t = long_long
122
+ rbx.platform.typedef.sa_family_t = uchar
123
+ rbx.platform.typedef.segsz_t = int
124
+ rbx.platform.typedef.size_t = uint
125
+ rbx.platform.typedef.socklen_t = uint
126
+ rbx.platform.typedef.ssize_t = int
127
+ rbx.platform.typedef.suseconds_t = long
128
+ rbx.platform.typedef.time_t = int
129
+ rbx.platform.typedef.u_char = uchar
130
+ rbx.platform.typedef.u_int = uint
131
+ rbx.platform.typedef.u_int16_t = ushort
132
+ rbx.platform.typedef.u_int32_t = uint
133
+ rbx.platform.typedef.u_int64_t = ulong_long
134
+ rbx.platform.typedef.u_int8_t = uchar
135
+ rbx.platform.typedef.u_long = ulong
136
+ rbx.platform.typedef.u_quad_t = ulong_long
137
+ rbx.platform.typedef.u_register_t = uint
138
+ rbx.platform.typedef.u_short = ushort
139
+ rbx.platform.typedef.uid_t = uint
140
+ rbx.platform.typedef.uint = uint
141
+ rbx.platform.typedef.uint16_t = ushort
142
+ rbx.platform.typedef.uint32_t = uint
143
+ rbx.platform.typedef.uint64_t = ulong_long
144
+ rbx.platform.typedef.uint8_t = uchar
145
+ rbx.platform.typedef.uintptr_t = uint
146
+ rbx.platform.typedef.useconds_t = uint
147
+ rbx.platform.typedef.ushort = ushort
148
+ rbx.platform.typedef.vm_offset_t = uint
149
+ rbx.platform.typedef.vm_ooffset_t = long_long
150
+ rbx.platform.typedef.vm_paddr_t = uint
151
+ rbx.platform.typedef.vm_pindex_t = ulong_long
152
+ rbx.platform.typedef.vm_size_t = uint