-
Notifications
You must be signed in to change notification settings - Fork 0
/
types_mapping.json
62 lines (51 loc) · 979 Bytes
/
types_mapping.json
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
{
"boolean": {
"c": "bool",
"convert": "ToBoolean",
"jsval": "boolean"
},
"cstring": {
"c": "char *",
"jsval": "string"
},
"byte": {
"c": "int8_t",
"convert": "ToInt16"
},
"octet": {
"c": "uint8_t",
"convert": "ToUint16"
},
"short": {
"c": "int16_t",
"convert": "ToInt16"
},
"unsigned short": {
"c": "uint16_t",
"convert": "ToUint16"
},
"long": {
"c": "int32_t",
"convert": "ToInt32"
},
"unsigned long": {
"c": "uint32_t",
"convert": "ToUint32"
},
"long long": {
"c": "int64_t",
"convert": "ToInt64"
},
"unsigned long long": {
"c": "uint64_t",
"convert": "ToUint64"
},
"float": {
"c": "double",
"convert": "ToNumber"
},
"double": {
"c": "double",
"convert": "ToNumber"
}
}