ffi 1.11.1-x64-mingw32 → 1.11.2-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/{appveyor.yml → .appveyor.yml} +1 -1
- data/.gitmodules +2 -2
- data/CHANGELOG.md +16 -0
- data/Rakefile +1 -0
- data/ffi.gemspec +1 -1
- data/lib/ffi/library.rb +5 -5
- data/lib/ffi/platform.rb +4 -1
- data/lib/ffi/platform/aarch64-freebsd/types.conf +89 -89
- data/lib/ffi/platform/aarch64-freebsd12/types.conf +89 -89
- data/lib/ffi/platform/aarch64-linux/types.conf +81 -81
- data/lib/ffi/platform/arm-freebsd/types.conf +87 -87
- data/lib/ffi/platform/arm-freebsd12/types.conf +87 -87
- data/lib/ffi/platform/arm-linux/types.conf +79 -79
- data/lib/ffi/platform/i386-cygwin/types.conf +1 -1
- data/lib/ffi/platform/i386-darwin/types.conf +63 -63
- data/lib/ffi/platform/i386-freebsd/types.conf +87 -87
- data/lib/ffi/platform/i386-freebsd12/types.conf +87 -87
- data/lib/ffi/platform/i386-gnu/types.conf +84 -84
- data/lib/ffi/platform/i386-linux/types.conf +77 -77
- data/lib/ffi/platform/i386-netbsd/types.conf +87 -87
- data/lib/ffi/platform/i386-openbsd/types.conf +89 -89
- data/lib/ffi/platform/i386-solaris/types.conf +96 -96
- data/lib/ffi/platform/i386-windows/types.conf +84 -84
- data/lib/ffi/platform/ia64-linux/types.conf +79 -79
- data/lib/ffi/platform/mips-linux/types.conf +79 -79
- data/lib/ffi/platform/mips64-linux/types.conf +81 -81
- data/lib/ffi/platform/mips64el-linux/types.conf +81 -81
- data/lib/ffi/platform/mipsel-linux/types.conf +79 -79
- data/lib/ffi/platform/mipsisa32r6-linux/types.conf +79 -79
- data/lib/ffi/platform/mipsisa32r6el-linux/types.conf +79 -79
- data/lib/ffi/platform/mipsisa64r6-linux/types.conf +81 -81
- data/lib/ffi/platform/mipsisa64r6el-linux/types.conf +81 -81
- data/lib/ffi/platform/powerpc-aix/types.conf +155 -155
- data/lib/ffi/platform/powerpc-darwin/types.conf +63 -63
- data/lib/ffi/platform/powerpc-linux/types.conf +77 -77
- data/lib/ffi/platform/powerpc64-linux/types.conf +81 -81
- data/lib/ffi/platform/s390-linux/types.conf +79 -79
- data/lib/ffi/platform/s390x-linux/types.conf +79 -79
- data/lib/ffi/platform/sparc-linux/types.conf +79 -79
- data/lib/ffi/platform/sparc-solaris/types.conf +103 -103
- data/lib/ffi/platform/sparc64-linux/types.conf +79 -79
- data/lib/ffi/platform/sparcv9-solaris/types.conf +103 -103
- data/lib/ffi/platform/x86_64-cygwin/types.conf +1 -1
- data/lib/ffi/platform/x86_64-darwin/types.conf +84 -84
- data/lib/ffi/platform/x86_64-dragonflybsd/types.conf +148 -0
- data/lib/ffi/platform/x86_64-freebsd/types.conf +89 -89
- data/lib/ffi/platform/x86_64-freebsd12/types.conf +139 -109
- data/lib/ffi/platform/x86_64-linux/types.conf +86 -77
- data/lib/ffi/platform/x86_64-netbsd/types.conf +89 -89
- data/lib/ffi/platform/x86_64-openbsd/types.conf +86 -86
- data/lib/ffi/platform/x86_64-solaris/types.conf +96 -96
- data/lib/ffi/platform/x86_64-windows/types.conf +99 -99
- data/lib/ffi/tools/types_generator.rb +5 -4
- data/lib/ffi/version.rb +1 -1
- metadata +5 -4
@@ -1,44 +1,7 @@
|
|
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.int16_t = short
|
23
|
-
rbx.platform.typedef.int32_t = int
|
24
|
-
rbx.platform.typedef.int64_t = long_long
|
25
|
-
rbx.platform.typedef.u_int8_t = uchar
|
26
|
-
rbx.platform.typedef.u_int16_t = ushort
|
27
|
-
rbx.platform.typedef.u_int32_t = uint
|
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.user_off_t = long_long
|
39
|
-
rbx.platform.typedef.syscall_arg_t = ulong_long
|
40
1
|
rbx.platform.typedef.__darwin_blkcnt_t = long_long
|
41
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
|
42
5
|
rbx.platform.typedef.__darwin_dev_t = int
|
43
6
|
rbx.platform.typedef.__darwin_fsblkcnt_t = uint
|
44
7
|
rbx.platform.typedef.__darwin_fsfilcnt_t = uint
|
@@ -46,81 +9,118 @@ rbx.platform.typedef.__darwin_gid_t = uint
|
|
46
9
|
rbx.platform.typedef.__darwin_id_t = uint
|
47
10
|
rbx.platform.typedef.__darwin_ino64_t = ulong_long
|
48
11
|
rbx.platform.typedef.__darwin_ino_t = ulong_long
|
12
|
+
rbx.platform.typedef.__darwin_intptr_t = long
|
49
13
|
rbx.platform.typedef.__darwin_mach_port_name_t = uint
|
50
14
|
rbx.platform.typedef.__darwin_mach_port_t = uint
|
51
15
|
rbx.platform.typedef.__darwin_mode_t = ushort
|
16
|
+
rbx.platform.typedef.__darwin_natural_t = uint
|
52
17
|
rbx.platform.typedef.__darwin_off_t = long_long
|
53
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
|
54
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
|
55
26
|
rbx.platform.typedef.__darwin_suseconds_t = int
|
27
|
+
rbx.platform.typedef.__darwin_time_t = long
|
56
28
|
rbx.platform.typedef.__darwin_uid_t = uint
|
57
29
|
rbx.platform.typedef.__darwin_useconds_t = uint
|
58
|
-
rbx.platform.typedef.__darwin_uuid_t[16] = uchar
|
59
30
|
rbx.platform.typedef.__darwin_uuid_string_t[37] = char
|
60
|
-
rbx.platform.typedef.
|
61
|
-
rbx.platform.typedef.
|
62
|
-
rbx.platform.typedef.
|
63
|
-
rbx.platform.typedef.
|
64
|
-
rbx.platform.typedef.
|
65
|
-
rbx.platform.typedef.
|
66
|
-
rbx.platform.typedef.
|
67
|
-
rbx.platform.typedef.
|
68
|
-
rbx.platform.typedef.
|
69
|
-
rbx.platform.typedef.
|
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
|
70
44
|
rbx.platform.typedef.caddr_t = string
|
45
|
+
rbx.platform.typedef.clock_t = ulong
|
71
46
|
rbx.platform.typedef.daddr_t = int
|
72
47
|
rbx.platform.typedef.dev_t = int
|
48
|
+
rbx.platform.typedef.errno_t = int
|
49
|
+
rbx.platform.typedef.fd_mask = int
|
73
50
|
rbx.platform.typedef.fixpt_t = uint
|
74
|
-
rbx.platform.typedef.
|
75
|
-
rbx.platform.typedef.
|
51
|
+
rbx.platform.typedef.fsblkcnt_t = uint
|
52
|
+
rbx.platform.typedef.fsfilcnt_t = uint
|
76
53
|
rbx.platform.typedef.gid_t = uint
|
54
|
+
rbx.platform.typedef.id_t = uint
|
77
55
|
rbx.platform.typedef.in_addr_t = uint
|
78
56
|
rbx.platform.typedef.in_port_t = ushort
|
79
|
-
rbx.platform.typedef.ino_t = ulong_long
|
80
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
|
81
73
|
rbx.platform.typedef.key_t = int
|
82
74
|
rbx.platform.typedef.mode_t = ushort
|
83
75
|
rbx.platform.typedef.nlink_t = ushort
|
84
|
-
rbx.platform.typedef.id_t = uint
|
85
|
-
rbx.platform.typedef.pid_t = int
|
86
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.qaddr_t = pointer
|
80
|
+
rbx.platform.typedef.quad_t = long_long
|
81
|
+
rbx.platform.typedef.register_t = long_long
|
82
|
+
rbx.platform.typedef.rlim_t = ulong_long
|
83
|
+
rbx.platform.typedef.rsize_t = ulong
|
84
|
+
rbx.platform.typedef.sa_family_t = uchar
|
87
85
|
rbx.platform.typedef.segsz_t = int
|
88
|
-
rbx.platform.typedef.swblk_t = int
|
89
|
-
rbx.platform.typedef.uid_t = uint
|
90
|
-
rbx.platform.typedef.clock_t = ulong
|
91
86
|
rbx.platform.typedef.size_t = ulong
|
87
|
+
rbx.platform.typedef.socklen_t = uint
|
92
88
|
rbx.platform.typedef.ssize_t = long
|
93
|
-
rbx.platform.typedef.time_t = long
|
94
|
-
rbx.platform.typedef.useconds_t = uint
|
95
89
|
rbx.platform.typedef.suseconds_t = int
|
96
|
-
rbx.platform.typedef.
|
97
|
-
rbx.platform.typedef.
|
98
|
-
rbx.platform.typedef.
|
99
|
-
rbx.platform.typedef.
|
100
|
-
rbx.platform.typedef.
|
101
|
-
rbx.platform.typedef.
|
102
|
-
rbx.platform.typedef.
|
103
|
-
rbx.platform.typedef.
|
104
|
-
rbx.platform.typedef.
|
90
|
+
rbx.platform.typedef.swblk_t = int
|
91
|
+
rbx.platform.typedef.syscall_arg_t = ulong_long
|
92
|
+
rbx.platform.typedef.time_t = long
|
93
|
+
rbx.platform.typedef.u_char = uchar
|
94
|
+
rbx.platform.typedef.u_int = uint
|
95
|
+
rbx.platform.typedef.u_int16_t = ushort
|
96
|
+
rbx.platform.typedef.u_int32_t = uint
|
97
|
+
rbx.platform.typedef.u_int64_t = ulong_long
|
98
|
+
rbx.platform.typedef.u_int8_t = uchar
|
99
|
+
rbx.platform.typedef.u_long = ulong
|
100
|
+
rbx.platform.typedef.u_quad_t = ulong_long
|
101
|
+
rbx.platform.typedef.u_short = ushort
|
102
|
+
rbx.platform.typedef.uid_t = uint
|
103
|
+
rbx.platform.typedef.uint = uint
|
105
104
|
rbx.platform.typedef.uint16_t = ushort
|
106
105
|
rbx.platform.typedef.uint32_t = uint
|
107
106
|
rbx.platform.typedef.uint64_t = ulong_long
|
108
|
-
rbx.platform.typedef.
|
109
|
-
rbx.platform.typedef.int_least16_t = short
|
110
|
-
rbx.platform.typedef.int_least32_t = int
|
111
|
-
rbx.platform.typedef.int_least64_t = long_long
|
112
|
-
rbx.platform.typedef.uint_least8_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.int_fast8_t = char
|
117
|
-
rbx.platform.typedef.int_fast16_t = short
|
118
|
-
rbx.platform.typedef.int_fast32_t = int
|
119
|
-
rbx.platform.typedef.int_fast64_t = long_long
|
120
|
-
rbx.platform.typedef.uint_fast8_t = uchar
|
107
|
+
rbx.platform.typedef.uint8_t = uchar
|
121
108
|
rbx.platform.typedef.uint_fast16_t = ushort
|
122
109
|
rbx.platform.typedef.uint_fast32_t = uint
|
123
110
|
rbx.platform.typedef.uint_fast64_t = ulong_long
|
124
|
-
rbx.platform.typedef.
|
111
|
+
rbx.platform.typedef.uint_fast8_t = uchar
|
112
|
+
rbx.platform.typedef.uint_least16_t = ushort
|
113
|
+
rbx.platform.typedef.uint_least32_t = uint
|
114
|
+
rbx.platform.typedef.uint_least64_t = ulong_long
|
115
|
+
rbx.platform.typedef.uint_least8_t = uchar
|
125
116
|
rbx.platform.typedef.uintmax_t = ulong
|
126
|
-
rbx.platform.typedef.
|
117
|
+
rbx.platform.typedef.uintptr_t = ulong
|
118
|
+
rbx.platform.typedef.useconds_t = uint
|
119
|
+
rbx.platform.typedef.user_addr_t = ulong_long
|
120
|
+
rbx.platform.typedef.user_long_t = long_long
|
121
|
+
rbx.platform.typedef.user_off_t = long_long
|
122
|
+
rbx.platform.typedef.user_size_t = ulong_long
|
123
|
+
rbx.platform.typedef.user_ssize_t = long_long
|
124
|
+
rbx.platform.typedef.user_time_t = long_long
|
125
|
+
rbx.platform.typedef.user_ulong_t = ulong_long
|
126
|
+
rbx.platform.typedef.ushort = ushort
|
@@ -0,0 +1,148 @@
|
|
1
|
+
rbx.platform.typedef.*) = pointer
|
2
|
+
rbx.platform.typedef.__char16_t = ushort
|
3
|
+
rbx.platform.typedef.__char32_t = uint
|
4
|
+
rbx.platform.typedef.__clock_t = ulong
|
5
|
+
rbx.platform.typedef.__clockid_t = ulong
|
6
|
+
rbx.platform.typedef.__ct_rune_t = int
|
7
|
+
rbx.platform.typedef.__fd_mask = ulong
|
8
|
+
rbx.platform.typedef.__int16_t = short
|
9
|
+
rbx.platform.typedef.__int32_t = int
|
10
|
+
rbx.platform.typedef.__int64_t = long
|
11
|
+
rbx.platform.typedef.__int8_t = char
|
12
|
+
rbx.platform.typedef.__int_fast16_t = int
|
13
|
+
rbx.platform.typedef.__int_fast32_t = int
|
14
|
+
rbx.platform.typedef.__int_fast64_t = long
|
15
|
+
rbx.platform.typedef.__int_fast8_t = int
|
16
|
+
rbx.platform.typedef.__int_least16_t = short
|
17
|
+
rbx.platform.typedef.__int_least32_t = int
|
18
|
+
rbx.platform.typedef.__int_least64_t = long
|
19
|
+
rbx.platform.typedef.__int_least8_t = char
|
20
|
+
rbx.platform.typedef.__intmax_t = long
|
21
|
+
rbx.platform.typedef.__intptr_t = long
|
22
|
+
rbx.platform.typedef.__nl_item = int
|
23
|
+
rbx.platform.typedef.__off_t = long
|
24
|
+
rbx.platform.typedef.__pid_t = int
|
25
|
+
rbx.platform.typedef.__ptrdiff_t = long
|
26
|
+
rbx.platform.typedef.__register_t = long
|
27
|
+
rbx.platform.typedef.__rlim_t = long
|
28
|
+
rbx.platform.typedef.__rune_t = int
|
29
|
+
rbx.platform.typedef.__segsz_t = long
|
30
|
+
rbx.platform.typedef.__sig_atomic_t = int
|
31
|
+
rbx.platform.typedef.__size_t = ulong
|
32
|
+
rbx.platform.typedef.__socklen_t = uint
|
33
|
+
rbx.platform.typedef.__ssize_t = long
|
34
|
+
rbx.platform.typedef.__suseconds_t = long
|
35
|
+
rbx.platform.typedef.__time_t = long
|
36
|
+
rbx.platform.typedef.__timer_t = int
|
37
|
+
rbx.platform.typedef.__u_register_t = ulong
|
38
|
+
rbx.platform.typedef.__uint16_t = ushort
|
39
|
+
rbx.platform.typedef.__uint32_t = uint
|
40
|
+
rbx.platform.typedef.__uint64_t = ulong
|
41
|
+
rbx.platform.typedef.__uint8_t = uchar
|
42
|
+
rbx.platform.typedef.__uint_fast16_t = uint
|
43
|
+
rbx.platform.typedef.__uint_fast32_t = uint
|
44
|
+
rbx.platform.typedef.__uint_fast64_t = ulong
|
45
|
+
rbx.platform.typedef.__uint_fast8_t = uint
|
46
|
+
rbx.platform.typedef.__uint_least16_t = ushort
|
47
|
+
rbx.platform.typedef.__uint_least32_t = uint
|
48
|
+
rbx.platform.typedef.__uint_least64_t = ulong
|
49
|
+
rbx.platform.typedef.__uint_least8_t = uchar
|
50
|
+
rbx.platform.typedef.__uintmax_t = ulong
|
51
|
+
rbx.platform.typedef.__uintptr_t = ulong
|
52
|
+
rbx.platform.typedef.__wchar_t = int
|
53
|
+
rbx.platform.typedef.__wint_t = int
|
54
|
+
rbx.platform.typedef.blkcnt_t = long
|
55
|
+
rbx.platform.typedef.blksize_t = long
|
56
|
+
rbx.platform.typedef.c_caddr_t = pointer
|
57
|
+
rbx.platform.typedef.caddr_t = string
|
58
|
+
rbx.platform.typedef.clock_t = ulong
|
59
|
+
rbx.platform.typedef.clockid_t = ulong
|
60
|
+
rbx.platform.typedef.cpulock_t = uint
|
61
|
+
rbx.platform.typedef.daddr_t = int
|
62
|
+
rbx.platform.typedef.dev_t = uint
|
63
|
+
rbx.platform.typedef.fixpt_t = uint
|
64
|
+
rbx.platform.typedef.fsblkcnt_t = ulong
|
65
|
+
rbx.platform.typedef.fsfilcnt_t = ulong
|
66
|
+
rbx.platform.typedef.gid_t = uint
|
67
|
+
rbx.platform.typedef.id_t = long
|
68
|
+
rbx.platform.typedef.in_addr_t = uint
|
69
|
+
rbx.platform.typedef.in_port_t = ushort
|
70
|
+
rbx.platform.typedef.ino_t = ulong
|
71
|
+
rbx.platform.typedef.int16_t = short
|
72
|
+
rbx.platform.typedef.int32_t = int
|
73
|
+
rbx.platform.typedef.int64_t = long
|
74
|
+
rbx.platform.typedef.int8_t = char
|
75
|
+
rbx.platform.typedef.int_fast16_t = int
|
76
|
+
rbx.platform.typedef.int_fast32_t = int
|
77
|
+
rbx.platform.typedef.int_fast64_t = long
|
78
|
+
rbx.platform.typedef.int_fast8_t = int
|
79
|
+
rbx.platform.typedef.int_least16_t = short
|
80
|
+
rbx.platform.typedef.int_least32_t = int
|
81
|
+
rbx.platform.typedef.int_least64_t = long
|
82
|
+
rbx.platform.typedef.int_least8_t = char
|
83
|
+
rbx.platform.typedef.intmax_t = long
|
84
|
+
rbx.platform.typedef.intptr_t = long
|
85
|
+
rbx.platform.typedef.key_t = long
|
86
|
+
rbx.platform.typedef.lwpid_t = int
|
87
|
+
rbx.platform.typedef.mode_t = ushort
|
88
|
+
rbx.platform.typedef.mqd_t = int
|
89
|
+
rbx.platform.typedef.nlink_t = uint
|
90
|
+
rbx.platform.typedef.off_t = long
|
91
|
+
rbx.platform.typedef.pd_entry_t = ulong
|
92
|
+
rbx.platform.typedef.pdp_entry_t = ulong
|
93
|
+
rbx.platform.typedef.pid_t = int
|
94
|
+
rbx.platform.typedef.pml4_entry_t = ulong
|
95
|
+
rbx.platform.typedef.pt_entry_t = ulong
|
96
|
+
rbx.platform.typedef.pthread_key_t = int
|
97
|
+
rbx.platform.typedef.ptrdiff_t = long
|
98
|
+
rbx.platform.typedef.qaddr_t = pointer
|
99
|
+
rbx.platform.typedef.quad_t = long
|
100
|
+
rbx.platform.typedef.register_t = long
|
101
|
+
rbx.platform.typedef.rlim_t = long
|
102
|
+
rbx.platform.typedef.sa_family_t = uchar
|
103
|
+
rbx.platform.typedef.segsz_t = long
|
104
|
+
rbx.platform.typedef.size_t = ulong
|
105
|
+
rbx.platform.typedef.socklen_t = uint
|
106
|
+
rbx.platform.typedef.ssize_t = long
|
107
|
+
rbx.platform.typedef.suseconds_t = long
|
108
|
+
rbx.platform.typedef.time_t = long
|
109
|
+
rbx.platform.typedef.timer_t = int
|
110
|
+
rbx.platform.typedef.u_char = uchar
|
111
|
+
rbx.platform.typedef.u_daddr_t = uint
|
112
|
+
rbx.platform.typedef.u_int = uint
|
113
|
+
rbx.platform.typedef.u_int16_t = ushort
|
114
|
+
rbx.platform.typedef.u_int32_t = uint
|
115
|
+
rbx.platform.typedef.u_int64_t = ulong
|
116
|
+
rbx.platform.typedef.u_int8_t = uchar
|
117
|
+
rbx.platform.typedef.u_long = ulong
|
118
|
+
rbx.platform.typedef.u_quad_t = ulong
|
119
|
+
rbx.platform.typedef.u_register_t = ulong
|
120
|
+
rbx.platform.typedef.u_short = ushort
|
121
|
+
rbx.platform.typedef.uid_t = uint
|
122
|
+
rbx.platform.typedef.uint = uint
|
123
|
+
rbx.platform.typedef.uint16_t = ushort
|
124
|
+
rbx.platform.typedef.uint32_t = uint
|
125
|
+
rbx.platform.typedef.uint64_t = ulong
|
126
|
+
rbx.platform.typedef.uint8_t = uchar
|
127
|
+
rbx.platform.typedef.uint_fast16_t = uint
|
128
|
+
rbx.platform.typedef.uint_fast32_t = uint
|
129
|
+
rbx.platform.typedef.uint_fast64_t = ulong
|
130
|
+
rbx.platform.typedef.uint_fast8_t = uint
|
131
|
+
rbx.platform.typedef.uint_least16_t = ushort
|
132
|
+
rbx.platform.typedef.uint_least32_t = uint
|
133
|
+
rbx.platform.typedef.uint_least64_t = ulong
|
134
|
+
rbx.platform.typedef.uint_least8_t = uchar
|
135
|
+
rbx.platform.typedef.uintmax_t = ulong
|
136
|
+
rbx.platform.typedef.uintptr_t = ulong
|
137
|
+
rbx.platform.typedef.ulong = ulong
|
138
|
+
rbx.platform.typedef.unchar = uchar
|
139
|
+
rbx.platform.typedef.useconds_t = uint
|
140
|
+
rbx.platform.typedef.ushort = ushort
|
141
|
+
rbx.platform.typedef.v_caddr_t = pointer
|
142
|
+
rbx.platform.typedef.vm_offset_t = ulong
|
143
|
+
rbx.platform.typedef.vm_ooffset_t = long
|
144
|
+
rbx.platform.typedef.vm_paddr_t = ulong
|
145
|
+
rbx.platform.typedef.vm_pindex_t = ulong
|
146
|
+
rbx.platform.typedef.vm_poff_t = ulong
|
147
|
+
rbx.platform.typedef.vm_size_t = ulong
|
148
|
+
rbx.platform.typedef.vm_spindex_t = ulong
|
@@ -1,128 +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 = long_long
|
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
1
|
rbx.platform.typedef.__clock_t = int
|
35
2
|
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 = long
|
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
3
|
rbx.platform.typedef.__cpuid_t = ulong
|
48
4
|
rbx.platform.typedef.__dev_t = int
|
5
|
+
rbx.platform.typedef.__fd_mask = int
|
49
6
|
rbx.platform.typedef.__fixpt_t = uint
|
50
7
|
rbx.platform.typedef.__gid_t = uint
|
51
8
|
rbx.platform.typedef.__id_t = uint
|
52
9
|
rbx.platform.typedef.__in_addr_t = uint
|
53
10
|
rbx.platform.typedef.__in_port_t = ushort
|
54
11
|
rbx.platform.typedef.__ino_t = uint
|
12
|
+
rbx.platform.typedef.__int16_t = short
|
13
|
+
rbx.platform.typedef.__int32_t = int
|
14
|
+
rbx.platform.typedef.__int64_t = long_long
|
15
|
+
rbx.platform.typedef.__int8_t = char
|
16
|
+
rbx.platform.typedef.__int_fast16_t = int
|
17
|
+
rbx.platform.typedef.__int_fast32_t = int
|
18
|
+
rbx.platform.typedef.__int_fast64_t = long_long
|
19
|
+
rbx.platform.typedef.__int_fast8_t = int
|
20
|
+
rbx.platform.typedef.__int_least16_t = short
|
21
|
+
rbx.platform.typedef.__int_least32_t = int
|
22
|
+
rbx.platform.typedef.__int_least64_t = long_long
|
23
|
+
rbx.platform.typedef.__int_least8_t = char
|
24
|
+
rbx.platform.typedef.__intmax_t = long_long
|
25
|
+
rbx.platform.typedef.__intptr_t = long
|
55
26
|
rbx.platform.typedef.__key_t = long
|
56
27
|
rbx.platform.typedef.__mode_t = uint
|
57
28
|
rbx.platform.typedef.__nlink_t = uint
|
29
|
+
rbx.platform.typedef.__off_t = long_long
|
30
|
+
rbx.platform.typedef.__paddr_t = ulong
|
58
31
|
rbx.platform.typedef.__pid_t = int
|
32
|
+
rbx.platform.typedef.__psize_t = ulong
|
33
|
+
rbx.platform.typedef.__ptrdiff_t = long
|
34
|
+
rbx.platform.typedef.__register_t = long_long
|
59
35
|
rbx.platform.typedef.__rlim_t = ulong_long
|
36
|
+
rbx.platform.typedef.__rune_t = int
|
60
37
|
rbx.platform.typedef.__sa_family_t = uchar
|
61
38
|
rbx.platform.typedef.__segsz_t = int
|
39
|
+
rbx.platform.typedef.__size_t = ulong
|
62
40
|
rbx.platform.typedef.__socklen_t = uint
|
41
|
+
rbx.platform.typedef.__ssize_t = long
|
42
|
+
rbx.platform.typedef.__suseconds_t = long
|
63
43
|
rbx.platform.typedef.__swblk_t = int
|
44
|
+
rbx.platform.typedef.__time_t = long
|
45
|
+
rbx.platform.typedef.__timer_t = int
|
64
46
|
rbx.platform.typedef.__uid_t = uint
|
47
|
+
rbx.platform.typedef.__uint16_t = ushort
|
48
|
+
rbx.platform.typedef.__uint32_t = uint
|
49
|
+
rbx.platform.typedef.__uint64_t = ulong_long
|
50
|
+
rbx.platform.typedef.__uint8_t = uchar
|
51
|
+
rbx.platform.typedef.__uint_fast16_t = uint
|
52
|
+
rbx.platform.typedef.__uint_fast32_t = uint
|
53
|
+
rbx.platform.typedef.__uint_fast64_t = ulong_long
|
54
|
+
rbx.platform.typedef.__uint_fast8_t = uint
|
55
|
+
rbx.platform.typedef.__uint_least16_t = ushort
|
56
|
+
rbx.platform.typedef.__uint_least32_t = uint
|
57
|
+
rbx.platform.typedef.__uint_least64_t = ulong_long
|
58
|
+
rbx.platform.typedef.__uint_least8_t = uchar
|
59
|
+
rbx.platform.typedef.__uintmax_t = ulong_long
|
60
|
+
rbx.platform.typedef.__uintptr_t = ulong
|
65
61
|
rbx.platform.typedef.__useconds_t = uint
|
66
|
-
rbx.platform.typedef.
|
67
|
-
rbx.platform.typedef.
|
68
|
-
rbx.platform.typedef.
|
69
|
-
rbx.platform.typedef.
|
70
|
-
rbx.platform.typedef.
|
71
|
-
rbx.platform.typedef.
|
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 = long_long
|
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
|
62
|
+
rbx.platform.typedef.__vaddr_t = ulong
|
63
|
+
rbx.platform.typedef.__vsize_t = ulong
|
64
|
+
rbx.platform.typedef.__wchar_t = int
|
65
|
+
rbx.platform.typedef.__wctrans_t = pointer
|
66
|
+
rbx.platform.typedef.__wctype_t = pointer
|
67
|
+
rbx.platform.typedef.__wint_t = int
|
98
68
|
rbx.platform.typedef.caddr_t = string
|
99
|
-
rbx.platform.typedef.
|
69
|
+
rbx.platform.typedef.clock_t = int
|
70
|
+
rbx.platform.typedef.clockid_t = int
|
71
|
+
rbx.platform.typedef.cpuid_t = ulong
|
100
72
|
rbx.platform.typedef.daddr32_t = int
|
101
73
|
rbx.platform.typedef.daddr64_t = long_long
|
74
|
+
rbx.platform.typedef.daddr_t = int
|
102
75
|
rbx.platform.typedef.dev_t = int
|
103
76
|
rbx.platform.typedef.fixpt_t = uint
|
104
77
|
rbx.platform.typedef.gid_t = uint
|
105
78
|
rbx.platform.typedef.id_t = uint
|
79
|
+
rbx.platform.typedef.in_addr_t = uint
|
80
|
+
rbx.platform.typedef.in_port_t = ushort
|
106
81
|
rbx.platform.typedef.ino_t = uint
|
82
|
+
rbx.platform.typedef.int16_t = short
|
83
|
+
rbx.platform.typedef.int32_t = int
|
84
|
+
rbx.platform.typedef.int64_t = long_long
|
85
|
+
rbx.platform.typedef.int8_t = char
|
86
|
+
rbx.platform.typedef.intptr_t = long
|
107
87
|
rbx.platform.typedef.key_t = long
|
108
88
|
rbx.platform.typedef.mode_t = uint
|
109
89
|
rbx.platform.typedef.nlink_t = uint
|
90
|
+
rbx.platform.typedef.off_t = long_long
|
91
|
+
rbx.platform.typedef.paddr_t = ulong
|
110
92
|
rbx.platform.typedef.pid_t = int
|
93
|
+
rbx.platform.typedef.psize_t = ulong
|
94
|
+
rbx.platform.typedef.qaddr_t = pointer
|
95
|
+
rbx.platform.typedef.quad_t = long_long
|
96
|
+
rbx.platform.typedef.register_t = long_long
|
111
97
|
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 = long
|
117
|
-
rbx.platform.typedef.in_addr_t = uint
|
118
|
-
rbx.platform.typedef.in_port_t = ushort
|
119
98
|
rbx.platform.typedef.sa_family_t = uchar
|
120
|
-
rbx.platform.typedef.
|
121
|
-
rbx.platform.typedef.clock_t = int
|
122
|
-
rbx.platform.typedef.clockid_t = int
|
99
|
+
rbx.platform.typedef.segsz_t = int
|
123
100
|
rbx.platform.typedef.size_t = ulong
|
101
|
+
rbx.platform.typedef.socklen_t = uint
|
124
102
|
rbx.platform.typedef.ssize_t = long
|
103
|
+
rbx.platform.typedef.suseconds_t = long
|
104
|
+
rbx.platform.typedef.swblk_t = int
|
125
105
|
rbx.platform.typedef.time_t = long
|
126
106
|
rbx.platform.typedef.timer_t = int
|
127
|
-
rbx.platform.typedef.
|
128
|
-
rbx.platform.typedef.
|
107
|
+
rbx.platform.typedef.u_char = uchar
|
108
|
+
rbx.platform.typedef.u_int = uint
|
109
|
+
rbx.platform.typedef.u_int16_t = ushort
|
110
|
+
rbx.platform.typedef.u_int32_t = uint
|
111
|
+
rbx.platform.typedef.u_int64_t = ulong_long
|
112
|
+
rbx.platform.typedef.u_int8_t = uchar
|
113
|
+
rbx.platform.typedef.u_long = ulong
|
114
|
+
rbx.platform.typedef.u_quad_t = ulong_long
|
115
|
+
rbx.platform.typedef.u_short = ushort
|
116
|
+
rbx.platform.typedef.uid_t = uint
|
117
|
+
rbx.platform.typedef.uint = uint
|
118
|
+
rbx.platform.typedef.uint16_t = ushort
|
119
|
+
rbx.platform.typedef.uint32_t = uint
|
120
|
+
rbx.platform.typedef.uint64_t = ulong_long
|
121
|
+
rbx.platform.typedef.uint8_t = uchar
|
122
|
+
rbx.platform.typedef.uintptr_t = ulong
|
123
|
+
rbx.platform.typedef.ulong = ulong
|
124
|
+
rbx.platform.typedef.unchar = uchar
|
125
|
+
rbx.platform.typedef.useconds_t = uint
|
126
|
+
rbx.platform.typedef.ushort = ushort
|
127
|
+
rbx.platform.typedef.vaddr_t = ulong
|
128
|
+
rbx.platform.typedef.vsize_t = ulong
|