-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ext.json
160 lines (135 loc) · 3.74 KB
/
Ext.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
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
// This file may also be external to your MFX file - just give it the same name
// as your MFX and place it in Data/Runtime. The same goes for the icon.
"About":
{
"Name": "MyCharSet"
"Author": "Darkwire Software"
"Copyright": "Copyright © 2011 by Darkwire Software"
"Comment": "Converts between Unicode and ASCII/UTF8."
"URL": "http://www.dark-wire.com/"
"Help": "Help/MyCharSet.chm"
// Four unique characters to identify this object
"Identifier": "MYCS"
}
"ActionMenu":
[
]
"ConditionMenu":
[
[0, "Is Unicode?"]
"Separator"
[1, "Darkwire Software", 1]
]
"ExpressionMenu":
[
["Return text"
[0, "Get ASCII text string from Unicode string"]
[1, "Get Unicode text string from ASCII string"]
"Separator"
[2, "Get ASCII text string from Unicode string at address"]
[3, "Get Unicode text string from ASCII string at address"]
]
["Return address"
[4, "Get ASCII text address from Unicode string"]
[5, "Get Unicode text address from ASCII string"]
"Separator"
[6, "Get ASCII text address from Unicode string at address"]
[7, "Get Unicode text address from ASCII string at address"]
]
"Separator"
]
"Actions":
[
]
"Conditions":
[
// ID = 0
{ "Title": "%o : Is Unicode version?",
"Triggered": false
}
]
"Expressions":
[
// From String
// ID = 0
{ "Title": "ASCIIStrFromUnicodeStr$("
"Returns": "Text"
"Parameters":
[
["Text", "Unicode text:"]
["Integer", "Length of text (not byte count) (use 0 or less for auto-calculate):"]
["Integer", "Use ASCII (zero) or UTF8 (non-zero)?"]
]
}
// ID = 1
{ "Title": "UnicodeStrFromASCIIStr$("
"Returns": "Text"
"Parameters":
[
["Text", "ASCII text:"]
["Integer", "Length of text (use 0 or less for auto-calculate):"]
["Integer", "Enter zero for ASCII, or anything else for UTF8:"]
]
}
// ID = 2
{ "Title": "ASCIIStrFromUnicodeMem$("
"Returns": "Text"
"Parameters":
[
["Integer", "Unicode string address in memory:"]
["Integer", "Length of text (not byte count) (use 0 or less for auto-calculate):"]
["Integer", "Enter zero for ASCII, or anything else for UTF8:"]
]
}
// ID = 3
{ "Title": "UnicodeStrFromASCIIMem$("
"Returns": "Text"
"Parameters":
[
["Integer", "ASCII string address in memory:"]
["Integer", "Length of text (use 0 or less for auto-calculate):"]
["Integer", "Enter zero for ASCII, or anything else for UTF8:"]
]
}
// From Memory
// ID = 4
{ "Title": "ASCIIMemFromUnicodeStr("
"Returns": "Integer"
"Parameters":
[
["Text", "Unicode text:"]
["Integer", "Length of text (not byte count) (use 0 or less for auto-calculate):"]
["Integer", "Use ASCII (zero) or UTF8 (non-zero)?"]
]
}
// ID = 5
{ "Title": "UnicodeMemFromASCIIStr("
"Returns": "Integer"
"Parameters":
[
["Text", "ASCII text:"]
["Integer", "Length of text (use 0 or less for auto-calculate):"]
["Integer", "Enter zero for ASCII, or anything else for UTF8:"]
]
}
// ID = 6
{ "Title": "ASCIIMemFromUnicodeMem("
"Returns": "Integer"
"Parameters":
[
["Integer", "Unicode string address in memory:"]
["Integer", "Length of text (not byte count) (use 0 or less for auto-calculate):"]
["Integer", "Enter zero for ASCII, or anything else for UTF8:"]
]
}
// ID = 7
{ "Title": "UnicodeMemFromASCIIMem("
"Returns": "Integer"
"Parameters":
[
["Integer", "ASCII string address in memory:"]
["Integer", "Length of text (use 0 or less for auto-calculate):"]
["Integer", "Enter zero for ASCII, or anything else for UTF8:"]
]
}
]