1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
use std::os::raw;
pub type H = raw::c_short;
pub type I = raw::c_int;
pub type J = raw::c_longlong;
pub type S = *mut raw::c_char;
pub type Sconst = *const raw::c_char;
pub type G = raw::c_uchar;
pub type C = raw::c_char;
pub type E = raw::c_float;
pub type F = raw::c_double;
pub type V = raw::c_void;
#[repr(C)]
#[derive(Copy, Clone)]
pub struct k0 {
pub m: raw::c_schar,
pub a: raw::c_schar,
pub t: raw::c_schar,
pub u: C,
pub r: I,
_value: ValueUnion,
}
pub type K = *mut k0;
#[repr(C)]
#[derive(Copy, Clone)]
pub(crate) union ValueUnion {
pub g: G,
pub h: H,
pub i: I,
pub j: J,
pub e: E,
pub f: F,
pub s: S,
pub k: *mut k0,
_collection: Collection,
_union_align: [u64; 2usize],
}
#[repr(C)]
#[derive(Copy, Clone)]
pub(crate) struct Collection {
pub n: J,
pub G0: [G; 1usize],
}
#[repr(C)]
#[derive(Copy, Clone)]
pub struct U {
pub g: [G; 16usize],
}
extern "C" {
pub fn b9(arg1: I, arg2: K) -> K;
pub fn d9(arg1: K) -> K;
pub fn dj(arg1: I) -> I;
#[cfg(not(feature = "ipc"))]
pub fn dl(arg1: *mut V, arg2: I) -> K;
#[cfg(not(feature = "ipc"))]
pub fn dot(arg1: K, arg2: K) -> K;
pub fn ee(arg1: K) -> K;
pub fn ja(arg1: *mut K, arg2: *mut V) -> K;
pub fn jk(arg1: *mut K, arg2: K) -> K;
pub fn js(arg1: *mut K, arg2: S) -> K;
pub fn jv(k: *mut K, arg2: K) -> K;
pub fn k(arg1: I, arg2: Sconst, ...) -> K;
pub fn ka(arg1: I) -> K;
pub fn kb(arg1: I) -> K;
pub fn kc(arg1: I) -> K;
#[cfg(not(feature = "embed"))]
pub fn kclose(arg1: I) -> V;
pub fn kd(arg1: I) -> K;
pub fn ke(arg1: F) -> K;
pub fn kf(arg1: F) -> K;
pub fn kg(arg1: I) -> K;
pub fn kh(arg1: I) -> K;
#[cfg(not(feature = "embed"))]
pub fn khp(arg1: Sconst, arg2: I) -> I;
#[cfg(not(feature = "embed"))]
pub fn khpu(arg1: Sconst, arg2: I, arg3: Sconst) -> I;
#[cfg(not(feature = "embed"))]
pub fn khpun(arg1: Sconst, arg2: I, arg3: Sconst, arg4: I) -> I;
#[cfg(not(feature = "embed"))]
pub fn khpunc(arg1: Sconst, arg2: I, arg3: Sconst, arg4: I, arg5: I) -> I;
pub fn ki(arg1: I) -> K;
pub fn kj(arg1: J) -> K;
pub fn knk(arg1: I, ...) -> K;
pub fn knt(arg1: J, arg2: K) -> K;
pub fn kp(arg1: S) -> K;
pub fn kpn(arg1: S, arg2: J) -> K;
pub fn krr(arg1: Sconst) -> K;
pub fn ks(arg1: S) -> K;
pub fn kt(arg1: I) -> K;
pub fn ktd(arg1: K) -> K;
pub fn ktj(arg1: I, arg2: J) -> K;
pub fn ktn(arg1: I, arg2: J) -> K;
pub fn ku(arg1: U) -> K;
pub fn kz(arg1: F) -> K;
pub fn m9(arg1: V) -> V;
pub fn okx(arg1: K) -> I;
pub fn orr(arg1: Sconst) -> K;
pub fn r0(arg1: K) -> V;
pub fn r1(arg1: K) -> K;
#[cfg(not(feature = "ipc"))]
pub fn sd0(arg1: I) -> V;
#[cfg(not(feature = "ipc"))]
pub fn sd0x(arg1: I, arg2: I) -> V;
#[cfg(not(feature = "ipc"))]
pub fn sd1(arg1: I, arg2: extern "C" fn(I) -> K) -> K;
pub fn setm(arg1: I) -> I;
pub fn sn(arg1: S, arg2: I) -> S;
pub fn ss(arg1: S) -> S;
#[cfg(not(feature = "embed"))]
pub fn sslInfo(arg1: K) -> K;
#[cfg(not(feature = "embed"))]
pub fn ver() -> I;
pub fn xD(arg1: K, arg2: K) -> K;
pub fn xT(arg1: K) -> K;
pub fn ymd(arg1: I, arg2: I, arg3: I) -> I;
}