ffi 1.12.2-x86-mingw32 → 1.13.0-x86-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 +3 -0
- data/.github/workflows/ci.yml +64 -0
- data/.travis.yml +19 -5
- data/CHANGELOG.md +30 -0
- data/Gemfile +4 -2
- data/Rakefile +24 -43
- data/ffi.gemspec +1 -1
- data/lib/ffi.rb +10 -2
- data/lib/ffi/library.rb +5 -1
- data/lib/ffi/platform.rb +2 -2
- data/lib/ffi/platform/arm-linux/types.conf +32 -4
- data/lib/ffi/platform/i386-windows/types.conf +26 -79
- data/lib/ffi/platform/powerpc-linux/types.conf +32 -2
- data/lib/ffi/platform/powerpc-openbsd/types.conf +156 -0
- data/lib/ffi/platform/sparcv9-openbsd/types.conf +156 -0
- data/lib/ffi/platform/x86_64-darwin/types.conf +4 -0
- data/lib/ffi/platform/x86_64-linux/types.conf +21 -0
- data/lib/ffi/platform/x86_64-windows/types.conf +10 -78
- data/lib/ffi/pointer.rb +19 -12
- data/lib/ffi/struct.rb +8 -2
- data/lib/ffi/tools/types_generator.rb +2 -0
- data/lib/ffi/version.rb +1 -1
- data/samples/getlogin.rb +1 -1
- data/samples/getpid.rb +1 -1
- data/samples/gettimeofday.rb +8 -8
- data/samples/hello.rb +2 -1
- data/samples/inotify.rb +1 -1
- data/samples/pty.rb +1 -2
- data/samples/qsort.rb +0 -1
- metadata +6 -5
- data/samples/sample_helper.rb +0 -6
@@ -1,105 +1,52 @@
|
|
1
|
-
rbx.platform.typedef
|
2
|
-
rbx.platform.typedef.
|
3
|
-
rbx.platform.typedef.
|
4
|
-
rbx.platform.typedef.
|
5
|
-
rbx.platform.typedef.
|
6
|
-
rbx.platform.typedef.__dev32_t = ulong
|
7
|
-
rbx.platform.typedef.__gid16_t = ushort
|
8
|
-
rbx.platform.typedef.__gid32_t = ulong
|
9
|
-
rbx.platform.typedef.__ino32_t = ulong
|
10
|
-
rbx.platform.typedef.__ino64_t = ulong_long
|
11
|
-
rbx.platform.typedef.__int16_t = short
|
12
|
-
rbx.platform.typedef.__int32_t = int
|
13
|
-
rbx.platform.typedef.__int64_t = long_long
|
14
|
-
rbx.platform.typedef.__int8_t = char
|
15
|
-
rbx.platform.typedef.__int_least16_t = short
|
16
|
-
rbx.platform.typedef.__int_least32_t = int
|
17
|
-
rbx.platform.typedef.__loff_t = long_long
|
18
|
-
rbx.platform.typedef.__off_t = long
|
19
|
-
rbx.platform.typedef.__pid_t = int
|
20
|
-
rbx.platform.typedef.__uid16_t = ushort
|
21
|
-
rbx.platform.typedef.__uid32_t = ulong
|
22
|
-
rbx.platform.typedef.__uint16_t = ushort
|
23
|
-
rbx.platform.typedef.__uint32_t = uint
|
24
|
-
rbx.platform.typedef.__uint64_t = ulong_long
|
25
|
-
rbx.platform.typedef.__uint8_t = uchar
|
26
|
-
rbx.platform.typedef.__uint_least16_t = ushort
|
27
|
-
rbx.platform.typedef.__uint_least32_t = uint
|
28
|
-
rbx.platform.typedef._fpos64_t = long_long
|
29
|
-
rbx.platform.typedef._fpos_t = long
|
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
|
30
6
|
rbx.platform.typedef._off64_t = long_long
|
31
7
|
rbx.platform.typedef._off_t = long
|
32
|
-
rbx.platform.typedef.
|
33
|
-
rbx.platform.typedef.
|
34
|
-
rbx.platform.typedef.
|
35
|
-
rbx.platform.typedef.
|
36
|
-
rbx.platform.typedef.
|
37
|
-
rbx.platform.typedef.clockid_t = ulong
|
38
|
-
rbx.platform.typedef.daddr_t = long
|
39
|
-
rbx.platform.typedef.dev_t = ulong
|
40
|
-
rbx.platform.typedef.fd_mask = long
|
41
|
-
rbx.platform.typedef.fsblkcnt_t = ulong
|
42
|
-
rbx.platform.typedef.fsfilcnt_t = ulong
|
43
|
-
rbx.platform.typedef.gid_t = ulong
|
44
|
-
rbx.platform.typedef.id_t = ulong
|
45
|
-
rbx.platform.typedef.ino_t = ulong_long
|
8
|
+
rbx.platform.typedef._pid_t = int
|
9
|
+
rbx.platform.typedef._sigset_t = ulong
|
10
|
+
rbx.platform.typedef.dev_t = uint
|
11
|
+
rbx.platform.typedef.errno_t = int
|
12
|
+
rbx.platform.typedef.ino_t = ushort
|
46
13
|
rbx.platform.typedef.int16_t = short
|
47
|
-
rbx.platform.typedef.int32_t =
|
14
|
+
rbx.platform.typedef.int32_t = int
|
48
15
|
rbx.platform.typedef.int64_t = long_long
|
49
16
|
rbx.platform.typedef.int8_t = char
|
50
|
-
rbx.platform.typedef.int_fast16_t =
|
51
|
-
rbx.platform.typedef.int_fast32_t =
|
17
|
+
rbx.platform.typedef.int_fast16_t = short
|
18
|
+
rbx.platform.typedef.int_fast32_t = int
|
52
19
|
rbx.platform.typedef.int_fast64_t = long_long
|
53
20
|
rbx.platform.typedef.int_fast8_t = char
|
54
21
|
rbx.platform.typedef.int_least16_t = short
|
55
|
-
rbx.platform.typedef.int_least32_t =
|
22
|
+
rbx.platform.typedef.int_least32_t = int
|
56
23
|
rbx.platform.typedef.int_least64_t = long_long
|
57
24
|
rbx.platform.typedef.int_least8_t = char
|
58
25
|
rbx.platform.typedef.intmax_t = long_long
|
59
|
-
rbx.platform.typedef.intptr_t =
|
60
|
-
rbx.platform.typedef.
|
61
|
-
rbx.platform.typedef.
|
62
|
-
rbx.platform.typedef.
|
26
|
+
rbx.platform.typedef.intptr_t = int
|
27
|
+
rbx.platform.typedef.mode_t = ushort
|
28
|
+
rbx.platform.typedef.off32_t = long
|
29
|
+
rbx.platform.typedef.off64_t = long_long
|
63
30
|
rbx.platform.typedef.off_t = long_long
|
64
31
|
rbx.platform.typedef.pid_t = int
|
65
32
|
rbx.platform.typedef.ptrdiff_t = int
|
66
|
-
rbx.platform.typedef.
|
67
|
-
rbx.platform.typedef.rlim_t = ulong
|
68
|
-
rbx.platform.typedef.sa_family_t = ushort
|
69
|
-
rbx.platform.typedef.sig_atomic_t = int
|
70
|
-
rbx.platform.typedef.sigset_t = ulong
|
33
|
+
rbx.platform.typedef.rsize_t = uint
|
71
34
|
rbx.platform.typedef.size_t = uint
|
72
|
-
rbx.platform.typedef.socklen_t = int
|
73
35
|
rbx.platform.typedef.ssize_t = int
|
74
|
-
rbx.platform.typedef.suseconds_t = long
|
75
36
|
rbx.platform.typedef.time_t = long
|
76
|
-
rbx.platform.typedef.timer_t = ulong
|
77
|
-
rbx.platform.typedef.u_char = uchar
|
78
|
-
rbx.platform.typedef.u_int = uint
|
79
|
-
rbx.platform.typedef.u_int16_t = ushort
|
80
|
-
rbx.platform.typedef.u_int32_t = uint
|
81
|
-
rbx.platform.typedef.u_int64_t = ulong_long
|
82
|
-
rbx.platform.typedef.u_int8_t = uchar
|
83
|
-
rbx.platform.typedef.u_long = ulong
|
84
|
-
rbx.platform.typedef.u_short = ushort
|
85
|
-
rbx.platform.typedef.uid_t = ulong
|
86
|
-
rbx.platform.typedef.uint = uint
|
87
37
|
rbx.platform.typedef.uint16_t = ushort
|
88
|
-
rbx.platform.typedef.uint32_t = ulong
|
89
38
|
rbx.platform.typedef.uint64_t = ulong_long
|
90
39
|
rbx.platform.typedef.uint8_t = uchar
|
91
|
-
rbx.platform.typedef.uint_fast16_t =
|
92
|
-
rbx.platform.typedef.uint_fast32_t =
|
40
|
+
rbx.platform.typedef.uint_fast16_t = ushort
|
41
|
+
rbx.platform.typedef.uint_fast32_t = uint
|
93
42
|
rbx.platform.typedef.uint_fast64_t = ulong_long
|
94
43
|
rbx.platform.typedef.uint_fast8_t = uchar
|
95
44
|
rbx.platform.typedef.uint_least16_t = ushort
|
96
|
-
rbx.platform.typedef.uint_least32_t = ulong
|
97
45
|
rbx.platform.typedef.uint_least64_t = ulong_long
|
98
46
|
rbx.platform.typedef.uint_least8_t = uchar
|
99
47
|
rbx.platform.typedef.uintmax_t = ulong_long
|
100
|
-
rbx.platform.typedef.uintptr_t =
|
101
|
-
rbx.platform.typedef.useconds_t =
|
102
|
-
rbx.platform.typedef.
|
103
|
-
rbx.platform.typedef.
|
104
|
-
rbx.platform.typedef.
|
105
|
-
rbx.platform.typedef.wint_t = uint
|
48
|
+
rbx.platform.typedef.uintptr_t = uint
|
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
|
@@ -12,6 +12,7 @@ rbx.platform.typedef.__fsblkcnt64_t = ulong_long
|
|
12
12
|
rbx.platform.typedef.__fsblkcnt_t = ulong
|
13
13
|
rbx.platform.typedef.__fsfilcnt64_t = ulong_long
|
14
14
|
rbx.platform.typedef.__fsfilcnt_t = ulong
|
15
|
+
rbx.platform.typedef.__fsword_t = int
|
15
16
|
rbx.platform.typedef.__gid_t = uint
|
16
17
|
rbx.platform.typedef.__id_t = uint
|
17
18
|
rbx.platform.typedef.__ino64_t = ulong_long
|
@@ -38,7 +39,8 @@ rbx.platform.typedef.__sig_atomic_t = int
|
|
38
39
|
rbx.platform.typedef.__socklen_t = uint
|
39
40
|
rbx.platform.typedef.__ssize_t = int
|
40
41
|
rbx.platform.typedef.__suseconds_t = long
|
41
|
-
rbx.platform.typedef.
|
42
|
+
rbx.platform.typedef.__syscall_slong_t = long
|
43
|
+
rbx.platform.typedef.__syscall_ulong_t = ulong
|
42
44
|
rbx.platform.typedef.__time_t = long
|
43
45
|
rbx.platform.typedef.__timer_t = pointer
|
44
46
|
rbx.platform.typedef.__u_char = uchar
|
@@ -53,6 +55,8 @@ rbx.platform.typedef.__uint64_t = ulong_long
|
|
53
55
|
rbx.platform.typedef.__uint8_t = uchar
|
54
56
|
rbx.platform.typedef.__useconds_t = uint
|
55
57
|
rbx.platform.typedef.blkcnt_t = long_long
|
58
|
+
rbx.platform.typedef.blksize_t = long
|
59
|
+
rbx.platform.typedef.clock_t = long
|
56
60
|
rbx.platform.typedef.clockid_t = int
|
57
61
|
rbx.platform.typedef.daddr_t = int
|
58
62
|
rbx.platform.typedef.dev_t = ulong_long
|
@@ -61,11 +65,21 @@ rbx.platform.typedef.fsblkcnt_t = ulong_long
|
|
61
65
|
rbx.platform.typedef.fsfilcnt_t = ulong_long
|
62
66
|
rbx.platform.typedef.gid_t = uint
|
63
67
|
rbx.platform.typedef.id_t = uint
|
68
|
+
rbx.platform.typedef.in_addr_t = uint
|
69
|
+
rbx.platform.typedef.in_port_t = ushort
|
64
70
|
rbx.platform.typedef.ino_t = ulong_long
|
65
|
-
rbx.platform.typedef.int16_t = short
|
66
71
|
rbx.platform.typedef.int32_t = int
|
67
72
|
rbx.platform.typedef.int64_t = long_long
|
68
73
|
rbx.platform.typedef.int8_t = char
|
74
|
+
rbx.platform.typedef.int_fast16_t = int
|
75
|
+
rbx.platform.typedef.int_fast32_t = int
|
76
|
+
rbx.platform.typedef.int_fast64_t = long_long
|
77
|
+
rbx.platform.typedef.int_fast8_t = char
|
78
|
+
rbx.platform.typedef.int_least32_t = int
|
79
|
+
rbx.platform.typedef.int_least64_t = long_long
|
80
|
+
rbx.platform.typedef.int_least8_t = char
|
81
|
+
rbx.platform.typedef.intmax_t = long_long
|
82
|
+
rbx.platform.typedef.intptr_t = int
|
69
83
|
rbx.platform.typedef.key_t = int
|
70
84
|
rbx.platform.typedef.loff_t = long_long
|
71
85
|
rbx.platform.typedef.mode_t = uint
|
@@ -75,6 +89,7 @@ rbx.platform.typedef.pid_t = int
|
|
75
89
|
rbx.platform.typedef.pthread_key_t = uint
|
76
90
|
rbx.platform.typedef.pthread_once_t = int
|
77
91
|
rbx.platform.typedef.pthread_t = ulong
|
92
|
+
rbx.platform.typedef.ptrdiff_t = int
|
78
93
|
rbx.platform.typedef.quad_t = long_long
|
79
94
|
rbx.platform.typedef.register_t = long
|
80
95
|
rbx.platform.typedef.rlim_t = ulong_long
|
@@ -96,5 +111,20 @@ rbx.platform.typedef.u_quad_t = ulong_long
|
|
96
111
|
rbx.platform.typedef.u_short = ushort
|
97
112
|
rbx.platform.typedef.uid_t = uint
|
98
113
|
rbx.platform.typedef.uint = uint
|
114
|
+
rbx.platform.typedef.uint16_t = ushort
|
115
|
+
rbx.platform.typedef.uint32_t = uint
|
116
|
+
rbx.platform.typedef.uint64_t = ulong_long
|
117
|
+
rbx.platform.typedef.uint8_t = uchar
|
118
|
+
rbx.platform.typedef.uint_fast16_t = uint
|
119
|
+
rbx.platform.typedef.uint_fast32_t = uint
|
120
|
+
rbx.platform.typedef.uint_fast64_t = ulong_long
|
121
|
+
rbx.platform.typedef.uint_fast8_t = uchar
|
122
|
+
rbx.platform.typedef.uint_least16_t = ushort
|
123
|
+
rbx.platform.typedef.uint_least32_t = uint
|
124
|
+
rbx.platform.typedef.uint_least64_t = ulong_long
|
125
|
+
rbx.platform.typedef.uint_least8_t = uchar
|
126
|
+
rbx.platform.typedef.uintmax_t = ulong_long
|
127
|
+
rbx.platform.typedef.uintptr_t = uint
|
99
128
|
rbx.platform.typedef.ulong = ulong
|
100
129
|
rbx.platform.typedef.ushort = ushort
|
130
|
+
rbx.platform.typedef.wchar_t = long
|
@@ -0,0 +1,156 @@
|
|
1
|
+
rbx.platform.typedef.__blkcnt_t = long_long
|
2
|
+
rbx.platform.typedef.__blksize_t = int
|
3
|
+
rbx.platform.typedef.__clock_t = long_long
|
4
|
+
rbx.platform.typedef.__clockid_t = int
|
5
|
+
rbx.platform.typedef.__cpuid_t = ulong
|
6
|
+
rbx.platform.typedef.__dev_t = int
|
7
|
+
rbx.platform.typedef.__fd_mask = uint
|
8
|
+
rbx.platform.typedef.__fixpt_t = uint
|
9
|
+
rbx.platform.typedef.__fsblkcnt_t = ulong_long
|
10
|
+
rbx.platform.typedef.__fsfilcnt_t = ulong_long
|
11
|
+
rbx.platform.typedef.__gid_t = uint
|
12
|
+
rbx.platform.typedef.__id_t = uint
|
13
|
+
rbx.platform.typedef.__in_addr_t = uint
|
14
|
+
rbx.platform.typedef.__in_port_t = ushort
|
15
|
+
rbx.platform.typedef.__ino_t = ulong_long
|
16
|
+
rbx.platform.typedef.__int16_t = short
|
17
|
+
rbx.platform.typedef.__int32_t = int
|
18
|
+
rbx.platform.typedef.__int64_t = long_long
|
19
|
+
rbx.platform.typedef.__int8_t = char
|
20
|
+
rbx.platform.typedef.__int_fast16_t = int
|
21
|
+
rbx.platform.typedef.__int_fast32_t = int
|
22
|
+
rbx.platform.typedef.__int_fast64_t = long_long
|
23
|
+
rbx.platform.typedef.__int_fast8_t = int
|
24
|
+
rbx.platform.typedef.__int_least16_t = short
|
25
|
+
rbx.platform.typedef.__int_least32_t = int
|
26
|
+
rbx.platform.typedef.__int_least64_t = long_long
|
27
|
+
rbx.platform.typedef.__int_least8_t = char
|
28
|
+
rbx.platform.typedef.__intmax_t = long_long
|
29
|
+
rbx.platform.typedef.__intptr_t = long
|
30
|
+
rbx.platform.typedef.__key_t = long
|
31
|
+
rbx.platform.typedef.__mode_t = uint
|
32
|
+
rbx.platform.typedef.__nlink_t = uint
|
33
|
+
rbx.platform.typedef.__off_t = long_long
|
34
|
+
rbx.platform.typedef.__paddr_t = ulong
|
35
|
+
rbx.platform.typedef.__pid_t = int
|
36
|
+
rbx.platform.typedef.__psize_t = ulong
|
37
|
+
rbx.platform.typedef.__ptrdiff_t = long
|
38
|
+
rbx.platform.typedef.__register_t = long
|
39
|
+
rbx.platform.typedef.__rlim_t = ulong_long
|
40
|
+
rbx.platform.typedef.__rune_t = int
|
41
|
+
rbx.platform.typedef.__sa_family_t = uchar
|
42
|
+
rbx.platform.typedef.__segsz_t = int
|
43
|
+
rbx.platform.typedef.__size_t = ulong
|
44
|
+
rbx.platform.typedef.__socklen_t = uint
|
45
|
+
rbx.platform.typedef.__ssize_t = long
|
46
|
+
rbx.platform.typedef.__suseconds_t = long
|
47
|
+
rbx.platform.typedef.__swblk_t = int
|
48
|
+
rbx.platform.typedef.__time_t = long_long
|
49
|
+
rbx.platform.typedef.__timer_t = int
|
50
|
+
rbx.platform.typedef.__uid_t = uint
|
51
|
+
rbx.platform.typedef.__uint16_t = ushort
|
52
|
+
rbx.platform.typedef.__uint32_t = uint
|
53
|
+
rbx.platform.typedef.__uint64_t = ulong_long
|
54
|
+
rbx.platform.typedef.__uint8_t = uchar
|
55
|
+
rbx.platform.typedef.__uint_fast16_t = uint
|
56
|
+
rbx.platform.typedef.__uint_fast32_t = uint
|
57
|
+
rbx.platform.typedef.__uint_fast64_t = ulong_long
|
58
|
+
rbx.platform.typedef.__uint_fast8_t = uint
|
59
|
+
rbx.platform.typedef.__uint_least16_t = ushort
|
60
|
+
rbx.platform.typedef.__uint_least32_t = uint
|
61
|
+
rbx.platform.typedef.__uint_least64_t = ulong_long
|
62
|
+
rbx.platform.typedef.__uint_least8_t = uchar
|
63
|
+
rbx.platform.typedef.__uintmax_t = ulong_long
|
64
|
+
rbx.platform.typedef.__uintptr_t = ulong
|
65
|
+
rbx.platform.typedef.__useconds_t = uint
|
66
|
+
rbx.platform.typedef.__vaddr_t = ulong
|
67
|
+
rbx.platform.typedef.__vsize_t = ulong
|
68
|
+
rbx.platform.typedef.__wchar_t = int
|
69
|
+
rbx.platform.typedef.__wctrans_t = pointer
|
70
|
+
rbx.platform.typedef.__wctype_t = pointer
|
71
|
+
rbx.platform.typedef.__wint_t = int
|
72
|
+
rbx.platform.typedef.blkcnt_t = long_long
|
73
|
+
rbx.platform.typedef.blksize_t = int
|
74
|
+
rbx.platform.typedef.caddr_t = string
|
75
|
+
rbx.platform.typedef.clock_t = long_long
|
76
|
+
rbx.platform.typedef.clockid_t = int
|
77
|
+
rbx.platform.typedef.cpuid_t = ulong
|
78
|
+
rbx.platform.typedef.daddr32_t = int
|
79
|
+
rbx.platform.typedef.daddr_t = long_long
|
80
|
+
rbx.platform.typedef.dev_t = int
|
81
|
+
rbx.platform.typedef.fixpt_t = uint
|
82
|
+
rbx.platform.typedef.fsblkcnt_t = ulong_long
|
83
|
+
rbx.platform.typedef.fsfilcnt_t = ulong_long
|
84
|
+
rbx.platform.typedef.gid_t = uint
|
85
|
+
rbx.platform.typedef.id_t = uint
|
86
|
+
rbx.platform.typedef.in_addr_t = uint
|
87
|
+
rbx.platform.typedef.in_port_t = ushort
|
88
|
+
rbx.platform.typedef.ino_t = ulong_long
|
89
|
+
rbx.platform.typedef.int16_t = short
|
90
|
+
rbx.platform.typedef.int32_t = int
|
91
|
+
rbx.platform.typedef.int64_t = long_long
|
92
|
+
rbx.platform.typedef.int8_t = char
|
93
|
+
rbx.platform.typedef.int_fast16_t = int
|
94
|
+
rbx.platform.typedef.int_fast32_t = int
|
95
|
+
rbx.platform.typedef.int_fast64_t = long_long
|
96
|
+
rbx.platform.typedef.int_fast8_t = int
|
97
|
+
rbx.platform.typedef.int_least16_t = short
|
98
|
+
rbx.platform.typedef.int_least32_t = int
|
99
|
+
rbx.platform.typedef.int_least64_t = long_long
|
100
|
+
rbx.platform.typedef.int_least8_t = char
|
101
|
+
rbx.platform.typedef.intmax_t = long_long
|
102
|
+
rbx.platform.typedef.intptr_t = long
|
103
|
+
rbx.platform.typedef.key_t = long
|
104
|
+
rbx.platform.typedef.mode_t = uint
|
105
|
+
rbx.platform.typedef.nlink_t = uint
|
106
|
+
rbx.platform.typedef.off_t = long_long
|
107
|
+
rbx.platform.typedef.paddr_t = ulong
|
108
|
+
rbx.platform.typedef.pid_t = int
|
109
|
+
rbx.platform.typedef.psize_t = ulong
|
110
|
+
rbx.platform.typedef.ptrdiff_t = long
|
111
|
+
rbx.platform.typedef.quad_t = long_long
|
112
|
+
rbx.platform.typedef.register_t = long
|
113
|
+
rbx.platform.typedef.rlim_t = ulong_long
|
114
|
+
rbx.platform.typedef.sa_family_t = uchar
|
115
|
+
rbx.platform.typedef.segsz_t = int
|
116
|
+
rbx.platform.typedef.sigset_t = uint
|
117
|
+
rbx.platform.typedef.size_t = ulong
|
118
|
+
rbx.platform.typedef.socklen_t = uint
|
119
|
+
rbx.platform.typedef.ssize_t = long
|
120
|
+
rbx.platform.typedef.suseconds_t = long
|
121
|
+
rbx.platform.typedef.swblk_t = int
|
122
|
+
rbx.platform.typedef.time_t = long_long
|
123
|
+
rbx.platform.typedef.timer_t = int
|
124
|
+
rbx.platform.typedef.u_char = uchar
|
125
|
+
rbx.platform.typedef.u_int = uint
|
126
|
+
rbx.platform.typedef.u_int16_t = ushort
|
127
|
+
rbx.platform.typedef.u_int32_t = uint
|
128
|
+
rbx.platform.typedef.u_int64_t = ulong_long
|
129
|
+
rbx.platform.typedef.u_int8_t = uchar
|
130
|
+
rbx.platform.typedef.u_long = ulong
|
131
|
+
rbx.platform.typedef.u_quad_t = ulong_long
|
132
|
+
rbx.platform.typedef.u_short = ushort
|
133
|
+
rbx.platform.typedef.uid_t = uint
|
134
|
+
rbx.platform.typedef.uint = uint
|
135
|
+
rbx.platform.typedef.uint16_t = ushort
|
136
|
+
rbx.platform.typedef.uint32_t = uint
|
137
|
+
rbx.platform.typedef.uint64_t = ulong_long
|
138
|
+
rbx.platform.typedef.uint8_t = uchar
|
139
|
+
rbx.platform.typedef.uint_fast16_t = uint
|
140
|
+
rbx.platform.typedef.uint_fast32_t = uint
|
141
|
+
rbx.platform.typedef.uint_fast64_t = ulong_long
|
142
|
+
rbx.platform.typedef.uint_fast8_t = uint
|
143
|
+
rbx.platform.typedef.uint_least16_t = ushort
|
144
|
+
rbx.platform.typedef.uint_least32_t = uint
|
145
|
+
rbx.platform.typedef.uint_least64_t = ulong_long
|
146
|
+
rbx.platform.typedef.uint_least8_t = uchar
|
147
|
+
rbx.platform.typedef.uintmax_t = ulong_long
|
148
|
+
rbx.platform.typedef.uintptr_t = ulong
|
149
|
+
rbx.platform.typedef.ulong = ulong
|
150
|
+
rbx.platform.typedef.unchar = uchar
|
151
|
+
rbx.platform.typedef.useconds_t = uint
|
152
|
+
rbx.platform.typedef.ushort = ushort
|
153
|
+
rbx.platform.typedef.vaddr_t = ulong
|
154
|
+
rbx.platform.typedef.vsize_t = ulong
|
155
|
+
rbx.platform.typedef.wchar_t = int
|
156
|
+
rbx.platform.typedef.wint_t = int
|
@@ -0,0 +1,156 @@
|
|
1
|
+
rbx.platform.typedef.__blkcnt_t = long_long
|
2
|
+
rbx.platform.typedef.__blksize_t = int
|
3
|
+
rbx.platform.typedef.__clock_t = long_long
|
4
|
+
rbx.platform.typedef.__clockid_t = int
|
5
|
+
rbx.platform.typedef.__cpuid_t = ulong
|
6
|
+
rbx.platform.typedef.__dev_t = int
|
7
|
+
rbx.platform.typedef.__fd_mask = uint
|
8
|
+
rbx.platform.typedef.__fixpt_t = uint
|
9
|
+
rbx.platform.typedef.__fsblkcnt_t = ulong_long
|
10
|
+
rbx.platform.typedef.__fsfilcnt_t = ulong_long
|
11
|
+
rbx.platform.typedef.__gid_t = uint
|
12
|
+
rbx.platform.typedef.__id_t = uint
|
13
|
+
rbx.platform.typedef.__in_addr_t = uint
|
14
|
+
rbx.platform.typedef.__in_port_t = ushort
|
15
|
+
rbx.platform.typedef.__ino_t = ulong_long
|
16
|
+
rbx.platform.typedef.__int16_t = short
|
17
|
+
rbx.platform.typedef.__int32_t = int
|
18
|
+
rbx.platform.typedef.__int64_t = long_long
|
19
|
+
rbx.platform.typedef.__int8_t = char
|
20
|
+
rbx.platform.typedef.__int_fast16_t = int
|
21
|
+
rbx.platform.typedef.__int_fast32_t = int
|
22
|
+
rbx.platform.typedef.__int_fast64_t = long_long
|
23
|
+
rbx.platform.typedef.__int_fast8_t = int
|
24
|
+
rbx.platform.typedef.__int_least16_t = short
|
25
|
+
rbx.platform.typedef.__int_least32_t = int
|
26
|
+
rbx.platform.typedef.__int_least64_t = long_long
|
27
|
+
rbx.platform.typedef.__int_least8_t = char
|
28
|
+
rbx.platform.typedef.__intmax_t = long_long
|
29
|
+
rbx.platform.typedef.__intptr_t = long
|
30
|
+
rbx.platform.typedef.__key_t = long
|
31
|
+
rbx.platform.typedef.__mode_t = uint
|
32
|
+
rbx.platform.typedef.__nlink_t = uint
|
33
|
+
rbx.platform.typedef.__off_t = long_long
|
34
|
+
rbx.platform.typedef.__paddr_t = ulong
|
35
|
+
rbx.platform.typedef.__pid_t = int
|
36
|
+
rbx.platform.typedef.__psize_t = ulong
|
37
|
+
rbx.platform.typedef.__ptrdiff_t = long
|
38
|
+
rbx.platform.typedef.__register_t = long
|
39
|
+
rbx.platform.typedef.__rlim_t = ulong_long
|
40
|
+
rbx.platform.typedef.__rune_t = int
|
41
|
+
rbx.platform.typedef.__sa_family_t = uchar
|
42
|
+
rbx.platform.typedef.__segsz_t = int
|
43
|
+
rbx.platform.typedef.__size_t = ulong
|
44
|
+
rbx.platform.typedef.__socklen_t = uint
|
45
|
+
rbx.platform.typedef.__ssize_t = long
|
46
|
+
rbx.platform.typedef.__suseconds_t = long
|
47
|
+
rbx.platform.typedef.__swblk_t = int
|
48
|
+
rbx.platform.typedef.__time_t = long_long
|
49
|
+
rbx.platform.typedef.__timer_t = int
|
50
|
+
rbx.platform.typedef.__uid_t = uint
|
51
|
+
rbx.platform.typedef.__uint16_t = ushort
|
52
|
+
rbx.platform.typedef.__uint32_t = uint
|
53
|
+
rbx.platform.typedef.__uint64_t = ulong_long
|
54
|
+
rbx.platform.typedef.__uint8_t = uchar
|
55
|
+
rbx.platform.typedef.__uint_fast16_t = uint
|
56
|
+
rbx.platform.typedef.__uint_fast32_t = uint
|
57
|
+
rbx.platform.typedef.__uint_fast64_t = ulong_long
|
58
|
+
rbx.platform.typedef.__uint_fast8_t = uint
|
59
|
+
rbx.platform.typedef.__uint_least16_t = ushort
|
60
|
+
rbx.platform.typedef.__uint_least32_t = uint
|
61
|
+
rbx.platform.typedef.__uint_least64_t = ulong_long
|
62
|
+
rbx.platform.typedef.__uint_least8_t = uchar
|
63
|
+
rbx.platform.typedef.__uintmax_t = ulong_long
|
64
|
+
rbx.platform.typedef.__uintptr_t = ulong
|
65
|
+
rbx.platform.typedef.__useconds_t = uint
|
66
|
+
rbx.platform.typedef.__vaddr_t = ulong
|
67
|
+
rbx.platform.typedef.__vsize_t = ulong
|
68
|
+
rbx.platform.typedef.__wchar_t = int
|
69
|
+
rbx.platform.typedef.__wctrans_t = pointer
|
70
|
+
rbx.platform.typedef.__wctype_t = pointer
|
71
|
+
rbx.platform.typedef.__wint_t = int
|
72
|
+
rbx.platform.typedef.blkcnt_t = long_long
|
73
|
+
rbx.platform.typedef.blksize_t = int
|
74
|
+
rbx.platform.typedef.caddr_t = string
|
75
|
+
rbx.platform.typedef.clock_t = long_long
|
76
|
+
rbx.platform.typedef.clockid_t = int
|
77
|
+
rbx.platform.typedef.cpuid_t = ulong
|
78
|
+
rbx.platform.typedef.daddr32_t = int
|
79
|
+
rbx.platform.typedef.daddr_t = long_long
|
80
|
+
rbx.platform.typedef.dev_t = int
|
81
|
+
rbx.platform.typedef.fixpt_t = uint
|
82
|
+
rbx.platform.typedef.fsblkcnt_t = ulong_long
|
83
|
+
rbx.platform.typedef.fsfilcnt_t = ulong_long
|
84
|
+
rbx.platform.typedef.gid_t = uint
|
85
|
+
rbx.platform.typedef.id_t = uint
|
86
|
+
rbx.platform.typedef.in_addr_t = uint
|
87
|
+
rbx.platform.typedef.in_port_t = ushort
|
88
|
+
rbx.platform.typedef.ino_t = ulong_long
|
89
|
+
rbx.platform.typedef.int16_t = short
|
90
|
+
rbx.platform.typedef.int32_t = int
|
91
|
+
rbx.platform.typedef.int64_t = long_long
|
92
|
+
rbx.platform.typedef.int8_t = char
|
93
|
+
rbx.platform.typedef.int_fast16_t = int
|
94
|
+
rbx.platform.typedef.int_fast32_t = int
|
95
|
+
rbx.platform.typedef.int_fast64_t = long_long
|
96
|
+
rbx.platform.typedef.int_fast8_t = int
|
97
|
+
rbx.platform.typedef.int_least16_t = short
|
98
|
+
rbx.platform.typedef.int_least32_t = int
|
99
|
+
rbx.platform.typedef.int_least64_t = long_long
|
100
|
+
rbx.platform.typedef.int_least8_t = char
|
101
|
+
rbx.platform.typedef.intmax_t = long_long
|
102
|
+
rbx.platform.typedef.intptr_t = long
|
103
|
+
rbx.platform.typedef.key_t = long
|
104
|
+
rbx.platform.typedef.mode_t = uint
|
105
|
+
rbx.platform.typedef.nlink_t = uint
|
106
|
+
rbx.platform.typedef.off_t = long_long
|
107
|
+
rbx.platform.typedef.paddr_t = ulong
|
108
|
+
rbx.platform.typedef.pid_t = int
|
109
|
+
rbx.platform.typedef.psize_t = ulong
|
110
|
+
rbx.platform.typedef.ptrdiff_t = long
|
111
|
+
rbx.platform.typedef.quad_t = long_long
|
112
|
+
rbx.platform.typedef.register_t = long
|
113
|
+
rbx.platform.typedef.rlim_t = ulong_long
|
114
|
+
rbx.platform.typedef.sa_family_t = uchar
|
115
|
+
rbx.platform.typedef.segsz_t = int
|
116
|
+
rbx.platform.typedef.sigset_t = uint
|
117
|
+
rbx.platform.typedef.size_t = ulong
|
118
|
+
rbx.platform.typedef.socklen_t = uint
|
119
|
+
rbx.platform.typedef.ssize_t = long
|
120
|
+
rbx.platform.typedef.suseconds_t = long
|
121
|
+
rbx.platform.typedef.swblk_t = int
|
122
|
+
rbx.platform.typedef.time_t = long_long
|
123
|
+
rbx.platform.typedef.timer_t = int
|
124
|
+
rbx.platform.typedef.u_char = uchar
|
125
|
+
rbx.platform.typedef.u_int = uint
|
126
|
+
rbx.platform.typedef.u_int16_t = ushort
|
127
|
+
rbx.platform.typedef.u_int32_t = uint
|
128
|
+
rbx.platform.typedef.u_int64_t = ulong_long
|
129
|
+
rbx.platform.typedef.u_int8_t = uchar
|
130
|
+
rbx.platform.typedef.u_long = ulong
|
131
|
+
rbx.platform.typedef.u_quad_t = ulong_long
|
132
|
+
rbx.platform.typedef.u_short = ushort
|
133
|
+
rbx.platform.typedef.uid_t = uint
|
134
|
+
rbx.platform.typedef.uint = uint
|
135
|
+
rbx.platform.typedef.uint16_t = ushort
|
136
|
+
rbx.platform.typedef.uint32_t = uint
|
137
|
+
rbx.platform.typedef.uint64_t = ulong_long
|
138
|
+
rbx.platform.typedef.uint8_t = uchar
|
139
|
+
rbx.platform.typedef.uint_fast16_t = uint
|
140
|
+
rbx.platform.typedef.uint_fast32_t = uint
|
141
|
+
rbx.platform.typedef.uint_fast64_t = ulong_long
|
142
|
+
rbx.platform.typedef.uint_fast8_t = uint
|
143
|
+
rbx.platform.typedef.uint_least16_t = ushort
|
144
|
+
rbx.platform.typedef.uint_least32_t = uint
|
145
|
+
rbx.platform.typedef.uint_least64_t = ulong_long
|
146
|
+
rbx.platform.typedef.uint_least8_t = uchar
|
147
|
+
rbx.platform.typedef.uintmax_t = ulong_long
|
148
|
+
rbx.platform.typedef.uintptr_t = ulong
|
149
|
+
rbx.platform.typedef.ulong = ulong
|
150
|
+
rbx.platform.typedef.unchar = uchar
|
151
|
+
rbx.platform.typedef.useconds_t = uint
|
152
|
+
rbx.platform.typedef.ushort = ushort
|
153
|
+
rbx.platform.typedef.vaddr_t = ulong
|
154
|
+
rbx.platform.typedef.vsize_t = ulong
|
155
|
+
rbx.platform.typedef.wchar_t = int
|
156
|
+
rbx.platform.typedef.wint_t = int
|