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,104 +1,104 @@
|
|
1
|
-
rbx.platform.typedef
|
2
|
-
rbx.platform.typedef
|
3
|
-
rbx.platform.typedef.
|
4
|
-
rbx.platform.typedef.
|
5
|
-
rbx.platform.typedef.
|
6
|
-
rbx.platform.typedef.
|
7
|
-
rbx.platform.typedef.
|
8
|
-
rbx.platform.typedef.
|
9
|
-
rbx.platform.typedef.__int32_t = int
|
10
|
-
rbx.platform.typedef.__uint32_t = uint
|
11
|
-
rbx.platform.typedef.__int64_t = long
|
12
|
-
rbx.platform.typedef.__uint64_t = ulong
|
13
|
-
rbx.platform.typedef.__quad_t = long
|
14
|
-
rbx.platform.typedef.__u_quad_t = ulong
|
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
|
15
9
|
rbx.platform.typedef.__dev_t = ulong
|
16
|
-
rbx.platform.typedef.
|
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.__fsword_t = long
|
17
16
|
rbx.platform.typedef.__gid_t = uint
|
18
|
-
rbx.platform.typedef.
|
17
|
+
rbx.platform.typedef.__id_t = uint
|
19
18
|
rbx.platform.typedef.__ino64_t = ulong
|
19
|
+
rbx.platform.typedef.__ino_t = ulong
|
20
|
+
rbx.platform.typedef.__int16_t = short
|
21
|
+
rbx.platform.typedef.__int32_t = int
|
22
|
+
rbx.platform.typedef.__int64_t = long
|
23
|
+
rbx.platform.typedef.__int8_t = char
|
24
|
+
rbx.platform.typedef.__intptr_t = long
|
25
|
+
rbx.platform.typedef.__key_t = int
|
26
|
+
rbx.platform.typedef.__loff_t = long
|
20
27
|
rbx.platform.typedef.__mode_t = uint
|
21
28
|
rbx.platform.typedef.__nlink_t = ulong
|
22
|
-
rbx.platform.typedef.__off_t = long
|
23
29
|
rbx.platform.typedef.__off64_t = long
|
30
|
+
rbx.platform.typedef.__off_t = long
|
24
31
|
rbx.platform.typedef.__pid_t = int
|
25
|
-
rbx.platform.typedef.
|
26
|
-
rbx.platform.typedef.
|
32
|
+
rbx.platform.typedef.__priority_which_t = int
|
33
|
+
rbx.platform.typedef.__quad_t = long
|
27
34
|
rbx.platform.typedef.__rlim64_t = ulong
|
28
|
-
rbx.platform.typedef.
|
29
|
-
rbx.platform.typedef.
|
30
|
-
rbx.platform.typedef.
|
31
|
-
rbx.platform.typedef.
|
32
|
-
rbx.platform.typedef.
|
33
|
-
rbx.platform.typedef.__key_t = int
|
34
|
-
rbx.platform.typedef.__clockid_t = int
|
35
|
-
rbx.platform.typedef.__timer_t = pointer
|
36
|
-
rbx.platform.typedef.__blksize_t = long
|
37
|
-
rbx.platform.typedef.__blkcnt_t = long
|
38
|
-
rbx.platform.typedef.__blkcnt64_t = long
|
39
|
-
rbx.platform.typedef.__fsblkcnt_t = ulong
|
40
|
-
rbx.platform.typedef.__fsblkcnt64_t = ulong
|
41
|
-
rbx.platform.typedef.__fsfilcnt_t = ulong
|
42
|
-
rbx.platform.typedef.__fsfilcnt64_t = ulong
|
43
|
-
rbx.platform.typedef.__fsword_t = long
|
35
|
+
rbx.platform.typedef.__rlim_t = ulong
|
36
|
+
rbx.platform.typedef.__rlimit_resource_t = int
|
37
|
+
rbx.platform.typedef.__rusage_who_t = int
|
38
|
+
rbx.platform.typedef.__sig_atomic_t = int
|
39
|
+
rbx.platform.typedef.__socklen_t = uint
|
44
40
|
rbx.platform.typedef.__ssize_t = long
|
41
|
+
rbx.platform.typedef.__suseconds_t = long
|
45
42
|
rbx.platform.typedef.__syscall_slong_t = long
|
46
43
|
rbx.platform.typedef.__syscall_ulong_t = ulong
|
47
|
-
rbx.platform.typedef.
|
48
|
-
rbx.platform.typedef
|
49
|
-
rbx.platform.typedef
|
50
|
-
rbx.platform.typedef.
|
51
|
-
rbx.platform.typedef.
|
52
|
-
rbx.platform.typedef.
|
53
|
-
rbx.platform.typedef.
|
54
|
-
rbx.platform.typedef.
|
55
|
-
rbx.platform.typedef.
|
56
|
-
rbx.platform.typedef.
|
57
|
-
rbx.platform.typedef.
|
58
|
-
rbx.platform.typedef.
|
59
|
-
rbx.platform.typedef.
|
44
|
+
rbx.platform.typedef.__time_t = long
|
45
|
+
rbx.platform.typedef.__timer_t = pointer
|
46
|
+
rbx.platform.typedef.__u_char = uchar
|
47
|
+
rbx.platform.typedef.__u_int = uint
|
48
|
+
rbx.platform.typedef.__u_long = ulong
|
49
|
+
rbx.platform.typedef.__u_quad_t = ulong
|
50
|
+
rbx.platform.typedef.__u_short = ushort
|
51
|
+
rbx.platform.typedef.__uid_t = uint
|
52
|
+
rbx.platform.typedef.__uint16_t = ushort
|
53
|
+
rbx.platform.typedef.__uint32_t = uint
|
54
|
+
rbx.platform.typedef.__uint64_t = ulong
|
55
|
+
rbx.platform.typedef.__uint8_t = uchar
|
56
|
+
rbx.platform.typedef.__useconds_t = uint
|
57
|
+
rbx.platform.typedef.blkcnt_t = long
|
58
|
+
rbx.platform.typedef.blksize_t = long
|
59
|
+
rbx.platform.typedef.clock_t = long
|
60
|
+
rbx.platform.typedef.clockid_t = int
|
61
|
+
rbx.platform.typedef.daddr_t = int
|
60
62
|
rbx.platform.typedef.dev_t = ulong
|
63
|
+
rbx.platform.typedef.fd_mask = long
|
64
|
+
rbx.platform.typedef.fsblkcnt_t = ulong
|
65
|
+
rbx.platform.typedef.fsfilcnt_t = ulong
|
61
66
|
rbx.platform.typedef.gid_t = uint
|
67
|
+
rbx.platform.typedef.id_t = uint
|
68
|
+
rbx.platform.typedef.ino_t = ulong
|
69
|
+
rbx.platform.typedef.int16_t = short
|
70
|
+
rbx.platform.typedef.int32_t = int
|
71
|
+
rbx.platform.typedef.int64_t = long_long
|
72
|
+
rbx.platform.typedef.int8_t = char
|
73
|
+
rbx.platform.typedef.key_t = int
|
74
|
+
rbx.platform.typedef.loff_t = long
|
62
75
|
rbx.platform.typedef.mode_t = uint
|
63
76
|
rbx.platform.typedef.nlink_t = ulong
|
64
|
-
rbx.platform.typedef.uid_t = uint
|
65
77
|
rbx.platform.typedef.off_t = long
|
66
78
|
rbx.platform.typedef.pid_t = int
|
67
|
-
rbx.platform.typedef.
|
79
|
+
rbx.platform.typedef.pthread_key_t = uint
|
80
|
+
rbx.platform.typedef.pthread_once_t = int
|
81
|
+
rbx.platform.typedef.pthread_t = ulong
|
82
|
+
rbx.platform.typedef.quad_t = long
|
83
|
+
rbx.platform.typedef.register_t = long
|
84
|
+
rbx.platform.typedef.rlim_t = ulong
|
85
|
+
rbx.platform.typedef.sa_family_t = ushort
|
86
|
+
rbx.platform.typedef.size_t = ulong
|
87
|
+
rbx.platform.typedef.socklen_t = uint
|
68
88
|
rbx.platform.typedef.ssize_t = long
|
69
|
-
rbx.platform.typedef.
|
70
|
-
rbx.platform.typedef.key_t = int
|
71
|
-
rbx.platform.typedef.clock_t = long
|
89
|
+
rbx.platform.typedef.suseconds_t = long
|
72
90
|
rbx.platform.typedef.time_t = long
|
73
|
-
rbx.platform.typedef.clockid_t = int
|
74
91
|
rbx.platform.typedef.timer_t = pointer
|
75
|
-
rbx.platform.typedef.
|
76
|
-
rbx.platform.typedef.
|
77
|
-
rbx.platform.typedef.ushort = ushort
|
78
|
-
rbx.platform.typedef.uint = uint
|
79
|
-
rbx.platform.typedef.int8_t = char
|
80
|
-
rbx.platform.typedef.int16_t = short
|
81
|
-
rbx.platform.typedef.int32_t = int
|
82
|
-
rbx.platform.typedef.int64_t = long_long
|
83
|
-
rbx.platform.typedef.u_int8_t = uchar
|
92
|
+
rbx.platform.typedef.u_char = uchar
|
93
|
+
rbx.platform.typedef.u_int = uint
|
84
94
|
rbx.platform.typedef.u_int16_t = ushort
|
85
95
|
rbx.platform.typedef.u_int32_t = uint
|
86
96
|
rbx.platform.typedef.u_int64_t = ulong_long
|
87
|
-
rbx.platform.typedef.
|
88
|
-
rbx.platform.typedef.
|
89
|
-
rbx.platform.typedef.
|
90
|
-
rbx.platform.typedef.
|
91
|
-
rbx.platform.typedef.
|
92
|
-
rbx.platform.typedef.
|
93
|
-
rbx.platform.typedef.
|
94
|
-
rbx.platform.typedef.
|
95
|
-
rbx.platform.typedef.fsfilcnt_t = ulong
|
96
|
-
rbx.platform.typedef.pthread_t = ulong
|
97
|
-
rbx.platform.typedef.pthread_key_t = uint
|
98
|
-
rbx.platform.typedef.pthread_once_t = int
|
99
|
-
rbx.platform.typedef.socklen_t = uint
|
100
|
-
rbx.platform.typedef.sa_family_t = ushort
|
101
|
-
rbx.platform.typedef.rlim_t = ulong
|
102
|
-
rbx.platform.typedef.__rlimit_resource_t = int
|
103
|
-
rbx.platform.typedef.__rusage_who_t = int
|
104
|
-
rbx.platform.typedef.__priority_which_t = int
|
97
|
+
rbx.platform.typedef.u_int8_t = uchar
|
98
|
+
rbx.platform.typedef.u_long = ulong
|
99
|
+
rbx.platform.typedef.u_quad_t = ulong
|
100
|
+
rbx.platform.typedef.u_short = ushort
|
101
|
+
rbx.platform.typedef.uid_t = uint
|
102
|
+
rbx.platform.typedef.uint = uint
|
103
|
+
rbx.platform.typedef.ulong = ulong
|
104
|
+
rbx.platform.typedef.ushort = ushort
|
@@ -1,180 +1,180 @@
|
|
1
|
-
rbx.platform.typedef.
|
1
|
+
rbx.platform.typedef.UTF32Char = uint
|
2
|
+
rbx.platform.typedef.UniChar = ushort
|
3
|
+
rbx.platform.typedef.__cptr32 = string
|
4
|
+
rbx.platform.typedef.__cptr64 = ulong_long
|
5
|
+
rbx.platform.typedef.__long32_t = long
|
6
|
+
rbx.platform.typedef.__long64_t = int
|
7
|
+
rbx.platform.typedef.__ptr32 = pointer
|
8
|
+
rbx.platform.typedef.__ptr64 = ulong_long
|
9
|
+
rbx.platform.typedef.__ulong32_t = ulong
|
10
|
+
rbx.platform.typedef.__ulong64_t = uint
|
11
|
+
rbx.platform.typedef.aptx_t = ushort
|
12
|
+
rbx.platform.typedef.blkcnt32_t = int
|
13
|
+
rbx.platform.typedef.blkcnt64_t = ulong_long
|
14
|
+
rbx.platform.typedef.blkcnt_t = int
|
15
|
+
rbx.platform.typedef.blksize32_t = int
|
16
|
+
rbx.platform.typedef.blksize64_t = ulong_long
|
17
|
+
rbx.platform.typedef.blksize_t = int
|
18
|
+
rbx.platform.typedef.boolean_t = int
|
19
|
+
rbx.platform.typedef.caddr_t = string
|
20
|
+
rbx.platform.typedef.chan_t = int
|
21
|
+
rbx.platform.typedef.class_id_t = uint
|
22
|
+
rbx.platform.typedef.clock_t = int
|
23
|
+
rbx.platform.typedef.clockid_t = long_long
|
24
|
+
rbx.platform.typedef.cnt64_t = long_long
|
25
|
+
rbx.platform.typedef.cnt_t = short
|
26
|
+
rbx.platform.typedef.crid_t = int
|
27
|
+
rbx.platform.typedef.daddr32_t = int
|
28
|
+
rbx.platform.typedef.daddr64_t = long_long
|
29
|
+
rbx.platform.typedef.daddr_t = int
|
30
|
+
rbx.platform.typedef.dev32_t = uint
|
31
|
+
rbx.platform.typedef.dev64_t = ulong_long
|
32
|
+
rbx.platform.typedef.dev_t = uint
|
33
|
+
rbx.platform.typedef.esid_t = uint
|
34
|
+
rbx.platform.typedef.ext_t = int
|
35
|
+
rbx.platform.typedef.fpos64_t = long_long
|
36
|
+
rbx.platform.typedef.fpos_t = long
|
37
|
+
rbx.platform.typedef.fsblkcnt_t = ulong
|
38
|
+
rbx.platform.typedef.fsfilcnt_t = ulong
|
39
|
+
rbx.platform.typedef.gid_t = uint
|
40
|
+
rbx.platform.typedef.id_t = uint
|
41
|
+
rbx.platform.typedef.ino32_t = uint
|
42
|
+
rbx.platform.typedef.ino64_t = ulong_long
|
43
|
+
rbx.platform.typedef.ino_t = uint
|
44
|
+
rbx.platform.typedef.int16 = short
|
2
45
|
rbx.platform.typedef.int16_t = short
|
46
|
+
rbx.platform.typedef.int32 = int
|
3
47
|
rbx.platform.typedef.int32_t = int
|
48
|
+
rbx.platform.typedef.int32long64_t = int
|
49
|
+
rbx.platform.typedef.int64 = long_long
|
4
50
|
rbx.platform.typedef.int64_t = long_long
|
5
|
-
rbx.platform.typedef.
|
6
|
-
rbx.platform.typedef.
|
7
|
-
rbx.platform.typedef.uint32_t = uint
|
8
|
-
rbx.platform.typedef.uint64_t = ulong_long
|
9
|
-
rbx.platform.typedef.intmax_t = long_long
|
10
|
-
rbx.platform.typedef.uintmax_t = ulong_long
|
11
|
-
rbx.platform.typedef.intptr_t = long
|
12
|
-
rbx.platform.typedef.uintptr_t = ulong
|
13
|
-
rbx.platform.typedef.int_least8_t = char
|
14
|
-
rbx.platform.typedef.int_least16_t = short
|
15
|
-
rbx.platform.typedef.int_least32_t = int
|
16
|
-
rbx.platform.typedef.int_least64_t = long_long
|
17
|
-
rbx.platform.typedef.uint_least8_t = uchar
|
18
|
-
rbx.platform.typedef.uint_least16_t = ushort
|
19
|
-
rbx.platform.typedef.uint_least32_t = uint
|
20
|
-
rbx.platform.typedef.uint_least64_t = ulong_long
|
21
|
-
rbx.platform.typedef.int_fast8_t = char
|
51
|
+
rbx.platform.typedef.int8 = char
|
52
|
+
rbx.platform.typedef.int8_t = char
|
22
53
|
rbx.platform.typedef.int_fast16_t = short
|
23
54
|
rbx.platform.typedef.int_fast32_t = int
|
24
|
-
rbx.platform.typedef.uint_fast8_t = uchar
|
25
|
-
rbx.platform.typedef.uint_fast16_t = ushort
|
26
|
-
rbx.platform.typedef.uint_fast32_t = uint
|
27
55
|
rbx.platform.typedef.int_fast64_t = long_long
|
28
|
-
rbx.platform.typedef.
|
29
|
-
rbx.platform.typedef.
|
56
|
+
rbx.platform.typedef.int_fast8_t = char
|
57
|
+
rbx.platform.typedef.int_least16_t = short
|
58
|
+
rbx.platform.typedef.int_least32_t = int
|
59
|
+
rbx.platform.typedef.int_least64_t = long_long
|
60
|
+
rbx.platform.typedef.int_least8_t = char
|
30
61
|
rbx.platform.typedef.intfast_t = int
|
31
|
-
rbx.platform.typedef.
|
32
|
-
rbx.platform.typedef.
|
33
|
-
rbx.platform.typedef.
|
34
|
-
rbx.platform.typedef.
|
35
|
-
rbx.platform.typedef.
|
36
|
-
rbx.platform.typedef.
|
37
|
-
rbx.platform.typedef.
|
62
|
+
rbx.platform.typedef.intmax_t = long_long
|
63
|
+
rbx.platform.typedef.intptr_t = long
|
64
|
+
rbx.platform.typedef.key_t = int
|
65
|
+
rbx.platform.typedef.krpn_t = int
|
66
|
+
rbx.platform.typedef.kvmhandle_t = ulong
|
67
|
+
rbx.platform.typedef.kvmid_t = long
|
68
|
+
rbx.platform.typedef.kvpn_t = int
|
69
|
+
rbx.platform.typedef.level_t = int
|
70
|
+
rbx.platform.typedef.liobn_t = uint
|
38
71
|
rbx.platform.typedef.long32int64_t = long
|
39
|
-
rbx.platform.typedef.
|
40
|
-
rbx.platform.typedef.
|
41
|
-
rbx.platform.typedef.
|
42
|
-
rbx.platform.typedef.
|
43
|
-
rbx.platform.typedef.
|
44
|
-
rbx.platform.typedef.
|
45
|
-
rbx.platform.typedef.
|
46
|
-
rbx.platform.typedef.
|
47
|
-
rbx.platform.typedef.
|
48
|
-
rbx.platform.typedef.
|
49
|
-
rbx.platform.typedef.
|
50
|
-
rbx.platform.typedef.
|
51
|
-
rbx.platform.typedef.
|
72
|
+
rbx.platform.typedef.longlong_t = long_long
|
73
|
+
rbx.platform.typedef.mid_t = pointer
|
74
|
+
rbx.platform.typedef.mode_t = uint
|
75
|
+
rbx.platform.typedef.mtyp_t = long
|
76
|
+
rbx.platform.typedef.nlink_t = short
|
77
|
+
rbx.platform.typedef.off64_t = long_long
|
78
|
+
rbx.platform.typedef.off_t = long
|
79
|
+
rbx.platform.typedef.offset_t = long_long
|
80
|
+
rbx.platform.typedef.paddr_t = long
|
81
|
+
rbx.platform.typedef.pdtx_t = int
|
82
|
+
rbx.platform.typedef.pid32_t = int
|
83
|
+
rbx.platform.typedef.pid64_t = ulong_long
|
84
|
+
rbx.platform.typedef.pid_t = int
|
85
|
+
rbx.platform.typedef.pshift_t = ushort
|
86
|
+
rbx.platform.typedef.psize_t = long_long
|
87
|
+
rbx.platform.typedef.psx_t = short
|
88
|
+
rbx.platform.typedef.ptex_t = ulong
|
89
|
+
rbx.platform.typedef.pthread_key_t = uint
|
90
|
+
rbx.platform.typedef.pthread_t = uint
|
52
91
|
rbx.platform.typedef.ptrdiff_t = long
|
53
|
-
rbx.platform.typedef.
|
54
|
-
rbx.platform.typedef.
|
55
|
-
rbx.platform.typedef.
|
56
|
-
rbx.platform.typedef.
|
57
|
-
rbx.platform.typedef.
|
92
|
+
rbx.platform.typedef.rlim64_t = ulong_long
|
93
|
+
rbx.platform.typedef.rlim_t = ulong
|
94
|
+
rbx.platform.typedef.rpn64_t = long_long
|
95
|
+
rbx.platform.typedef.rpn_t = int
|
96
|
+
rbx.platform.typedef.sa_family_t = uchar
|
97
|
+
rbx.platform.typedef.signal_t = int
|
98
|
+
rbx.platform.typedef.size64_t = ulong_long
|
58
99
|
rbx.platform.typedef.size_t = ulong
|
59
|
-
rbx.platform.typedef.
|
60
|
-
rbx.platform.typedef.
|
61
|
-
rbx.platform.typedef.
|
62
|
-
rbx.platform.typedef.
|
100
|
+
rbx.platform.typedef.slab_t[12] = char
|
101
|
+
rbx.platform.typedef.snidx_t = int
|
102
|
+
rbx.platform.typedef.socklen_t = ulong
|
103
|
+
rbx.platform.typedef.soff_t = int
|
104
|
+
rbx.platform.typedef.sshift_t = ushort
|
105
|
+
rbx.platform.typedef.ssize64_t = long_long
|
63
106
|
rbx.platform.typedef.ssize_t = long
|
64
|
-
rbx.platform.typedef.
|
65
|
-
rbx.platform.typedef.
|
66
|
-
rbx.platform.typedef.
|
67
|
-
rbx.platform.typedef.daddr64_t = long_long
|
68
|
-
rbx.platform.typedef.caddr_t = string
|
69
|
-
rbx.platform.typedef.ino_t = uint
|
70
|
-
rbx.platform.typedef.ino32_t = uint
|
71
|
-
rbx.platform.typedef.ino64_t = ulong_long
|
72
|
-
rbx.platform.typedef.cnt_t = short
|
73
|
-
rbx.platform.typedef.dev_t = uint
|
74
|
-
rbx.platform.typedef.dev32_t = uint
|
75
|
-
rbx.platform.typedef.dev64_t = ulong_long
|
76
|
-
rbx.platform.typedef.chan_t = int
|
77
|
-
rbx.platform.typedef.time32_t = int
|
78
|
-
rbx.platform.typedef.pid32_t = int
|
107
|
+
rbx.platform.typedef.suseconds_t = int
|
108
|
+
rbx.platform.typedef.swblk_t = int
|
109
|
+
rbx.platform.typedef.swhatx_t = ulong
|
79
110
|
rbx.platform.typedef.tid32_t = int
|
80
|
-
rbx.platform.typedef.pid64_t = ulong_long
|
81
111
|
rbx.platform.typedef.tid64_t = ulong_long
|
112
|
+
rbx.platform.typedef.tid_t = int
|
113
|
+
rbx.platform.typedef.time32_t = int
|
82
114
|
rbx.platform.typedef.time64_t = long_long
|
83
|
-
rbx.platform.typedef.
|
84
|
-
rbx.platform.typedef.__cptr32 = string
|
85
|
-
rbx.platform.typedef.soff_t = int
|
86
|
-
rbx.platform.typedef.off_t = long
|
87
|
-
rbx.platform.typedef.off64_t = long_long
|
88
|
-
rbx.platform.typedef.paddr_t = long
|
89
|
-
rbx.platform.typedef.key_t = int
|
90
|
-
rbx.platform.typedef.timer_t = int
|
115
|
+
rbx.platform.typedef.time_t = int
|
91
116
|
rbx.platform.typedef.timer32_t = int
|
92
117
|
rbx.platform.typedef.timer64_t = long_long
|
93
|
-
rbx.platform.typedef.
|
94
|
-
rbx.platform.typedef.
|
118
|
+
rbx.platform.typedef.timer_t = int
|
119
|
+
rbx.platform.typedef.u_char = uchar
|
120
|
+
rbx.platform.typedef.u_int = uint
|
121
|
+
rbx.platform.typedef.u_int16 = ushort
|
122
|
+
rbx.platform.typedef.u_int16_t = ushort
|
123
|
+
rbx.platform.typedef.u_int32 = uint
|
124
|
+
rbx.platform.typedef.u_int32_t = uint
|
125
|
+
rbx.platform.typedef.u_int64 = ulong_long
|
126
|
+
rbx.platform.typedef.u_int64_t = ulong_long
|
127
|
+
rbx.platform.typedef.u_int8 = uchar
|
128
|
+
rbx.platform.typedef.u_int8_t = uchar
|
129
|
+
rbx.platform.typedef.u_long = ulong
|
130
|
+
rbx.platform.typedef.u_longlong_t = ulong_long
|
131
|
+
rbx.platform.typedef.u_short = ushort
|
132
|
+
rbx.platform.typedef.uchar = uchar
|
133
|
+
rbx.platform.typedef.uchar_t = uchar
|
95
134
|
rbx.platform.typedef.uid_t = uint
|
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.
|
105
|
-
rbx.platform.typedef.
|
106
|
-
rbx.platform.typedef.
|
107
|
-
rbx.platform.typedef.
|
108
|
-
rbx.platform.typedef.
|
109
|
-
rbx.platform.typedef.
|
110
|
-
rbx.platform.typedef.
|
111
|
-
rbx.platform.typedef.
|
112
|
-
rbx.platform.typedef.
|
113
|
-
rbx.platform.typedef.
|
135
|
+
rbx.platform.typedef.uint = uint
|
136
|
+
rbx.platform.typedef.uint16_t = ushort
|
137
|
+
rbx.platform.typedef.uint32_t = uint
|
138
|
+
rbx.platform.typedef.uint32long64_t = uint
|
139
|
+
rbx.platform.typedef.uint64_t = ulong_long
|
140
|
+
rbx.platform.typedef.uint8_t = uchar
|
141
|
+
rbx.platform.typedef.uint_fast16_t = ushort
|
142
|
+
rbx.platform.typedef.uint_fast32_t = uint
|
143
|
+
rbx.platform.typedef.uint_fast64_t = ulong_long
|
144
|
+
rbx.platform.typedef.uint_fast8_t = uchar
|
145
|
+
rbx.platform.typedef.uint_least16_t = ushort
|
146
|
+
rbx.platform.typedef.uint_least32_t = uint
|
147
|
+
rbx.platform.typedef.uint_least64_t = ulong_long
|
148
|
+
rbx.platform.typedef.uint_least8_t = uchar
|
149
|
+
rbx.platform.typedef.uint_t = uint
|
150
|
+
rbx.platform.typedef.uintfast_t = uint
|
151
|
+
rbx.platform.typedef.uintmax_t = ulong_long
|
152
|
+
rbx.platform.typedef.uintptr_t = ulong
|
153
|
+
rbx.platform.typedef.ulong = ulong
|
154
|
+
rbx.platform.typedef.ulong32int64_t = ulong
|
155
|
+
rbx.platform.typedef.ulong_t = ulong
|
156
|
+
rbx.platform.typedef.unidx_t = int
|
157
|
+
rbx.platform.typedef.unit_addr_t = ulong_long
|
158
|
+
rbx.platform.typedef.ureg_t = ulong
|
114
159
|
rbx.platform.typedef.useconds_t = uint
|
115
|
-
rbx.platform.typedef.
|
116
|
-
rbx.platform.typedef.
|
117
|
-
rbx.platform.typedef.
|
118
|
-
rbx.platform.typedef.
|
119
|
-
rbx.platform.typedef.
|
120
|
-
rbx.platform.typedef.vmid_t = long
|
160
|
+
rbx.platform.typedef.ushort = ushort
|
161
|
+
rbx.platform.typedef.ushort_t = ushort
|
162
|
+
rbx.platform.typedef.va_list = string
|
163
|
+
rbx.platform.typedef.vmfkey_t = uint
|
164
|
+
rbx.platform.typedef.vmhandle32_t = uint
|
121
165
|
rbx.platform.typedef.vmhandle_t = ulong
|
166
|
+
rbx.platform.typedef.vmhwkey_t = int
|
122
167
|
rbx.platform.typedef.vmid32_t = int
|
123
|
-
rbx.platform.typedef.vmhandle32_t = uint
|
124
|
-
rbx.platform.typedef.kvmid_t = long
|
125
|
-
rbx.platform.typedef.kvmhandle_t = ulong
|
126
168
|
rbx.platform.typedef.vmid64_t = long_long
|
127
|
-
rbx.platform.typedef.
|
128
|
-
rbx.platform.typedef.cnt64_t = long_long
|
129
|
-
rbx.platform.typedef.psize_t = long_long
|
169
|
+
rbx.platform.typedef.vmid_t = long
|
130
170
|
rbx.platform.typedef.vmidx_t = int
|
131
|
-
rbx.platform.typedef.vmfkey_t = uint
|
132
|
-
rbx.platform.typedef.vmprkey_t = uint
|
133
171
|
rbx.platform.typedef.vmkey_t = int
|
134
|
-
rbx.platform.typedef.
|
135
|
-
rbx.platform.typedef.
|
136
|
-
rbx.platform.typedef.rpn_t = int
|
137
|
-
rbx.platform.typedef.ptex_t = ulong
|
138
|
-
rbx.platform.typedef.swhatx_t = ulong
|
139
|
-
rbx.platform.typedef.esid_t = uint
|
140
|
-
rbx.platform.typedef.aptx_t = ushort
|
141
|
-
rbx.platform.typedef.pdtx_t = int
|
142
|
-
rbx.platform.typedef.psx_t = short
|
143
|
-
rbx.platform.typedef.pshift_t = ushort
|
144
|
-
rbx.platform.typedef.sshift_t = ushort
|
145
|
-
rbx.platform.typedef.unidx_t = int
|
146
|
-
rbx.platform.typedef.snidx_t = int
|
172
|
+
rbx.platform.typedef.vmlpghandle_t = ulong
|
173
|
+
rbx.platform.typedef.vmm_lock_t = int
|
147
174
|
rbx.platform.typedef.vmnodeidx_t = int
|
148
|
-
rbx.platform.typedef.
|
149
|
-
rbx.platform.typedef.krpn_t = int
|
175
|
+
rbx.platform.typedef.vmprkey_t = uint
|
150
176
|
rbx.platform.typedef.vmsize_t = int
|
151
|
-
rbx.platform.typedef.
|
152
|
-
rbx.platform.typedef.
|
153
|
-
rbx.platform.typedef.
|
154
|
-
rbx.platform.typedef.
|
155
|
-
rbx.platform.typedef.va_list = string
|
156
|
-
rbx.platform.typedef.__ptr64 = ulong_long
|
157
|
-
rbx.platform.typedef.__cptr64 = ulong_long
|
158
|
-
rbx.platform.typedef.UniChar = ushort
|
159
|
-
rbx.platform.typedef.UTF32Char = uint
|
160
|
-
rbx.platform.typedef.uchar = uchar
|
161
|
-
rbx.platform.typedef.ushort = ushort
|
162
|
-
rbx.platform.typedef.uint = uint
|
163
|
-
rbx.platform.typedef.ulong = ulong
|
164
|
-
rbx.platform.typedef.u_char = uchar
|
165
|
-
rbx.platform.typedef.u_short = ushort
|
166
|
-
rbx.platform.typedef.u_int = uint
|
167
|
-
rbx.platform.typedef.u_long = ulong
|
168
|
-
rbx.platform.typedef.swblk_t = int
|
169
|
-
rbx.platform.typedef.offset_t = long_long
|
170
|
-
rbx.platform.typedef.ssize64_t = long_long
|
171
|
-
rbx.platform.typedef.longlong_t = long_long
|
172
|
-
rbx.platform.typedef.u_longlong_t = ulong_long
|
173
|
-
rbx.platform.typedef.class_id_t = uint
|
174
|
-
rbx.platform.typedef.liobn_t = uint
|
175
|
-
rbx.platform.typedef.unit_addr_t = ulong_long
|
176
|
-
rbx.platform.typedef.size64_t = ulong_long
|
177
|
-
rbx.platform.typedef.socklen_t = ulong
|
178
|
-
rbx.platform.typedef.sa_family_t = uchar
|
179
|
-
rbx.platform.typedef.rlim_t = ulong
|
180
|
-
rbx.platform.typedef.rlim64_t = ulong_long
|
177
|
+
rbx.platform.typedef.vpn_t = int
|
178
|
+
rbx.platform.typedef.wchar_t = ushort
|
179
|
+
rbx.platform.typedef.wctype_t = uint
|
180
|
+
rbx.platform.typedef.wint_t = int
|