angr 9.2.92__py3-none-manylinux2014_x86_64.whl → 9.2.94__py3-none-manylinux2014_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of angr might be problematic. Click here for more details.
- angr/__init__.py +1 -1
- angr/analyses/cfg/cfg_base.py +20 -10
- angr/analyses/cfg/indirect_jump_resolvers/amd64_elf_got.py +1 -1
- angr/analyses/cfg/indirect_jump_resolvers/arm_elf_fast.py +89 -32
- angr/analyses/cfg/indirect_jump_resolvers/jumptable.py +276 -133
- angr/analyses/complete_calling_conventions.py +1 -1
- angr/analyses/decompiler/ail_simplifier.py +20 -0
- angr/analyses/decompiler/block_io_finder.py +293 -0
- angr/analyses/decompiler/block_similarity.py +190 -0
- angr/analyses/decompiler/callsite_maker.py +5 -0
- angr/analyses/decompiler/clinic.py +103 -1
- angr/analyses/decompiler/decompilation_cache.py +2 -0
- angr/analyses/decompiler/decompiler.py +21 -4
- angr/analyses/decompiler/optimization_passes/__init__.py +6 -0
- angr/analyses/decompiler/optimization_passes/code_motion.py +361 -0
- angr/analyses/decompiler/optimization_passes/optimization_pass.py +1 -0
- angr/analyses/decompiler/optimization_passes/stack_canary_simplifier.py +30 -18
- angr/analyses/decompiler/optimization_passes/switch_default_case_duplicator.py +110 -0
- angr/analyses/decompiler/peephole_optimizations/bswap.py +53 -2
- angr/analyses/decompiler/peephole_optimizations/eager_eval.py +20 -1
- angr/analyses/decompiler/structured_codegen/c.py +76 -41
- angr/analyses/decompiler/structuring/phoenix.py +41 -9
- angr/analyses/decompiler/utils.py +13 -4
- angr/analyses/propagator/engine_ail.py +3 -0
- angr/analyses/reaching_definitions/engine_ail.py +3 -0
- angr/analyses/reaching_definitions/reaching_definitions.py +7 -0
- angr/analyses/stack_pointer_tracker.py +60 -10
- angr/analyses/typehoon/simple_solver.py +95 -24
- angr/analyses/typehoon/typeconsts.py +1 -1
- angr/calling_conventions.py +0 -3
- angr/engines/pcode/cc.py +1 -1
- angr/engines/successors.py +6 -0
- angr/knowledge_plugins/propagations/states.py +2 -1
- angr/procedures/definitions/glibc.py +3 -1
- angr/procedures/definitions/parse_win32json.py +2135 -383
- angr/procedures/definitions/wdk_ntoskrnl.py +956 -0
- angr/sim_type.py +53 -13
- angr/utils/library.py +2 -2
- {angr-9.2.92.dist-info → angr-9.2.94.dist-info}/METADATA +6 -6
- {angr-9.2.92.dist-info → angr-9.2.94.dist-info}/RECORD +44 -41
- {angr-9.2.92.dist-info → angr-9.2.94.dist-info}/WHEEL +1 -1
- angr/procedures/definitions/wdk_ntdll.py +0 -994
- {angr-9.2.92.dist-info → angr-9.2.94.dist-info}/LICENSE +0 -0
- {angr-9.2.92.dist-info → angr-9.2.94.dist-info}/entry_points.txt +0 -0
- {angr-9.2.92.dist-info → angr-9.2.94.dist-info}/top_level.txt +0 -0
|
@@ -61,7 +61,7 @@ def get_angr_type_from_name(name):
|
|
|
61
61
|
elif name == "Boolean":
|
|
62
62
|
return angr.types.SimTypeBool(label="Boolean")
|
|
63
63
|
elif name == "Guid":
|
|
64
|
-
#FIXME
|
|
64
|
+
# FIXME
|
|
65
65
|
return angr.types.SimTypeBottom(label="Guid")
|
|
66
66
|
else:
|
|
67
67
|
print(f"Unhandled Native Type: {name}")
|
|
@@ -76,7 +76,7 @@ def get_typeref_from_struct_type(t: angr.types.SimType) -> angr.types.SimType:
|
|
|
76
76
|
return t
|
|
77
77
|
|
|
78
78
|
|
|
79
|
-
def handle_json_type(t, create_missing: bool=False):
|
|
79
|
+
def handle_json_type(t, create_missing: bool = False):
|
|
80
80
|
if t["Kind"] == "Native":
|
|
81
81
|
return get_angr_type_from_name(t["Name"])
|
|
82
82
|
if t["Kind"] == "PointerTo":
|
|
@@ -110,7 +110,7 @@ def handle_json_type(t, create_missing: bool=False):
|
|
|
110
110
|
if t["Kind"] == "Union":
|
|
111
111
|
for nested_type in t["NestedTypes"]:
|
|
112
112
|
typelib.add(nested_type["Name"], handle_json_type(nested_type, create_missing=create_missing))
|
|
113
|
-
members = {
|
|
113
|
+
members = {}
|
|
114
114
|
for field in t["Fields"]:
|
|
115
115
|
child_type = get_typeref_from_struct_type(handle_json_type(field["Type"], create_missing=create_missing))
|
|
116
116
|
members[field["Name"]] = child_type
|
|
@@ -125,42 +125,29 @@ def handle_json_type(t, create_missing: bool=False):
|
|
|
125
125
|
def create_angr_type_from_json(t):
|
|
126
126
|
if t["Kind"] == "NativeTypedef":
|
|
127
127
|
new_typedef = handle_json_type(t["Def"])
|
|
128
|
-
|
|
128
|
+
typelib.add(t["Name"], new_typedef)
|
|
129
129
|
elif t["Kind"] == "Enum":
|
|
130
|
+
# TODO: Handle Enums
|
|
130
131
|
ty = angr.types.SimTypeInt(signed=False, label=t["Name"])
|
|
131
132
|
typelib.add(t["Name"], ty)
|
|
132
|
-
# new_enum = binaryninja.types.Enumeration()
|
|
133
|
-
# for member in t["Values"]:
|
|
134
|
-
# new_enum.append(member["Name"], int(member["Value"]))
|
|
135
|
-
# real_new_type = binaryninja.types.Type.named_type_from_type(t["Name"], binaryninja.types.Type.enumeration_type(arch,new_enum))
|
|
136
|
-
#| typelib.add_named_type(t["Name"], real_new_type)
|
|
137
133
|
elif t["Kind"] == "Struct":
|
|
138
134
|
known_struct_names.add(t["Name"])
|
|
139
135
|
real_new_type = handle_json_type(t)
|
|
140
136
|
typelib.add(t["Name"], real_new_type)
|
|
141
137
|
elif t["Kind"] == "FunctionPointer":
|
|
142
138
|
ret_type = handle_json_type(t["ReturnType"])
|
|
143
|
-
args = [
|
|
144
|
-
arg_names = [
|
|
139
|
+
args = []
|
|
140
|
+
arg_names = []
|
|
145
141
|
for param in t["Params"]:
|
|
146
142
|
new_param = handle_json_type(param["Type"])
|
|
147
143
|
args.append(new_param)
|
|
148
144
|
arg_names.append(param["Name"])
|
|
149
|
-
typelib.add(
|
|
150
|
-
|
|
145
|
+
typelib.add(
|
|
146
|
+
t["Name"], angr.types.SimTypePointer(angr.types.SimTypeFunction(args, ret_type, arg_names=arg_names))
|
|
147
|
+
)
|
|
151
148
|
elif t["Kind"] == "Com":
|
|
149
|
+
# TODO: Handle Com
|
|
152
150
|
typelib.add(t["Name"], angr.types.SimTypeBottom(label=t["Name"]))
|
|
153
|
-
# new_struct = binaryninja.types.Structure()
|
|
154
|
-
# for method in t["Methods"]:
|
|
155
|
-
# ret_type = handle_json_type(method["ReturnType"])
|
|
156
|
-
# param_list = []
|
|
157
|
-
# for param in method["Params"]:
|
|
158
|
-
# new_param = handle_json_type(param["Type"])
|
|
159
|
-
# real_new_param = binaryninja.types.FunctionParameter(new_param, param["Name"])
|
|
160
|
-
# param_list.append(real_new_param)
|
|
161
|
-
# new_func = binaryninja.types.Type.function(ret_type, param_list)
|
|
162
|
-
# new_struct.append(binaryninja.types.Type.pointer(arch, new_func), method["Name"])
|
|
163
|
-
#| typelib.add_named_type(t["Name"], binaryninja.types.Type.structure_type(new_struct))
|
|
164
151
|
elif t["Kind"] == "ComClassID":
|
|
165
152
|
return None
|
|
166
153
|
elif t["Kind"] == "Union":
|
|
@@ -226,9 +213,13 @@ def do_it(in_dir, out_file):
|
|
|
226
213
|
if libname.endswith(".dll") or libname.endswith(".exe") or libname.endswith(".sys"):
|
|
227
214
|
suffix = libname[-3:]
|
|
228
215
|
libname = libname[:-4]
|
|
216
|
+
# special case: put all wdk_ntdll.dll APIs under ntoskrnl.exe to avoid conflict with user-space ntdll.dll
|
|
217
|
+
if prefix == "wdk" and libname == "ntdll" and suffix == "dll":
|
|
218
|
+
libname = "ntoskrnl"
|
|
219
|
+
suffix = "exe"
|
|
229
220
|
ret_type = handle_json_type(f["ReturnType"], create_missing=True)
|
|
230
|
-
args = [
|
|
231
|
-
arg_names = [
|
|
221
|
+
args = []
|
|
222
|
+
arg_names = []
|
|
232
223
|
for param in f["Params"]:
|
|
233
224
|
new_param = handle_json_type(param["Type"], create_missing=True)
|
|
234
225
|
assert new_param is not None, "This should not happen, please report this."
|
|
@@ -243,441 +234,2192 @@ def do_it(in_dir, out_file):
|
|
|
243
234
|
missing_declarations = defaultdict(dict)
|
|
244
235
|
|
|
245
236
|
missing_declarations[("win32", "kernel32", "dll")] = {
|
|
246
|
-
"InterlockedCompareExchange": SimTypeFunction((SimTypeLong(),)*3, SimTypeLong()),
|
|
247
|
-
"InterlockedCompareExchange64": SimTypeFunction((SimTypeLong(),)*5, SimTypeLong()),
|
|
248
|
-
"InterlockedDecrement": SimTypeFunction((SimTypeLong(),)*1, SimTypeLong()),
|
|
249
|
-
"InterlockedExchange": SimTypeFunction((SimTypeLong(),)*2, SimTypeLong()),
|
|
250
|
-
"InterlockedExchangeAdd": SimTypeFunction((SimTypeLong(),)*2, SimTypeLong()),
|
|
251
|
-
"InterlockedIncrement": SimTypeFunction((SimTypeLong(),)*1, SimTypeLong()),
|
|
252
|
-
"UTRegister": SimTypeFunction(
|
|
253
|
-
|
|
254
|
-
|
|
237
|
+
"InterlockedCompareExchange": SimTypeFunction((SimTypeLong(),) * 3, SimTypeLong()),
|
|
238
|
+
"InterlockedCompareExchange64": SimTypeFunction((SimTypeLong(),) * 5, SimTypeLong()),
|
|
239
|
+
"InterlockedDecrement": SimTypeFunction((SimTypeLong(),) * 1, SimTypeLong()),
|
|
240
|
+
"InterlockedExchange": SimTypeFunction((SimTypeLong(),) * 2, SimTypeLong()),
|
|
241
|
+
"InterlockedExchangeAdd": SimTypeFunction((SimTypeLong(),) * 2, SimTypeLong()),
|
|
242
|
+
"InterlockedIncrement": SimTypeFunction((SimTypeLong(),) * 1, SimTypeLong()),
|
|
243
|
+
"UTRegister": SimTypeFunction(
|
|
244
|
+
[
|
|
245
|
+
SimTypeLong(signed=True),
|
|
246
|
+
SimTypeLong(signed=True),
|
|
247
|
+
SimTypeLong(signed=True),
|
|
248
|
+
SimTypeLong(signed=True),
|
|
249
|
+
SimTypeLong(signed=True),
|
|
250
|
+
SimTypeLong(signed=True),
|
|
251
|
+
SimTypeLong(signed=True),
|
|
252
|
+
],
|
|
253
|
+
SimTypeLong(signed=True),
|
|
254
|
+
),
|
|
255
|
+
"RegisterConsoleVDM": SimTypeFunction(
|
|
256
|
+
[
|
|
257
|
+
SimTypeLong(signed=True),
|
|
258
|
+
SimTypeLong(signed=True),
|
|
259
|
+
SimTypeLong(signed=True),
|
|
260
|
+
SimTypeLong(signed=True),
|
|
261
|
+
SimTypeLong(signed=True),
|
|
262
|
+
SimTypeLong(signed=True),
|
|
263
|
+
SimTypeLong(signed=True),
|
|
264
|
+
SimTypeLong(signed=True),
|
|
265
|
+
SimTypeLong(signed=True),
|
|
266
|
+
],
|
|
267
|
+
SimTypeLong(signed=True),
|
|
268
|
+
),
|
|
269
|
+
"RegOpenUserClassesRoot": SimTypeFunction(
|
|
270
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
271
|
+
SimTypeLong(signed=True),
|
|
272
|
+
),
|
|
255
273
|
"SortCloseHandle": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
256
|
-
"WriteConsoleInputVDMW": SimTypeFunction(
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
"
|
|
274
|
+
"WriteConsoleInputVDMW": SimTypeFunction(
|
|
275
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
276
|
+
SimTypeLong(signed=True),
|
|
277
|
+
),
|
|
278
|
+
"RegEnumValueW": SimTypeFunction(
|
|
279
|
+
[
|
|
280
|
+
SimTypeLong(signed=True),
|
|
281
|
+
SimTypeLong(signed=True),
|
|
282
|
+
SimTypeLong(signed=True),
|
|
283
|
+
SimTypeLong(signed=True),
|
|
284
|
+
SimTypeLong(signed=True),
|
|
285
|
+
SimTypeLong(signed=True),
|
|
286
|
+
SimTypeLong(signed=True),
|
|
287
|
+
SimTypeLong(signed=True),
|
|
288
|
+
],
|
|
289
|
+
SimTypeLong(signed=True),
|
|
290
|
+
),
|
|
291
|
+
"BaseDllReadWriteIniFile": SimTypeFunction(
|
|
292
|
+
[
|
|
293
|
+
SimTypeLong(signed=True),
|
|
294
|
+
SimTypeLong(signed=True),
|
|
295
|
+
SimTypeLong(signed=True),
|
|
296
|
+
SimTypeLong(signed=True),
|
|
297
|
+
SimTypeLong(signed=True),
|
|
298
|
+
SimTypeLong(signed=True),
|
|
299
|
+
SimTypeLong(signed=True),
|
|
300
|
+
SimTypeLong(signed=True),
|
|
301
|
+
],
|
|
302
|
+
SimTypeLong(signed=True),
|
|
303
|
+
),
|
|
304
|
+
"NlsCheckPolicy": SimTypeFunction(
|
|
305
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
306
|
+
),
|
|
307
|
+
"RegGetKeySecurity": SimTypeFunction(
|
|
308
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
309
|
+
SimTypeLong(signed=True),
|
|
310
|
+
),
|
|
261
311
|
"lstrlen": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
262
312
|
"NlsGetCacheUpdateCount": SimTypeFunction([], SimTypeLong(signed=True)),
|
|
263
|
-
"OpenThreadToken": SimTypeFunction(
|
|
313
|
+
"OpenThreadToken": SimTypeFunction(
|
|
314
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
315
|
+
SimTypeLong(signed=True),
|
|
316
|
+
),
|
|
264
317
|
"SetTermsrvAppInstallMode": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
265
|
-
"GetConsoleFontInfo": SimTypeFunction(
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
"
|
|
318
|
+
"GetConsoleFontInfo": SimTypeFunction(
|
|
319
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
320
|
+
SimTypeLong(signed=True),
|
|
321
|
+
),
|
|
322
|
+
"GetCalendarMonthsInYear": SimTypeFunction(
|
|
323
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
324
|
+
),
|
|
325
|
+
"WerpNotifyLoadStringResourceEx": SimTypeFunction(
|
|
326
|
+
[
|
|
327
|
+
SimTypeLong(signed=True),
|
|
328
|
+
SimTypeLong(signed=True),
|
|
329
|
+
SimTypeLong(signed=True),
|
|
330
|
+
SimTypeLong(signed=True),
|
|
331
|
+
SimTypeLong(signed=True),
|
|
332
|
+
],
|
|
333
|
+
SimTypeLong(signed=True),
|
|
334
|
+
),
|
|
335
|
+
"RemoveLocalAlternateComputerNameW": SimTypeFunction(
|
|
336
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
337
|
+
),
|
|
338
|
+
"SetVDMCurrentDirectories": SimTypeFunction(
|
|
339
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
340
|
+
),
|
|
270
341
|
"SetConsoleInputExeNameA": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
271
342
|
"RegDisablePredefinedCacheEx": SimTypeFunction([], SimTypeLong(signed=True)),
|
|
272
|
-
"IdnToAscii": SimTypeFunction(
|
|
343
|
+
"IdnToAscii": SimTypeFunction(
|
|
344
|
+
[
|
|
345
|
+
SimTypeLong(signed=True),
|
|
346
|
+
SimTypeLong(signed=True),
|
|
347
|
+
SimTypeLong(signed=True),
|
|
348
|
+
SimTypeLong(signed=True),
|
|
349
|
+
SimTypeLong(signed=True),
|
|
350
|
+
],
|
|
351
|
+
SimTypeLong(signed=True),
|
|
352
|
+
),
|
|
273
353
|
"LoadAppInitDlls": SimTypeFunction([], SimTypeLong(signed=True)),
|
|
274
|
-
"OpenConsoleW": SimTypeFunction(
|
|
354
|
+
"OpenConsoleW": SimTypeFunction(
|
|
355
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
356
|
+
SimTypeLong(signed=True),
|
|
357
|
+
),
|
|
275
358
|
"ExitVDM": SimTypeFunction([SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
276
|
-
"RegNotifyChangeKeyValue": SimTypeFunction(
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
359
|
+
"RegNotifyChangeKeyValue": SimTypeFunction(
|
|
360
|
+
[
|
|
361
|
+
SimTypeLong(signed=True),
|
|
362
|
+
SimTypeLong(signed=True),
|
|
363
|
+
SimTypeLong(signed=True),
|
|
364
|
+
SimTypeLong(signed=True),
|
|
365
|
+
SimTypeLong(signed=True),
|
|
366
|
+
],
|
|
367
|
+
SimTypeLong(signed=True),
|
|
368
|
+
),
|
|
369
|
+
"AddLocalAlternateComputerNameW": SimTypeFunction(
|
|
370
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
371
|
+
),
|
|
372
|
+
"RegOpenKeyExA": SimTypeFunction(
|
|
373
|
+
[
|
|
374
|
+
SimTypeLong(signed=True),
|
|
375
|
+
SimTypeLong(signed=True),
|
|
376
|
+
SimTypeLong(signed=True),
|
|
377
|
+
SimTypeLong(signed=True),
|
|
378
|
+
SimTypeLong(signed=True),
|
|
379
|
+
],
|
|
380
|
+
SimTypeLong(signed=True),
|
|
381
|
+
),
|
|
382
|
+
"RtlMoveMemory": SimTypeFunction(
|
|
383
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
384
|
+
),
|
|
280
385
|
"RegFlushKey": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
281
|
-
"RegUnLoadKeyA": SimTypeFunction(
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
"
|
|
285
|
-
|
|
286
|
-
|
|
386
|
+
"RegUnLoadKeyA": SimTypeFunction(
|
|
387
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
388
|
+
),
|
|
389
|
+
"RegisterConsoleIME": SimTypeFunction(
|
|
390
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
391
|
+
),
|
|
392
|
+
"RegLoadMUIStringA": SimTypeFunction(
|
|
393
|
+
[
|
|
394
|
+
SimTypeLong(signed=True),
|
|
395
|
+
SimTypeLong(signed=True),
|
|
396
|
+
SimTypeLong(signed=True),
|
|
397
|
+
SimTypeLong(signed=True),
|
|
398
|
+
SimTypeLong(signed=True),
|
|
399
|
+
SimTypeLong(signed=True),
|
|
400
|
+
SimTypeLong(signed=True),
|
|
401
|
+
],
|
|
402
|
+
SimTypeLong(signed=True),
|
|
403
|
+
),
|
|
404
|
+
"RegCreateKeyExW": SimTypeFunction(
|
|
405
|
+
[
|
|
406
|
+
SimTypeLong(signed=True),
|
|
407
|
+
SimTypeLong(signed=True),
|
|
408
|
+
SimTypeLong(signed=True),
|
|
409
|
+
SimTypeLong(signed=True),
|
|
410
|
+
SimTypeLong(signed=True),
|
|
411
|
+
SimTypeLong(signed=True),
|
|
412
|
+
SimTypeLong(signed=True),
|
|
413
|
+
SimTypeLong(signed=True),
|
|
414
|
+
SimTypeLong(signed=True),
|
|
415
|
+
],
|
|
416
|
+
SimTypeLong(signed=True),
|
|
417
|
+
),
|
|
418
|
+
"CheckForReadOnlyResource": SimTypeFunction(
|
|
419
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
420
|
+
),
|
|
421
|
+
"RegRestoreKeyW": SimTypeFunction(
|
|
422
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
423
|
+
),
|
|
287
424
|
"lstrcpy": SimTypeFunction([SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
288
|
-
"RegEnumKeyExW": SimTypeFunction(
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
425
|
+
"RegEnumKeyExW": SimTypeFunction(
|
|
426
|
+
[
|
|
427
|
+
SimTypeLong(signed=True),
|
|
428
|
+
SimTypeLong(signed=True),
|
|
429
|
+
SimTypeLong(signed=True),
|
|
430
|
+
SimTypeLong(signed=True),
|
|
431
|
+
SimTypeLong(signed=True),
|
|
432
|
+
SimTypeLong(signed=True),
|
|
433
|
+
SimTypeLong(signed=True),
|
|
434
|
+
SimTypeLong(signed=True),
|
|
435
|
+
],
|
|
436
|
+
SimTypeLong(signed=True),
|
|
437
|
+
),
|
|
438
|
+
"CreateProcessAsUserW": SimTypeFunction(
|
|
439
|
+
[
|
|
440
|
+
SimTypeLong(signed=True),
|
|
441
|
+
SimTypeLong(signed=True),
|
|
442
|
+
SimTypeLong(signed=True),
|
|
443
|
+
SimTypeLong(signed=True),
|
|
444
|
+
SimTypeLong(signed=True),
|
|
445
|
+
SimTypeLong(signed=True),
|
|
446
|
+
SimTypeLong(signed=True),
|
|
447
|
+
SimTypeLong(signed=True),
|
|
448
|
+
SimTypeLong(signed=True),
|
|
449
|
+
SimTypeLong(signed=True),
|
|
450
|
+
SimTypeLong(signed=True),
|
|
451
|
+
],
|
|
452
|
+
SimTypeLong(signed=True),
|
|
453
|
+
),
|
|
454
|
+
"RtlZeroMemory": SimTypeFunction(
|
|
455
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
456
|
+
),
|
|
457
|
+
"GetConsoleNlsMode": SimTypeFunction(
|
|
458
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
459
|
+
),
|
|
460
|
+
"RegGetValueA": SimTypeFunction(
|
|
461
|
+
[
|
|
462
|
+
SimTypeLong(signed=True),
|
|
463
|
+
SimTypeLong(signed=True),
|
|
464
|
+
SimTypeLong(signed=True),
|
|
465
|
+
SimTypeLong(signed=True),
|
|
466
|
+
SimTypeLong(signed=True),
|
|
467
|
+
SimTypeLong(signed=True),
|
|
468
|
+
SimTypeLong(signed=True),
|
|
469
|
+
],
|
|
470
|
+
SimTypeLong(signed=True),
|
|
471
|
+
),
|
|
472
|
+
"AdjustCalendarDate": SimTypeFunction(
|
|
473
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
474
|
+
),
|
|
294
475
|
"BaseSetLastNTError": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
295
|
-
"ShowConsoleCursor": SimTypeFunction(
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
"
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
"
|
|
476
|
+
"ShowConsoleCursor": SimTypeFunction(
|
|
477
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
478
|
+
),
|
|
479
|
+
"BasepCheckWinSaferRestrictions": SimTypeFunction(
|
|
480
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
481
|
+
),
|
|
482
|
+
"ReadConsoleInputExA": SimTypeFunction(
|
|
483
|
+
[
|
|
484
|
+
SimTypeLong(signed=True),
|
|
485
|
+
SimTypeLong(signed=True),
|
|
486
|
+
SimTypeLong(signed=True),
|
|
487
|
+
SimTypeLong(signed=True),
|
|
488
|
+
SimTypeLong(signed=True),
|
|
489
|
+
],
|
|
490
|
+
SimTypeLong(signed=True),
|
|
491
|
+
),
|
|
492
|
+
"RegSetValueExW": SimTypeFunction(
|
|
493
|
+
[
|
|
494
|
+
SimTypeLong(signed=True),
|
|
495
|
+
SimTypeLong(signed=True),
|
|
496
|
+
SimTypeLong(signed=True),
|
|
497
|
+
SimTypeLong(signed=True),
|
|
498
|
+
SimTypeLong(signed=True),
|
|
499
|
+
SimTypeLong(signed=True),
|
|
500
|
+
],
|
|
501
|
+
SimTypeLong(signed=True),
|
|
502
|
+
),
|
|
503
|
+
"RegQueryValueExW": SimTypeFunction(
|
|
504
|
+
[
|
|
505
|
+
SimTypeLong(signed=True),
|
|
506
|
+
SimTypeLong(signed=True),
|
|
507
|
+
SimTypeLong(signed=True),
|
|
508
|
+
SimTypeLong(signed=True),
|
|
509
|
+
SimTypeLong(signed=True),
|
|
510
|
+
SimTypeLong(signed=True),
|
|
511
|
+
],
|
|
512
|
+
SimTypeLong(signed=True),
|
|
513
|
+
),
|
|
514
|
+
"RegDeleteValueA": SimTypeFunction(
|
|
515
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
516
|
+
),
|
|
517
|
+
"RegOpenCurrentUser": SimTypeFunction(
|
|
518
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
519
|
+
),
|
|
302
520
|
"CtrlRoutine": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
303
|
-
"RtlFillMemory": SimTypeFunction(
|
|
521
|
+
"RtlFillMemory": SimTypeFunction(
|
|
522
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
523
|
+
),
|
|
304
524
|
"VerifyConsoleIoHandle": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
305
|
-
"EnumerateLocalComputerNamesW": SimTypeFunction(
|
|
525
|
+
"EnumerateLocalComputerNamesW": SimTypeFunction(
|
|
526
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
527
|
+
SimTypeLong(signed=True),
|
|
528
|
+
),
|
|
306
529
|
"CloseProfileUserMapping": SimTypeFunction([], SimTypeLong(signed=True)),
|
|
307
|
-
"GetEraNameCountedString": SimTypeFunction(
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
"
|
|
530
|
+
"GetEraNameCountedString": SimTypeFunction(
|
|
531
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
532
|
+
SimTypeLong(signed=True),
|
|
533
|
+
),
|
|
534
|
+
"RegisterWaitForSingleObjectEx": SimTypeFunction(
|
|
535
|
+
[
|
|
536
|
+
SimTypeLong(signed=True),
|
|
537
|
+
SimTypeLong(signed=True),
|
|
538
|
+
SimTypeLong(signed=True),
|
|
539
|
+
SimTypeLong(signed=True),
|
|
540
|
+
SimTypeLong(signed=True),
|
|
541
|
+
],
|
|
542
|
+
SimTypeLong(signed=True),
|
|
543
|
+
),
|
|
544
|
+
"DosPathToSessionPathW": SimTypeFunction(
|
|
545
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
546
|
+
),
|
|
547
|
+
"RegSaveKeyExA": SimTypeFunction(
|
|
548
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
549
|
+
SimTypeLong(signed=True),
|
|
550
|
+
),
|
|
551
|
+
"CreateProcessInternalW": SimTypeFunction(
|
|
552
|
+
[
|
|
553
|
+
SimTypeLong(signed=True),
|
|
554
|
+
SimTypeLong(signed=True),
|
|
555
|
+
SimTypeLong(signed=True),
|
|
556
|
+
SimTypeLong(signed=True),
|
|
557
|
+
SimTypeLong(signed=True),
|
|
558
|
+
SimTypeLong(signed=True),
|
|
559
|
+
SimTypeLong(signed=True),
|
|
560
|
+
SimTypeLong(signed=True),
|
|
561
|
+
SimTypeLong(signed=True),
|
|
562
|
+
SimTypeLong(signed=True),
|
|
563
|
+
SimTypeLong(signed=True),
|
|
564
|
+
SimTypeLong(signed=True),
|
|
565
|
+
],
|
|
566
|
+
SimTypeLong(signed=True),
|
|
567
|
+
),
|
|
312
568
|
"OpenProfileUserMapping": SimTypeFunction([], SimTypeLong(signed=True)),
|
|
313
|
-
"GetConsoleHardwareState": SimTypeFunction(
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
"
|
|
569
|
+
"GetConsoleHardwareState": SimTypeFunction(
|
|
570
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
571
|
+
),
|
|
572
|
+
"SetConsoleNlsMode": SimTypeFunction(
|
|
573
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
574
|
+
),
|
|
575
|
+
"AddLocalAlternateComputerNameA": SimTypeFunction(
|
|
576
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
577
|
+
),
|
|
578
|
+
"BasepCheckBadapp": SimTypeFunction(
|
|
579
|
+
[
|
|
580
|
+
SimTypeLong(signed=True),
|
|
581
|
+
SimTypeLong(signed=True),
|
|
582
|
+
SimTypeLong(signed=True),
|
|
583
|
+
SimTypeLong(signed=True),
|
|
584
|
+
SimTypeLong(signed=True),
|
|
585
|
+
SimTypeLong(signed=True),
|
|
586
|
+
SimTypeLong(signed=True),
|
|
587
|
+
SimTypeLong(signed=True),
|
|
588
|
+
SimTypeLong(signed=True),
|
|
589
|
+
SimTypeLong(signed=True),
|
|
590
|
+
SimTypeLong(signed=True),
|
|
591
|
+
SimTypeLong(signed=True),
|
|
592
|
+
SimTypeLong(signed=True),
|
|
593
|
+
SimTypeLong(signed=True),
|
|
594
|
+
SimTypeLong(signed=True),
|
|
595
|
+
],
|
|
596
|
+
SimTypeLong(signed=True),
|
|
597
|
+
),
|
|
317
598
|
"GetConsoleKeyboardLayoutNameA": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
318
599
|
"lstrcmpi": SimTypeFunction([SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
319
|
-
"BaseFormatObjectAttributes": SimTypeFunction(
|
|
600
|
+
"BaseFormatObjectAttributes": SimTypeFunction(
|
|
601
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
602
|
+
SimTypeLong(signed=True),
|
|
603
|
+
),
|
|
320
604
|
"LZCloseFile": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
321
|
-
"GetNamedPipeAttribute": SimTypeFunction(
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
605
|
+
"GetNamedPipeAttribute": SimTypeFunction(
|
|
606
|
+
[
|
|
607
|
+
SimTypeLong(signed=True),
|
|
608
|
+
SimTypeLong(signed=True),
|
|
609
|
+
SimTypeLong(signed=True),
|
|
610
|
+
SimTypeLong(signed=True),
|
|
611
|
+
SimTypeLong(signed=True),
|
|
612
|
+
],
|
|
613
|
+
SimTypeLong(signed=True),
|
|
614
|
+
),
|
|
615
|
+
"BasepMapModuleHandle": SimTypeFunction(
|
|
616
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
617
|
+
),
|
|
618
|
+
"SetNamedPipeAttribute": SimTypeFunction(
|
|
619
|
+
[
|
|
620
|
+
SimTypeLong(signed=True),
|
|
621
|
+
SimTypeLong(signed=True),
|
|
622
|
+
SimTypeLong(signed=True),
|
|
623
|
+
SimTypeLong(signed=True),
|
|
624
|
+
SimTypeLong(signed=True),
|
|
625
|
+
],
|
|
626
|
+
SimTypeLong(signed=True),
|
|
627
|
+
),
|
|
628
|
+
"RegCreateKeyExA": SimTypeFunction(
|
|
629
|
+
[
|
|
630
|
+
SimTypeLong(signed=True),
|
|
631
|
+
SimTypeLong(signed=True),
|
|
632
|
+
SimTypeLong(signed=True),
|
|
633
|
+
SimTypeLong(signed=True),
|
|
634
|
+
SimTypeLong(signed=True),
|
|
635
|
+
SimTypeLong(signed=True),
|
|
636
|
+
SimTypeLong(signed=True),
|
|
637
|
+
SimTypeLong(signed=True),
|
|
638
|
+
SimTypeLong(signed=True),
|
|
639
|
+
],
|
|
640
|
+
SimTypeLong(signed=True),
|
|
641
|
+
),
|
|
325
642
|
"SetConsoleOS2OemFormat": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
326
643
|
"TermsrvAppInstallMode": SimTypeFunction([], SimTypeLong(signed=True)),
|
|
327
|
-
"RemoveLocalAlternateComputerNameA": SimTypeFunction(
|
|
328
|
-
|
|
329
|
-
|
|
644
|
+
"RemoveLocalAlternateComputerNameA": SimTypeFunction(
|
|
645
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
646
|
+
),
|
|
647
|
+
"LZCreateFileW": SimTypeFunction(
|
|
648
|
+
[
|
|
649
|
+
SimTypeLong(signed=True),
|
|
650
|
+
SimTypeLong(signed=True),
|
|
651
|
+
SimTypeLong(signed=True),
|
|
652
|
+
SimTypeLong(signed=True),
|
|
653
|
+
SimTypeLong(signed=True),
|
|
654
|
+
],
|
|
655
|
+
SimTypeLong(signed=True),
|
|
656
|
+
),
|
|
657
|
+
"NlsUpdateLocale": SimTypeFunction(
|
|
658
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
659
|
+
),
|
|
330
660
|
"RegisterWowBaseHandlers": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
331
661
|
"SetClientTimeZoneInformation": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
332
|
-
"BaseCheckRunApp": SimTypeFunction(
|
|
662
|
+
"BaseCheckRunApp": SimTypeFunction(
|
|
663
|
+
[
|
|
664
|
+
SimTypeLong(signed=True),
|
|
665
|
+
SimTypeLong(signed=True),
|
|
666
|
+
SimTypeLong(signed=True),
|
|
667
|
+
SimTypeLong(signed=True),
|
|
668
|
+
SimTypeLong(signed=True),
|
|
669
|
+
SimTypeLong(signed=True),
|
|
670
|
+
SimTypeLong(signed=True),
|
|
671
|
+
SimTypeLong(signed=True),
|
|
672
|
+
SimTypeLong(signed=True),
|
|
673
|
+
SimTypeLong(signed=True),
|
|
674
|
+
SimTypeLong(signed=True),
|
|
675
|
+
SimTypeLong(signed=True),
|
|
676
|
+
SimTypeLong(signed=True),
|
|
677
|
+
],
|
|
678
|
+
SimTypeLong(signed=True),
|
|
679
|
+
),
|
|
333
680
|
"BaseThreadInitThunk": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
334
681
|
"UpdateCalendarDayOfWeek": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
335
|
-
"SetConsoleMaximumWindowSize": SimTypeFunction(
|
|
682
|
+
"SetConsoleMaximumWindowSize": SimTypeFunction(
|
|
683
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
684
|
+
),
|
|
336
685
|
"ConvertNLSDayOfWeekToWin32DayOfWeek": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
337
|
-
"ConvertCalDateTimeToSystemTime": SimTypeFunction(
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
"
|
|
686
|
+
"ConvertCalDateTimeToSystemTime": SimTypeFunction(
|
|
687
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
688
|
+
),
|
|
689
|
+
"RegDeleteKeyExW": SimTypeFunction(
|
|
690
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
691
|
+
SimTypeLong(signed=True),
|
|
692
|
+
),
|
|
693
|
+
"ReplaceFile": SimTypeFunction(
|
|
694
|
+
[
|
|
695
|
+
SimTypeLong(signed=True),
|
|
696
|
+
SimTypeLong(signed=True),
|
|
697
|
+
SimTypeLong(signed=True),
|
|
698
|
+
SimTypeLong(signed=True),
|
|
699
|
+
SimTypeLong(signed=True),
|
|
700
|
+
SimTypeLong(signed=True),
|
|
701
|
+
],
|
|
702
|
+
SimTypeLong(signed=True),
|
|
703
|
+
),
|
|
704
|
+
"GetConsoleCharType": SimTypeFunction(
|
|
705
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
706
|
+
),
|
|
341
707
|
"GetConsoleInputWaitHandle": SimTypeFunction([], SimTypeLong(signed=True)),
|
|
342
708
|
"RestoreLastError": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
343
|
-
"CompareCalendarDates": SimTypeFunction(
|
|
344
|
-
|
|
345
|
-
|
|
709
|
+
"CompareCalendarDates": SimTypeFunction(
|
|
710
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
711
|
+
),
|
|
712
|
+
"RegLoadKeyA": SimTypeFunction(
|
|
713
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
714
|
+
),
|
|
715
|
+
"SetLocalPrimaryComputerNameW": SimTypeFunction(
|
|
716
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
717
|
+
),
|
|
346
718
|
"UnregisterConsoleIME": SimTypeFunction([], SimTypeLong(signed=True)),
|
|
347
719
|
"lstrcat": SimTypeFunction([SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
348
720
|
"BaseInitAppcompatCacheSupport": SimTypeFunction([], SimTypeLong(signed=True)),
|
|
349
|
-
"InterlockedPushListSList": SimTypeFunction(
|
|
721
|
+
"InterlockedPushListSList": SimTypeFunction(
|
|
722
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
723
|
+
),
|
|
350
724
|
"GetEnvironmentStringsA": SimTypeFunction([], SimTypeLong(signed=True)),
|
|
351
725
|
"CreateSocketHandle": SimTypeFunction([], SimTypeLong(signed=True)),
|
|
352
|
-
"RegSetKeySecurity": SimTypeFunction(
|
|
353
|
-
|
|
354
|
-
|
|
726
|
+
"RegSetKeySecurity": SimTypeFunction(
|
|
727
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
728
|
+
),
|
|
729
|
+
"SetThreadToken": SimTypeFunction(
|
|
730
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
731
|
+
),
|
|
732
|
+
"RegQueryInfoKeyW": SimTypeFunction(
|
|
733
|
+
[
|
|
734
|
+
SimTypeLong(signed=True),
|
|
735
|
+
SimTypeLong(signed=True),
|
|
736
|
+
SimTypeLong(signed=True),
|
|
737
|
+
SimTypeLong(signed=True),
|
|
738
|
+
SimTypeLong(signed=True),
|
|
739
|
+
SimTypeLong(signed=True),
|
|
740
|
+
SimTypeLong(signed=True),
|
|
741
|
+
SimTypeLong(signed=True),
|
|
742
|
+
SimTypeLong(signed=True),
|
|
743
|
+
SimTypeLong(signed=True),
|
|
744
|
+
SimTypeLong(signed=True),
|
|
745
|
+
SimTypeLong(signed=True),
|
|
746
|
+
],
|
|
747
|
+
SimTypeLong(signed=True),
|
|
748
|
+
),
|
|
355
749
|
"GetNumberOfConsoleFonts": SimTypeFunction([], SimTypeLong(signed=True)),
|
|
356
|
-
"GetCalendarSupportedDateRange": SimTypeFunction(
|
|
357
|
-
|
|
750
|
+
"GetCalendarSupportedDateRange": SimTypeFunction(
|
|
751
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
752
|
+
),
|
|
753
|
+
"RegOpenKeyExW": SimTypeFunction(
|
|
754
|
+
[
|
|
755
|
+
SimTypeLong(signed=True),
|
|
756
|
+
SimTypeLong(signed=True),
|
|
757
|
+
SimTypeLong(signed=True),
|
|
758
|
+
SimTypeLong(signed=True),
|
|
759
|
+
SimTypeLong(signed=True),
|
|
760
|
+
],
|
|
761
|
+
SimTypeLong(signed=True),
|
|
762
|
+
),
|
|
358
763
|
"RegKrnGetGlobalState": SimTypeFunction([], SimTypeLong(signed=True)),
|
|
359
764
|
"WerpNotifyUseStringResource": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
360
|
-
"SetConsoleFont": SimTypeFunction(
|
|
765
|
+
"SetConsoleFont": SimTypeFunction(
|
|
766
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
767
|
+
),
|
|
361
768
|
"BaseGetNamedObjectDirectory": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
362
|
-
"IsCalendarLeapMonth": SimTypeFunction(
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
"
|
|
367
|
-
|
|
368
|
-
|
|
769
|
+
"IsCalendarLeapMonth": SimTypeFunction(
|
|
770
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
771
|
+
SimTypeLong(signed=True),
|
|
772
|
+
),
|
|
773
|
+
"RegDeleteTreeW": SimTypeFunction(
|
|
774
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
775
|
+
),
|
|
776
|
+
"IsValidCalDateTime": SimTypeFunction(
|
|
777
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
778
|
+
),
|
|
779
|
+
"RegQueryValueExA": SimTypeFunction(
|
|
780
|
+
[
|
|
781
|
+
SimTypeLong(signed=True),
|
|
782
|
+
SimTypeLong(signed=True),
|
|
783
|
+
SimTypeLong(signed=True),
|
|
784
|
+
SimTypeLong(signed=True),
|
|
785
|
+
SimTypeLong(signed=True),
|
|
786
|
+
SimTypeLong(signed=True),
|
|
787
|
+
],
|
|
788
|
+
SimTypeLong(signed=True),
|
|
789
|
+
),
|
|
790
|
+
"SetConsoleCursor": SimTypeFunction(
|
|
791
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
792
|
+
),
|
|
793
|
+
"RegDeleteTreeA": SimTypeFunction(
|
|
794
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
795
|
+
),
|
|
796
|
+
"SortGetHandle": SimTypeFunction(
|
|
797
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
798
|
+
),
|
|
369
799
|
"WerpInitiateRemoteRecovery": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
370
800
|
"VDMOperationStarted": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
371
|
-
"OpenProcessToken": SimTypeFunction(
|
|
372
|
-
|
|
801
|
+
"OpenProcessToken": SimTypeFunction(
|
|
802
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
803
|
+
),
|
|
804
|
+
"VDMConsoleOperation": SimTypeFunction(
|
|
805
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
806
|
+
),
|
|
373
807
|
"BaseVerifyUnicodeString": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
374
|
-
"RegUnLoadKeyW": SimTypeFunction(
|
|
808
|
+
"RegUnLoadKeyW": SimTypeFunction(
|
|
809
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
810
|
+
),
|
|
375
811
|
"GetProcessUserModeExceptionPolicy": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
376
812
|
"GetNextVDMCommand": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
377
|
-
"LoadStringBaseW": SimTypeFunction(
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
813
|
+
"LoadStringBaseW": SimTypeFunction(
|
|
814
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
815
|
+
SimTypeLong(signed=True),
|
|
816
|
+
),
|
|
817
|
+
"DuplicateConsoleHandle": SimTypeFunction(
|
|
818
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
819
|
+
SimTypeLong(signed=True),
|
|
820
|
+
),
|
|
821
|
+
"BaseCheckAppcompatCache": SimTypeFunction(
|
|
822
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
823
|
+
SimTypeLong(signed=True),
|
|
824
|
+
),
|
|
825
|
+
"WerpStringLookup": SimTypeFunction(
|
|
826
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
827
|
+
),
|
|
381
828
|
"BaseDumpAppcompatCache": SimTypeFunction([], SimTypeLong(signed=True)),
|
|
382
|
-
"CreateProcessInternalA": SimTypeFunction(
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
829
|
+
"CreateProcessInternalA": SimTypeFunction(
|
|
830
|
+
[
|
|
831
|
+
SimTypeLong(signed=True),
|
|
832
|
+
SimTypeLong(signed=True),
|
|
833
|
+
SimTypeLong(signed=True),
|
|
834
|
+
SimTypeLong(signed=True),
|
|
835
|
+
SimTypeLong(signed=True),
|
|
836
|
+
SimTypeLong(signed=True),
|
|
837
|
+
SimTypeLong(signed=True),
|
|
838
|
+
SimTypeLong(signed=True),
|
|
839
|
+
SimTypeLong(signed=True),
|
|
840
|
+
SimTypeLong(signed=True),
|
|
841
|
+
SimTypeLong(signed=True),
|
|
842
|
+
SimTypeLong(signed=True),
|
|
843
|
+
],
|
|
844
|
+
SimTypeLong(signed=True),
|
|
845
|
+
),
|
|
846
|
+
"NlsEventDataDescCreate": SimTypeFunction(
|
|
847
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
848
|
+
SimTypeLong(signed=True),
|
|
849
|
+
),
|
|
850
|
+
"RegRestoreKeyA": SimTypeFunction(
|
|
851
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
852
|
+
),
|
|
853
|
+
"NlsWriteEtwEvent": SimTypeFunction(
|
|
854
|
+
[
|
|
855
|
+
SimTypeLong(signed=True),
|
|
856
|
+
SimTypeLong(signed=True),
|
|
857
|
+
SimTypeLong(signed=True),
|
|
858
|
+
SimTypeLong(signed=True),
|
|
859
|
+
SimTypeLong(signed=True),
|
|
860
|
+
],
|
|
861
|
+
SimTypeLong(signed=True),
|
|
862
|
+
),
|
|
386
863
|
"RegCloseKey": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
387
|
-
"NotifyMountMgr": SimTypeFunction(
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
"
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
"
|
|
394
|
-
|
|
395
|
-
|
|
864
|
+
"NotifyMountMgr": SimTypeFunction(
|
|
865
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
866
|
+
),
|
|
867
|
+
"IsCalendarLeapYear": SimTypeFunction(
|
|
868
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
869
|
+
),
|
|
870
|
+
"DosPathToSessionPathA": SimTypeFunction(
|
|
871
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
872
|
+
),
|
|
873
|
+
"BasepAnsiStringToDynamicUnicodeString": SimTypeFunction(
|
|
874
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
875
|
+
),
|
|
876
|
+
"SetLocalPrimaryComputerNameA": SimTypeFunction(
|
|
877
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
878
|
+
),
|
|
879
|
+
"lstrcpyn": SimTypeFunction(
|
|
880
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
881
|
+
),
|
|
882
|
+
"SetConsoleLocalEUDC": SimTypeFunction(
|
|
883
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
884
|
+
SimTypeLong(signed=True),
|
|
885
|
+
),
|
|
886
|
+
"PrivCopyFileExW": SimTypeFunction(
|
|
887
|
+
[
|
|
888
|
+
SimTypeLong(signed=True),
|
|
889
|
+
SimTypeLong(signed=True),
|
|
890
|
+
SimTypeLong(signed=True),
|
|
891
|
+
SimTypeLong(signed=True),
|
|
892
|
+
SimTypeLong(signed=True),
|
|
893
|
+
SimTypeLong(signed=True),
|
|
894
|
+
],
|
|
895
|
+
SimTypeLong(signed=True),
|
|
896
|
+
),
|
|
897
|
+
"SetConsoleCursorMode": SimTypeFunction(
|
|
898
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
899
|
+
),
|
|
396
900
|
"RegisterConsoleOS2": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
397
901
|
"SetConsoleIcon": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
398
|
-
"RegDeleteValueW": SimTypeFunction(
|
|
902
|
+
"RegDeleteValueW": SimTypeFunction(
|
|
903
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
904
|
+
),
|
|
399
905
|
"SetConsoleInputExeNameW": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
400
|
-
"SetConsoleHardwareState": SimTypeFunction(
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
"
|
|
404
|
-
|
|
405
|
-
|
|
906
|
+
"SetConsoleHardwareState": SimTypeFunction(
|
|
907
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
908
|
+
),
|
|
909
|
+
"GetConsoleCursorMode": SimTypeFunction(
|
|
910
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
911
|
+
),
|
|
912
|
+
"ReadConsoleInputExW": SimTypeFunction(
|
|
913
|
+
[
|
|
914
|
+
SimTypeLong(signed=True),
|
|
915
|
+
SimTypeLong(signed=True),
|
|
916
|
+
SimTypeLong(signed=True),
|
|
917
|
+
SimTypeLong(signed=True),
|
|
918
|
+
SimTypeLong(signed=True),
|
|
919
|
+
],
|
|
920
|
+
SimTypeLong(signed=True),
|
|
921
|
+
),
|
|
922
|
+
"WerpNotifyLoadStringResource": SimTypeFunction(
|
|
923
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
924
|
+
SimTypeLong(signed=True),
|
|
925
|
+
),
|
|
926
|
+
"BaseCheckAppcompatCacheEx": SimTypeFunction(
|
|
927
|
+
[
|
|
928
|
+
SimTypeLong(signed=True),
|
|
929
|
+
SimTypeLong(signed=True),
|
|
930
|
+
SimTypeLong(signed=True),
|
|
931
|
+
SimTypeLong(signed=True),
|
|
932
|
+
SimTypeLong(signed=True),
|
|
933
|
+
SimTypeLong(signed=True),
|
|
934
|
+
],
|
|
935
|
+
SimTypeLong(signed=True),
|
|
936
|
+
),
|
|
937
|
+
"PrivMoveFileIdentityW": SimTypeFunction(
|
|
938
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
939
|
+
),
|
|
406
940
|
"CmdBatNotification": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
407
|
-
"BaseFormatTimeOut": SimTypeFunction(
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
"
|
|
941
|
+
"BaseFormatTimeOut": SimTypeFunction(
|
|
942
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
943
|
+
),
|
|
944
|
+
"InvalidateConsoleDIBits": SimTypeFunction(
|
|
945
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
946
|
+
),
|
|
947
|
+
"RegSaveKeyExW": SimTypeFunction(
|
|
948
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
949
|
+
SimTypeLong(signed=True),
|
|
950
|
+
),
|
|
951
|
+
"IsCalendarLeapDay": SimTypeFunction(
|
|
952
|
+
[
|
|
953
|
+
SimTypeLong(signed=True),
|
|
954
|
+
SimTypeLong(signed=True),
|
|
955
|
+
SimTypeLong(signed=True),
|
|
956
|
+
SimTypeLong(signed=True),
|
|
957
|
+
SimTypeLong(signed=True),
|
|
958
|
+
],
|
|
959
|
+
SimTypeLong(signed=True),
|
|
960
|
+
),
|
|
411
961
|
"BaseCleanupAppcompatCacheSupport": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
412
|
-
"BasepAllocateActivationContextActivationBlock": SimTypeFunction(
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
962
|
+
"BasepAllocateActivationContextActivationBlock": SimTypeFunction(
|
|
963
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
964
|
+
SimTypeLong(signed=True),
|
|
965
|
+
),
|
|
966
|
+
"DelayLoadFailureHook": SimTypeFunction(
|
|
967
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
968
|
+
),
|
|
969
|
+
"WriteConsoleInputVDMA": SimTypeFunction(
|
|
970
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
971
|
+
SimTypeLong(signed=True),
|
|
972
|
+
),
|
|
973
|
+
"RegLoadKeyW": SimTypeFunction(
|
|
974
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
975
|
+
),
|
|
416
976
|
"lstrcmp": SimTypeFunction([SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
417
|
-
"ConsoleMenuControl": SimTypeFunction(
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
"
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
977
|
+
"ConsoleMenuControl": SimTypeFunction(
|
|
978
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
979
|
+
),
|
|
980
|
+
"BaseQueryModuleData": SimTypeFunction(
|
|
981
|
+
[
|
|
982
|
+
SimTypeLong(signed=True),
|
|
983
|
+
SimTypeLong(signed=True),
|
|
984
|
+
SimTypeLong(signed=True),
|
|
985
|
+
SimTypeLong(signed=True),
|
|
986
|
+
SimTypeLong(signed=True),
|
|
987
|
+
SimTypeLong(signed=True),
|
|
988
|
+
SimTypeLong(signed=True),
|
|
989
|
+
],
|
|
990
|
+
SimTypeLong(signed=True),
|
|
991
|
+
),
|
|
992
|
+
"RegDeleteKeyExA": SimTypeFunction(
|
|
993
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
994
|
+
SimTypeLong(signed=True),
|
|
995
|
+
),
|
|
996
|
+
"RegLoadMUIStringW": SimTypeFunction(
|
|
997
|
+
[
|
|
998
|
+
SimTypeLong(signed=True),
|
|
999
|
+
SimTypeLong(signed=True),
|
|
1000
|
+
SimTypeLong(signed=True),
|
|
1001
|
+
SimTypeLong(signed=True),
|
|
1002
|
+
SimTypeLong(signed=True),
|
|
1003
|
+
SimTypeLong(signed=True),
|
|
1004
|
+
SimTypeLong(signed=True),
|
|
1005
|
+
],
|
|
1006
|
+
SimTypeLong(signed=True),
|
|
1007
|
+
),
|
|
1008
|
+
"SetHandleContext": SimTypeFunction(
|
|
1009
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1010
|
+
),
|
|
1011
|
+
"IdnToUnicode": SimTypeFunction(
|
|
1012
|
+
[
|
|
1013
|
+
SimTypeLong(signed=True),
|
|
1014
|
+
SimTypeLong(signed=True),
|
|
1015
|
+
SimTypeLong(signed=True),
|
|
1016
|
+
SimTypeLong(signed=True),
|
|
1017
|
+
SimTypeLong(signed=True),
|
|
1018
|
+
],
|
|
1019
|
+
SimTypeLong(signed=True),
|
|
1020
|
+
),
|
|
1021
|
+
"RegKrnInitialize": SimTypeFunction(
|
|
1022
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1023
|
+
),
|
|
424
1024
|
"BaseFlushAppcompatCache": SimTypeFunction([], SimTypeLong(signed=True)),
|
|
425
|
-
"GetCalendarWeekNumber": SimTypeFunction(
|
|
426
|
-
|
|
1025
|
+
"GetCalendarWeekNumber": SimTypeFunction(
|
|
1026
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
1027
|
+
SimTypeLong(signed=True),
|
|
1028
|
+
),
|
|
1029
|
+
"NlsUpdateSystemLocale": SimTypeFunction(
|
|
1030
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1031
|
+
),
|
|
427
1032
|
"GetComPlusPackageInstallStatus": SimTypeFunction([], SimTypeLong(signed=True)),
|
|
428
1033
|
"BaseIsAppcompatInfrastructureDisabled": SimTypeFunction([], SimTypeLong(signed=True)),
|
|
429
1034
|
"WerpCleanupMessageMapping": SimTypeFunction([], SimTypeLong(signed=True)),
|
|
430
1035
|
"RegisterWowExec": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
431
|
-
"BasepCheckAppCompat": SimTypeFunction(
|
|
1036
|
+
"BasepCheckAppCompat": SimTypeFunction(
|
|
1037
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
1038
|
+
SimTypeLong(signed=True),
|
|
1039
|
+
),
|
|
432
1040
|
"SetConsoleMenuClose": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
433
|
-
"GetCalendarDifferenceInDays": SimTypeFunction(
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
"
|
|
437
|
-
|
|
438
|
-
|
|
1041
|
+
"GetCalendarDifferenceInDays": SimTypeFunction(
|
|
1042
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1043
|
+
),
|
|
1044
|
+
"LoadStringBaseExW": SimTypeFunction(
|
|
1045
|
+
[
|
|
1046
|
+
SimTypeLong(signed=True),
|
|
1047
|
+
SimTypeLong(signed=True),
|
|
1048
|
+
SimTypeLong(signed=True),
|
|
1049
|
+
SimTypeLong(signed=True),
|
|
1050
|
+
SimTypeLong(signed=True),
|
|
1051
|
+
],
|
|
1052
|
+
SimTypeLong(signed=True),
|
|
1053
|
+
),
|
|
1054
|
+
"GetConsoleInputExeNameA": SimTypeFunction(
|
|
1055
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1056
|
+
),
|
|
1057
|
+
"SetConsolePalette": SimTypeFunction(
|
|
1058
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1059
|
+
),
|
|
1060
|
+
"GetCalendarDaysInMonth": SimTypeFunction(
|
|
1061
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
1062
|
+
SimTypeLong(signed=True),
|
|
1063
|
+
),
|
|
1064
|
+
"BaseGenerateAppCompatData": SimTypeFunction(
|
|
1065
|
+
[
|
|
1066
|
+
SimTypeLong(signed=True),
|
|
1067
|
+
SimTypeLong(signed=True),
|
|
1068
|
+
SimTypeLong(signed=True),
|
|
1069
|
+
SimTypeLong(signed=True),
|
|
1070
|
+
SimTypeLong(signed=True),
|
|
1071
|
+
SimTypeLong(signed=True),
|
|
1072
|
+
],
|
|
1073
|
+
SimTypeLong(signed=True),
|
|
1074
|
+
),
|
|
439
1075
|
"SetLastConsoleEventActive": SimTypeFunction([], SimTypeLong(signed=True)),
|
|
440
|
-
"GetConsoleInputExeNameW": SimTypeFunction(
|
|
441
|
-
|
|
1076
|
+
"GetConsoleInputExeNameW": SimTypeFunction(
|
|
1077
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1078
|
+
),
|
|
1079
|
+
"RegGetValueW": SimTypeFunction(
|
|
1080
|
+
[
|
|
1081
|
+
SimTypeLong(signed=True),
|
|
1082
|
+
SimTypeLong(signed=True),
|
|
1083
|
+
SimTypeLong(signed=True),
|
|
1084
|
+
SimTypeLong(signed=True),
|
|
1085
|
+
SimTypeLong(signed=True),
|
|
1086
|
+
SimTypeLong(signed=True),
|
|
1087
|
+
SimTypeLong(signed=True),
|
|
1088
|
+
],
|
|
1089
|
+
SimTypeLong(signed=True),
|
|
1090
|
+
),
|
|
442
1091
|
"GetHandleContext": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
443
|
-
"SetConsoleKeyShortcuts": SimTypeFunction(
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
"
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
"
|
|
1092
|
+
"SetConsoleKeyShortcuts": SimTypeFunction(
|
|
1093
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
1094
|
+
SimTypeLong(signed=True),
|
|
1095
|
+
),
|
|
1096
|
+
"BaseUpdateAppcompatCache": SimTypeFunction(
|
|
1097
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1098
|
+
),
|
|
1099
|
+
"BasepFreeActivationContextActivationBlock": SimTypeFunction(
|
|
1100
|
+
[SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1101
|
+
),
|
|
1102
|
+
"GetBinaryType": SimTypeFunction(
|
|
1103
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1104
|
+
),
|
|
1105
|
+
"Basep8BitStringToDynamicUnicodeString": SimTypeFunction(
|
|
1106
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1107
|
+
),
|
|
1108
|
+
"RegQueryInfoKeyA": SimTypeFunction(
|
|
1109
|
+
[
|
|
1110
|
+
SimTypeLong(signed=True),
|
|
1111
|
+
SimTypeLong(signed=True),
|
|
1112
|
+
SimTypeLong(signed=True),
|
|
1113
|
+
SimTypeLong(signed=True),
|
|
1114
|
+
SimTypeLong(signed=True),
|
|
1115
|
+
SimTypeLong(signed=True),
|
|
1116
|
+
SimTypeLong(signed=True),
|
|
1117
|
+
SimTypeLong(signed=True),
|
|
1118
|
+
SimTypeLong(signed=True),
|
|
1119
|
+
SimTypeLong(signed=True),
|
|
1120
|
+
SimTypeLong(signed=True),
|
|
1121
|
+
SimTypeLong(signed=True),
|
|
1122
|
+
],
|
|
1123
|
+
SimTypeLong(signed=True),
|
|
1124
|
+
),
|
|
1125
|
+
"BasepFreeAppCompatData": SimTypeFunction(
|
|
1126
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1127
|
+
),
|
|
1128
|
+
"RegEnumKeyExA": SimTypeFunction(
|
|
1129
|
+
[
|
|
1130
|
+
SimTypeLong(signed=True),
|
|
1131
|
+
SimTypeLong(signed=True),
|
|
1132
|
+
SimTypeLong(signed=True),
|
|
1133
|
+
SimTypeLong(signed=True),
|
|
1134
|
+
SimTypeLong(signed=True),
|
|
1135
|
+
SimTypeLong(signed=True),
|
|
1136
|
+
SimTypeLong(signed=True),
|
|
1137
|
+
SimTypeLong(signed=True),
|
|
1138
|
+
],
|
|
1139
|
+
SimTypeLong(signed=True),
|
|
1140
|
+
),
|
|
451
1141
|
"CheckElevationEnabled": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
452
|
-
"GetCalendarDateFormatEx": SimTypeFunction(
|
|
453
|
-
|
|
454
|
-
|
|
1142
|
+
"GetCalendarDateFormatEx": SimTypeFunction(
|
|
1143
|
+
[
|
|
1144
|
+
SimTypeLong(signed=True),
|
|
1145
|
+
SimTypeLong(signed=True),
|
|
1146
|
+
SimTypeLong(signed=True),
|
|
1147
|
+
SimTypeLong(signed=True),
|
|
1148
|
+
SimTypeLong(signed=True),
|
|
1149
|
+
SimTypeLong(signed=True),
|
|
1150
|
+
],
|
|
1151
|
+
SimTypeLong(signed=True),
|
|
1152
|
+
),
|
|
1153
|
+
"RegSetValueExA": SimTypeFunction(
|
|
1154
|
+
[
|
|
1155
|
+
SimTypeLong(signed=True),
|
|
1156
|
+
SimTypeLong(signed=True),
|
|
1157
|
+
SimTypeLong(signed=True),
|
|
1158
|
+
SimTypeLong(signed=True),
|
|
1159
|
+
SimTypeLong(signed=True),
|
|
1160
|
+
SimTypeLong(signed=True),
|
|
1161
|
+
],
|
|
1162
|
+
SimTypeLong(signed=True),
|
|
1163
|
+
),
|
|
1164
|
+
"RegEnumValueA": SimTypeFunction(
|
|
1165
|
+
[
|
|
1166
|
+
SimTypeLong(signed=True),
|
|
1167
|
+
SimTypeLong(signed=True),
|
|
1168
|
+
SimTypeLong(signed=True),
|
|
1169
|
+
SimTypeLong(signed=True),
|
|
1170
|
+
SimTypeLong(signed=True),
|
|
1171
|
+
SimTypeLong(signed=True),
|
|
1172
|
+
SimTypeLong(signed=True),
|
|
1173
|
+
SimTypeLong(signed=True),
|
|
1174
|
+
],
|
|
1175
|
+
SimTypeLong(signed=True),
|
|
1176
|
+
),
|
|
455
1177
|
"GetConsoleKeyboardLayoutNameW": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
456
1178
|
"SetComPlusPackageInstallStatus": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
457
|
-
"GetVDMCurrentDirectories": SimTypeFunction(
|
|
1179
|
+
"GetVDMCurrentDirectories": SimTypeFunction(
|
|
1180
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1181
|
+
),
|
|
458
1182
|
"CloseConsoleHandle": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
459
|
-
"EnumerateLocalComputerNamesA": SimTypeFunction(
|
|
1183
|
+
"EnumerateLocalComputerNamesA": SimTypeFunction(
|
|
1184
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
1185
|
+
SimTypeLong(signed=True),
|
|
1186
|
+
),
|
|
460
1187
|
"UTUnRegister": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
461
|
-
"GetCalendarDateFormat": SimTypeFunction(
|
|
1188
|
+
"GetCalendarDateFormat": SimTypeFunction(
|
|
1189
|
+
[
|
|
1190
|
+
SimTypeLong(signed=True),
|
|
1191
|
+
SimTypeLong(signed=True),
|
|
1192
|
+
SimTypeLong(signed=True),
|
|
1193
|
+
SimTypeLong(signed=True),
|
|
1194
|
+
SimTypeLong(signed=True),
|
|
1195
|
+
SimTypeLong(signed=True),
|
|
1196
|
+
],
|
|
1197
|
+
SimTypeLong(signed=True),
|
|
1198
|
+
),
|
|
462
1199
|
"SetProcessUserModeExceptionPolicy": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
463
|
-
"CheckElevation": SimTypeFunction(
|
|
1200
|
+
"CheckElevation": SimTypeFunction(
|
|
1201
|
+
[
|
|
1202
|
+
SimTypeLong(signed=True),
|
|
1203
|
+
SimTypeLong(signed=True),
|
|
1204
|
+
SimTypeLong(signed=True),
|
|
1205
|
+
SimTypeLong(signed=True),
|
|
1206
|
+
SimTypeLong(signed=True),
|
|
1207
|
+
],
|
|
1208
|
+
SimTypeLong(signed=True),
|
|
1209
|
+
),
|
|
464
1210
|
"RegisterWaitForInputIdle": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
465
|
-
"ConvertSystemTimeToCalDateTime": SimTypeFunction(
|
|
1211
|
+
"ConvertSystemTimeToCalDateTime": SimTypeFunction(
|
|
1212
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1213
|
+
),
|
|
466
1214
|
"IsTimeZoneRedirectionEnabled": SimTypeFunction([], SimTypeLong(signed=True)),
|
|
467
1215
|
}
|
|
468
1216
|
|
|
469
1217
|
missing_declarations[("win32", "advapi32", "dll")] = {
|
|
470
|
-
"GetInformationCodeAuthzLevelW": SimTypeFunction(
|
|
1218
|
+
"GetInformationCodeAuthzLevelW": SimTypeFunction(
|
|
1219
|
+
[
|
|
1220
|
+
SimTypeLong(signed=True),
|
|
1221
|
+
SimTypeLong(signed=True),
|
|
1222
|
+
SimTypeLong(signed=True),
|
|
1223
|
+
SimTypeLong(signed=True),
|
|
1224
|
+
SimTypeLong(signed=True),
|
|
1225
|
+
],
|
|
1226
|
+
SimTypeLong(signed=True),
|
|
1227
|
+
),
|
|
471
1228
|
"WmiFreeBuffer": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
472
|
-
"GetNamedSecurityInfoExW": SimTypeFunction(
|
|
473
|
-
|
|
474
|
-
|
|
1229
|
+
"GetNamedSecurityInfoExW": SimTypeFunction(
|
|
1230
|
+
[
|
|
1231
|
+
SimTypeLong(signed=True),
|
|
1232
|
+
SimTypeLong(signed=True),
|
|
1233
|
+
SimTypeLong(signed=True),
|
|
1234
|
+
SimTypeLong(signed=True),
|
|
1235
|
+
SimTypeLong(signed=True),
|
|
1236
|
+
SimTypeLong(signed=True),
|
|
1237
|
+
SimTypeLong(signed=True),
|
|
1238
|
+
SimTypeLong(signed=True),
|
|
1239
|
+
SimTypeLong(signed=True),
|
|
1240
|
+
],
|
|
1241
|
+
SimTypeLong(signed=True),
|
|
1242
|
+
),
|
|
1243
|
+
"WmiQuerySingleInstanceMultipleA": SimTypeFunction(
|
|
1244
|
+
[
|
|
1245
|
+
SimTypeLong(signed=True),
|
|
1246
|
+
SimTypeLong(signed=True),
|
|
1247
|
+
SimTypeLong(signed=True),
|
|
1248
|
+
SimTypeLong(signed=True),
|
|
1249
|
+
SimTypeLong(signed=True),
|
|
1250
|
+
],
|
|
1251
|
+
SimTypeLong(signed=True),
|
|
1252
|
+
),
|
|
1253
|
+
"ConvertSecurityDescriptorToAccessA": SimTypeFunction(
|
|
1254
|
+
[
|
|
1255
|
+
SimTypeLong(signed=True),
|
|
1256
|
+
SimTypeLong(signed=True),
|
|
1257
|
+
SimTypeLong(signed=True),
|
|
1258
|
+
SimTypeLong(signed=True),
|
|
1259
|
+
SimTypeLong(signed=True),
|
|
1260
|
+
SimTypeLong(signed=True),
|
|
1261
|
+
SimTypeLong(signed=True),
|
|
1262
|
+
],
|
|
1263
|
+
SimTypeLong(signed=True),
|
|
1264
|
+
),
|
|
475
1265
|
"CredProfileLoaded": SimTypeFunction([], SimTypeLong(signed=True)),
|
|
476
|
-
"WmiExecuteMethodW": SimTypeFunction(
|
|
477
|
-
|
|
1266
|
+
"WmiExecuteMethodW": SimTypeFunction(
|
|
1267
|
+
[
|
|
1268
|
+
SimTypeLong(signed=True),
|
|
1269
|
+
SimTypeLong(signed=True),
|
|
1270
|
+
SimTypeLong(signed=True),
|
|
1271
|
+
SimTypeLong(signed=True),
|
|
1272
|
+
SimTypeLong(signed=True),
|
|
1273
|
+
SimTypeLong(signed=True),
|
|
1274
|
+
SimTypeLong(signed=True),
|
|
1275
|
+
],
|
|
1276
|
+
SimTypeLong(signed=True),
|
|
1277
|
+
),
|
|
1278
|
+
"ProcessIdleTasksW": SimTypeFunction(
|
|
1279
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
1280
|
+
SimTypeLong(signed=True),
|
|
1281
|
+
),
|
|
478
1282
|
"MD4Final": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
479
|
-
"SystemFunction013": SimTypeFunction(
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
"
|
|
483
|
-
|
|
1283
|
+
"SystemFunction013": SimTypeFunction(
|
|
1284
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1285
|
+
),
|
|
1286
|
+
"CredpConvertOneCredentialSize": SimTypeFunction(
|
|
1287
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1288
|
+
),
|
|
1289
|
+
"EncryptedFileKeyInfo": SimTypeFunction(
|
|
1290
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1291
|
+
),
|
|
1292
|
+
"ElfBackupEventLogFileW": SimTypeFunction(
|
|
1293
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1294
|
+
),
|
|
1295
|
+
"MD4Update": SimTypeFunction(
|
|
1296
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1297
|
+
),
|
|
484
1298
|
"CloseCodeAuthzLevel": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
485
|
-
"EnumServiceGroupW": SimTypeFunction(
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
1299
|
+
"EnumServiceGroupW": SimTypeFunction(
|
|
1300
|
+
[
|
|
1301
|
+
SimTypeLong(signed=True),
|
|
1302
|
+
SimTypeLong(signed=True),
|
|
1303
|
+
SimTypeLong(signed=True),
|
|
1304
|
+
SimTypeLong(signed=True),
|
|
1305
|
+
SimTypeLong(signed=True),
|
|
1306
|
+
SimTypeLong(signed=True),
|
|
1307
|
+
SimTypeLong(signed=True),
|
|
1308
|
+
SimTypeLong(signed=True),
|
|
1309
|
+
SimTypeLong(signed=True),
|
|
1310
|
+
],
|
|
1311
|
+
SimTypeLong(signed=True),
|
|
1312
|
+
),
|
|
1313
|
+
"GetSecurityInfoExA": SimTypeFunction(
|
|
1314
|
+
[
|
|
1315
|
+
SimTypeLong(signed=True),
|
|
1316
|
+
SimTypeLong(signed=True),
|
|
1317
|
+
SimTypeLong(signed=True),
|
|
1318
|
+
SimTypeLong(signed=True),
|
|
1319
|
+
SimTypeLong(signed=True),
|
|
1320
|
+
SimTypeLong(signed=True),
|
|
1321
|
+
SimTypeLong(signed=True),
|
|
1322
|
+
SimTypeLong(signed=True),
|
|
1323
|
+
SimTypeLong(signed=True),
|
|
1324
|
+
],
|
|
1325
|
+
SimTypeLong(signed=True),
|
|
1326
|
+
),
|
|
1327
|
+
"ElfReportEventA": SimTypeFunction(
|
|
1328
|
+
[
|
|
1329
|
+
SimTypeLong(signed=True),
|
|
1330
|
+
SimTypeLong(signed=True),
|
|
1331
|
+
SimTypeLong(signed=True),
|
|
1332
|
+
SimTypeLong(signed=True),
|
|
1333
|
+
SimTypeLong(signed=True),
|
|
1334
|
+
SimTypeLong(signed=True),
|
|
1335
|
+
SimTypeLong(signed=True),
|
|
1336
|
+
SimTypeLong(signed=True),
|
|
1337
|
+
SimTypeLong(signed=True),
|
|
1338
|
+
SimTypeLong(signed=True),
|
|
1339
|
+
SimTypeLong(signed=True),
|
|
1340
|
+
SimTypeLong(signed=True),
|
|
1341
|
+
],
|
|
1342
|
+
SimTypeLong(signed=True),
|
|
1343
|
+
),
|
|
1344
|
+
"SystemFunction027": SimTypeFunction(
|
|
1345
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1346
|
+
),
|
|
1347
|
+
"LsaEnumeratePrivilegesOfAccount": SimTypeFunction(
|
|
1348
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1349
|
+
),
|
|
1350
|
+
"SystemFunction024": SimTypeFunction(
|
|
1351
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1352
|
+
),
|
|
1353
|
+
"ConvertAccessToSecurityDescriptorW": SimTypeFunction(
|
|
1354
|
+
[
|
|
1355
|
+
SimTypeLong(signed=True),
|
|
1356
|
+
SimTypeLong(signed=True),
|
|
1357
|
+
SimTypeLong(signed=True),
|
|
1358
|
+
SimTypeLong(signed=True),
|
|
1359
|
+
SimTypeLong(signed=True),
|
|
1360
|
+
],
|
|
1361
|
+
SimTypeLong(signed=True),
|
|
1362
|
+
),
|
|
1363
|
+
"WmiDevInstToInstanceNameA": SimTypeFunction(
|
|
1364
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
1365
|
+
SimTypeLong(signed=True),
|
|
1366
|
+
),
|
|
1367
|
+
"WmiEnumerateGuids": SimTypeFunction(
|
|
1368
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1369
|
+
),
|
|
1370
|
+
"SaferiRegisterExtensionDll": SimTypeFunction(
|
|
1371
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1372
|
+
),
|
|
1373
|
+
"LsaCreateSecret": SimTypeFunction(
|
|
1374
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
1375
|
+
SimTypeLong(signed=True),
|
|
1376
|
+
),
|
|
1377
|
+
"ElfOpenEventLogW": SimTypeFunction(
|
|
1378
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1379
|
+
),
|
|
1380
|
+
"ElfOpenEventLogA": SimTypeFunction(
|
|
1381
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1382
|
+
),
|
|
1383
|
+
"LsaGetUserName": SimTypeFunction(
|
|
1384
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1385
|
+
),
|
|
499
1386
|
"A_SHAInit": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
500
|
-
"LsaOpenPolicySce": SimTypeFunction(
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
"
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
"
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
1387
|
+
"LsaOpenPolicySce": SimTypeFunction(
|
|
1388
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
1389
|
+
SimTypeLong(signed=True),
|
|
1390
|
+
),
|
|
1391
|
+
"ElfChangeNotify": SimTypeFunction(
|
|
1392
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1393
|
+
),
|
|
1394
|
+
"I_ScSetServiceBitsA": SimTypeFunction(
|
|
1395
|
+
[
|
|
1396
|
+
SimTypeLong(signed=True),
|
|
1397
|
+
SimTypeLong(signed=True),
|
|
1398
|
+
SimTypeLong(signed=True),
|
|
1399
|
+
SimTypeLong(signed=True),
|
|
1400
|
+
SimTypeLong(signed=True),
|
|
1401
|
+
],
|
|
1402
|
+
SimTypeLong(signed=True),
|
|
1403
|
+
),
|
|
1404
|
+
"WmiOpenBlock": SimTypeFunction(
|
|
1405
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1406
|
+
),
|
|
1407
|
+
"GetAccessPermissionsForObjectA": SimTypeFunction(
|
|
1408
|
+
[
|
|
1409
|
+
SimTypeLong(signed=True),
|
|
1410
|
+
SimTypeLong(signed=True),
|
|
1411
|
+
SimTypeLong(signed=True),
|
|
1412
|
+
SimTypeLong(signed=True),
|
|
1413
|
+
SimTypeLong(signed=True),
|
|
1414
|
+
SimTypeLong(signed=True),
|
|
1415
|
+
SimTypeLong(signed=True),
|
|
1416
|
+
SimTypeLong(signed=True),
|
|
1417
|
+
SimTypeLong(signed=True),
|
|
1418
|
+
],
|
|
1419
|
+
SimTypeLong(signed=True),
|
|
1420
|
+
),
|
|
1421
|
+
"LsaICLookupNames": SimTypeFunction(
|
|
1422
|
+
[
|
|
1423
|
+
SimTypeLong(signed=True),
|
|
1424
|
+
SimTypeLong(signed=True),
|
|
1425
|
+
SimTypeLong(signed=True),
|
|
1426
|
+
SimTypeLong(signed=True),
|
|
1427
|
+
SimTypeLong(signed=True),
|
|
1428
|
+
SimTypeLong(signed=True),
|
|
1429
|
+
SimTypeLong(signed=True),
|
|
1430
|
+
SimTypeLong(signed=True),
|
|
1431
|
+
SimTypeLong(signed=True),
|
|
1432
|
+
SimTypeLong(signed=True),
|
|
1433
|
+
],
|
|
1434
|
+
SimTypeLong(signed=True),
|
|
1435
|
+
),
|
|
1436
|
+
"UnregisterIdleTask": SimTypeFunction(
|
|
1437
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1438
|
+
),
|
|
1439
|
+
"SystemFunction025": SimTypeFunction(
|
|
1440
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1441
|
+
),
|
|
1442
|
+
"ElfRegisterEventSourceA": SimTypeFunction(
|
|
1443
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1444
|
+
),
|
|
1445
|
+
"SystemFunction010": SimTypeFunction(
|
|
1446
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1447
|
+
),
|
|
1448
|
+
"WmiMofEnumerateResourcesA": SimTypeFunction(
|
|
1449
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1450
|
+
),
|
|
1451
|
+
"ConvertSDToStringSDRootDomainW": SimTypeFunction(
|
|
1452
|
+
[
|
|
1453
|
+
SimTypeLong(signed=True),
|
|
1454
|
+
SimTypeLong(signed=True),
|
|
1455
|
+
SimTypeLong(signed=True),
|
|
1456
|
+
SimTypeLong(signed=True),
|
|
1457
|
+
SimTypeLong(signed=True),
|
|
1458
|
+
SimTypeLong(signed=True),
|
|
1459
|
+
],
|
|
1460
|
+
SimTypeLong(signed=True),
|
|
1461
|
+
),
|
|
512
1462
|
"A_SHAFinal": SimTypeFunction([SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
513
|
-
"LsaSetSecurityObject": SimTypeFunction(
|
|
514
|
-
|
|
515
|
-
|
|
1463
|
+
"LsaSetSecurityObject": SimTypeFunction(
|
|
1464
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1465
|
+
),
|
|
1466
|
+
"LsaSetSystemAccessAccount": SimTypeFunction(
|
|
1467
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1468
|
+
),
|
|
1469
|
+
"WmiFileHandleToInstanceNameA": SimTypeFunction(
|
|
1470
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
1471
|
+
SimTypeLong(signed=True),
|
|
1472
|
+
),
|
|
516
1473
|
"FreeEncryptedFileKeyInfo": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
517
|
-
"LsaGetRemoteUserName": SimTypeFunction(
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
"
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
"
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
"
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
"
|
|
538
|
-
|
|
1474
|
+
"LsaGetRemoteUserName": SimTypeFunction(
|
|
1475
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1476
|
+
),
|
|
1477
|
+
"EventWriteStartScenario": SimTypeFunction(
|
|
1478
|
+
[
|
|
1479
|
+
SimTypeLong(signed=True),
|
|
1480
|
+
SimTypeLong(signed=True),
|
|
1481
|
+
SimTypeLong(signed=True),
|
|
1482
|
+
SimTypeLong(signed=True),
|
|
1483
|
+
SimTypeLong(signed=True),
|
|
1484
|
+
],
|
|
1485
|
+
SimTypeLong(signed=True),
|
|
1486
|
+
),
|
|
1487
|
+
"SystemFunction014": SimTypeFunction(
|
|
1488
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1489
|
+
),
|
|
1490
|
+
"AddUsersToEncryptedFileEx": SimTypeFunction(
|
|
1491
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
1492
|
+
SimTypeLong(signed=True),
|
|
1493
|
+
),
|
|
1494
|
+
"ElfRegisterEventSourceW": SimTypeFunction(
|
|
1495
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1496
|
+
),
|
|
1497
|
+
"CredEncryptAndMarshalBinaryBlob": SimTypeFunction(
|
|
1498
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1499
|
+
),
|
|
1500
|
+
"SaferiPopulateDefaultsInRegistry": SimTypeFunction(
|
|
1501
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1502
|
+
),
|
|
1503
|
+
"SaferiSearchMatchingHashRules": SimTypeFunction(
|
|
1504
|
+
[
|
|
1505
|
+
SimTypeLong(signed=True),
|
|
1506
|
+
SimTypeLong(signed=True),
|
|
1507
|
+
SimTypeLong(signed=True),
|
|
1508
|
+
SimTypeLong(signed=True),
|
|
1509
|
+
SimTypeLong(signed=True),
|
|
1510
|
+
SimTypeLong(signed=True),
|
|
1511
|
+
],
|
|
1512
|
+
SimTypeLong(signed=True),
|
|
1513
|
+
),
|
|
1514
|
+
"LsaGetSystemAccessAccount": SimTypeFunction(
|
|
1515
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1516
|
+
),
|
|
1517
|
+
"ElfReadEventLogW": SimTypeFunction(
|
|
1518
|
+
[
|
|
1519
|
+
SimTypeLong(signed=True),
|
|
1520
|
+
SimTypeLong(signed=True),
|
|
1521
|
+
SimTypeLong(signed=True),
|
|
1522
|
+
SimTypeLong(signed=True),
|
|
1523
|
+
SimTypeLong(signed=True),
|
|
1524
|
+
SimTypeLong(signed=True),
|
|
1525
|
+
SimTypeLong(signed=True),
|
|
1526
|
+
],
|
|
1527
|
+
SimTypeLong(signed=True),
|
|
1528
|
+
),
|
|
1529
|
+
"WmiExecuteMethodA": SimTypeFunction(
|
|
1530
|
+
[
|
|
1531
|
+
SimTypeLong(signed=True),
|
|
1532
|
+
SimTypeLong(signed=True),
|
|
1533
|
+
SimTypeLong(signed=True),
|
|
1534
|
+
SimTypeLong(signed=True),
|
|
1535
|
+
SimTypeLong(signed=True),
|
|
1536
|
+
SimTypeLong(signed=True),
|
|
1537
|
+
SimTypeLong(signed=True),
|
|
1538
|
+
],
|
|
1539
|
+
SimTypeLong(signed=True),
|
|
1540
|
+
),
|
|
1541
|
+
"WmiSetSingleInstanceA": SimTypeFunction(
|
|
1542
|
+
[
|
|
1543
|
+
SimTypeLong(signed=True),
|
|
1544
|
+
SimTypeLong(signed=True),
|
|
1545
|
+
SimTypeLong(signed=True),
|
|
1546
|
+
SimTypeLong(signed=True),
|
|
1547
|
+
SimTypeLong(signed=True),
|
|
1548
|
+
],
|
|
1549
|
+
SimTypeLong(signed=True),
|
|
1550
|
+
),
|
|
1551
|
+
"LsaLookupPrivilegeValue": SimTypeFunction(
|
|
1552
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1553
|
+
),
|
|
1554
|
+
"WmiSetSingleItemW": SimTypeFunction(
|
|
1555
|
+
[
|
|
1556
|
+
SimTypeLong(signed=True),
|
|
1557
|
+
SimTypeLong(signed=True),
|
|
1558
|
+
SimTypeLong(signed=True),
|
|
1559
|
+
SimTypeLong(signed=True),
|
|
1560
|
+
SimTypeLong(signed=True),
|
|
1561
|
+
SimTypeLong(signed=True),
|
|
1562
|
+
],
|
|
1563
|
+
SimTypeLong(signed=True),
|
|
1564
|
+
),
|
|
1565
|
+
"WmiQueryAllDataA": SimTypeFunction(
|
|
1566
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1567
|
+
),
|
|
1568
|
+
"CredBackupCredentials": SimTypeFunction(
|
|
1569
|
+
[
|
|
1570
|
+
SimTypeLong(signed=True),
|
|
1571
|
+
SimTypeLong(signed=True),
|
|
1572
|
+
SimTypeLong(signed=True),
|
|
1573
|
+
SimTypeLong(signed=True),
|
|
1574
|
+
SimTypeLong(signed=True),
|
|
1575
|
+
],
|
|
1576
|
+
SimTypeLong(signed=True),
|
|
1577
|
+
),
|
|
1578
|
+
"ConvertStringSDToSDRootDomainW": SimTypeFunction(
|
|
1579
|
+
[
|
|
1580
|
+
SimTypeLong(signed=True),
|
|
1581
|
+
SimTypeLong(signed=True),
|
|
1582
|
+
SimTypeLong(signed=True),
|
|
1583
|
+
SimTypeLong(signed=True),
|
|
1584
|
+
SimTypeLong(signed=True),
|
|
1585
|
+
],
|
|
1586
|
+
SimTypeLong(signed=True),
|
|
1587
|
+
),
|
|
1588
|
+
"LsaCreateTrustedDomain": SimTypeFunction(
|
|
1589
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
1590
|
+
SimTypeLong(signed=True),
|
|
1591
|
+
),
|
|
1592
|
+
"GetAccessPermissionsForObjectW": SimTypeFunction(
|
|
1593
|
+
[
|
|
1594
|
+
SimTypeLong(signed=True),
|
|
1595
|
+
SimTypeLong(signed=True),
|
|
1596
|
+
SimTypeLong(signed=True),
|
|
1597
|
+
SimTypeLong(signed=True),
|
|
1598
|
+
SimTypeLong(signed=True),
|
|
1599
|
+
SimTypeLong(signed=True),
|
|
1600
|
+
SimTypeLong(signed=True),
|
|
1601
|
+
SimTypeLong(signed=True),
|
|
1602
|
+
SimTypeLong(signed=True),
|
|
1603
|
+
],
|
|
1604
|
+
SimTypeLong(signed=True),
|
|
1605
|
+
),
|
|
1606
|
+
"ElfReportEventW": SimTypeFunction(
|
|
1607
|
+
[
|
|
1608
|
+
SimTypeLong(signed=True),
|
|
1609
|
+
SimTypeLong(signed=True),
|
|
1610
|
+
SimTypeLong(signed=True),
|
|
1611
|
+
SimTypeLong(signed=True),
|
|
1612
|
+
SimTypeLong(signed=True),
|
|
1613
|
+
SimTypeLong(signed=True),
|
|
1614
|
+
SimTypeLong(signed=True),
|
|
1615
|
+
SimTypeLong(signed=True),
|
|
1616
|
+
SimTypeLong(signed=True),
|
|
1617
|
+
SimTypeLong(signed=True),
|
|
1618
|
+
SimTypeLong(signed=True),
|
|
1619
|
+
SimTypeLong(signed=True),
|
|
1620
|
+
],
|
|
1621
|
+
SimTypeLong(signed=True),
|
|
1622
|
+
),
|
|
1623
|
+
"SetSecurityInfoExW": SimTypeFunction(
|
|
1624
|
+
[
|
|
1625
|
+
SimTypeLong(signed=True),
|
|
1626
|
+
SimTypeLong(signed=True),
|
|
1627
|
+
SimTypeLong(signed=True),
|
|
1628
|
+
SimTypeLong(signed=True),
|
|
1629
|
+
SimTypeLong(signed=True),
|
|
1630
|
+
SimTypeLong(signed=True),
|
|
1631
|
+
SimTypeLong(signed=True),
|
|
1632
|
+
SimTypeLong(signed=True),
|
|
1633
|
+
SimTypeLong(signed=True),
|
|
1634
|
+
],
|
|
1635
|
+
SimTypeLong(signed=True),
|
|
1636
|
+
),
|
|
1637
|
+
"SystemFunction015": SimTypeFunction(
|
|
1638
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1639
|
+
),
|
|
539
1640
|
"ElfCloseEventLog": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
540
|
-
"UsePinForEncryptedFilesW": SimTypeFunction(
|
|
541
|
-
|
|
1641
|
+
"UsePinForEncryptedFilesW": SimTypeFunction(
|
|
1642
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1643
|
+
),
|
|
1644
|
+
"LsaManageSidNameMapping": SimTypeFunction(
|
|
1645
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1646
|
+
),
|
|
542
1647
|
"CredProfileUnloaded": SimTypeFunction([], SimTypeLong(signed=True)),
|
|
543
|
-
"SystemFunction007": SimTypeFunction(
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
"
|
|
547
|
-
|
|
1648
|
+
"SystemFunction007": SimTypeFunction(
|
|
1649
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1650
|
+
),
|
|
1651
|
+
"WmiSetSingleItemA": SimTypeFunction(
|
|
1652
|
+
[
|
|
1653
|
+
SimTypeLong(signed=True),
|
|
1654
|
+
SimTypeLong(signed=True),
|
|
1655
|
+
SimTypeLong(signed=True),
|
|
1656
|
+
SimTypeLong(signed=True),
|
|
1657
|
+
SimTypeLong(signed=True),
|
|
1658
|
+
SimTypeLong(signed=True),
|
|
1659
|
+
],
|
|
1660
|
+
SimTypeLong(signed=True),
|
|
1661
|
+
),
|
|
1662
|
+
"GetNamedSecurityInfoExA": SimTypeFunction(
|
|
1663
|
+
[
|
|
1664
|
+
SimTypeLong(signed=True),
|
|
1665
|
+
SimTypeLong(signed=True),
|
|
1666
|
+
SimTypeLong(signed=True),
|
|
1667
|
+
SimTypeLong(signed=True),
|
|
1668
|
+
SimTypeLong(signed=True),
|
|
1669
|
+
SimTypeLong(signed=True),
|
|
1670
|
+
SimTypeLong(signed=True),
|
|
1671
|
+
SimTypeLong(signed=True),
|
|
1672
|
+
SimTypeLong(signed=True),
|
|
1673
|
+
],
|
|
1674
|
+
SimTypeLong(signed=True),
|
|
1675
|
+
),
|
|
1676
|
+
"WmiFileHandleToInstanceNameW": SimTypeFunction(
|
|
1677
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
1678
|
+
SimTypeLong(signed=True),
|
|
1679
|
+
),
|
|
1680
|
+
"SaferiChangeRegistryScope": SimTypeFunction(
|
|
1681
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1682
|
+
),
|
|
548
1683
|
"MD5Init": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
549
|
-
"I_ScPnPGetServiceName": SimTypeFunction(
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
"
|
|
1684
|
+
"I_ScPnPGetServiceName": SimTypeFunction(
|
|
1685
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1686
|
+
),
|
|
1687
|
+
"CredpConvertTargetInfo": SimTypeFunction(
|
|
1688
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
1689
|
+
SimTypeLong(signed=True),
|
|
1690
|
+
),
|
|
1691
|
+
"GetSecurityInfoExW": SimTypeFunction(
|
|
1692
|
+
[
|
|
1693
|
+
SimTypeLong(signed=True),
|
|
1694
|
+
SimTypeLong(signed=True),
|
|
1695
|
+
SimTypeLong(signed=True),
|
|
1696
|
+
SimTypeLong(signed=True),
|
|
1697
|
+
SimTypeLong(signed=True),
|
|
1698
|
+
SimTypeLong(signed=True),
|
|
1699
|
+
SimTypeLong(signed=True),
|
|
1700
|
+
SimTypeLong(signed=True),
|
|
1701
|
+
SimTypeLong(signed=True),
|
|
1702
|
+
],
|
|
1703
|
+
SimTypeLong(signed=True),
|
|
1704
|
+
),
|
|
1705
|
+
"IsValidRelativeSecurityDescriptor": SimTypeFunction(
|
|
1706
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1707
|
+
),
|
|
553
1708
|
"CredpDecodeCredential": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
554
|
-
"I_ScSetServiceBitsW": SimTypeFunction(
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
1709
|
+
"I_ScSetServiceBitsW": SimTypeFunction(
|
|
1710
|
+
[
|
|
1711
|
+
SimTypeLong(signed=True),
|
|
1712
|
+
SimTypeLong(signed=True),
|
|
1713
|
+
SimTypeLong(signed=True),
|
|
1714
|
+
SimTypeLong(signed=True),
|
|
1715
|
+
SimTypeLong(signed=True),
|
|
1716
|
+
],
|
|
1717
|
+
SimTypeLong(signed=True),
|
|
1718
|
+
),
|
|
1719
|
+
"RegisterIdleTask": SimTypeFunction(
|
|
1720
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
1721
|
+
SimTypeLong(signed=True),
|
|
1722
|
+
),
|
|
1723
|
+
"SystemFunction017": SimTypeFunction(
|
|
1724
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1725
|
+
),
|
|
1726
|
+
"SystemFunction033": SimTypeFunction(
|
|
1727
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1728
|
+
),
|
|
558
1729
|
"CancelOverlappedAccess": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
559
|
-
"TrusteeAccessToObjectW": SimTypeFunction(
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
1730
|
+
"TrusteeAccessToObjectW": SimTypeFunction(
|
|
1731
|
+
[
|
|
1732
|
+
SimTypeLong(signed=True),
|
|
1733
|
+
SimTypeLong(signed=True),
|
|
1734
|
+
SimTypeLong(signed=True),
|
|
1735
|
+
SimTypeLong(signed=True),
|
|
1736
|
+
SimTypeLong(signed=True),
|
|
1737
|
+
SimTypeLong(signed=True),
|
|
1738
|
+
],
|
|
1739
|
+
SimTypeLong(signed=True),
|
|
1740
|
+
),
|
|
1741
|
+
"LsaOpenSecret": SimTypeFunction(
|
|
1742
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
1743
|
+
SimTypeLong(signed=True),
|
|
1744
|
+
),
|
|
1745
|
+
"EventWriteEndScenario": SimTypeFunction(
|
|
1746
|
+
[
|
|
1747
|
+
SimTypeLong(signed=True),
|
|
1748
|
+
SimTypeLong(signed=True),
|
|
1749
|
+
SimTypeLong(signed=True),
|
|
1750
|
+
SimTypeLong(signed=True),
|
|
1751
|
+
SimTypeLong(signed=True),
|
|
1752
|
+
],
|
|
1753
|
+
SimTypeLong(signed=True),
|
|
1754
|
+
),
|
|
1755
|
+
"ComputeAccessTokenFromCodeAuthzLevel": SimTypeFunction(
|
|
1756
|
+
[
|
|
1757
|
+
SimTypeLong(signed=True),
|
|
1758
|
+
SimTypeLong(signed=True),
|
|
1759
|
+
SimTypeLong(signed=True),
|
|
1760
|
+
SimTypeLong(signed=True),
|
|
1761
|
+
SimTypeLong(signed=True),
|
|
1762
|
+
],
|
|
1763
|
+
SimTypeLong(signed=True),
|
|
1764
|
+
),
|
|
1765
|
+
"LsaGetQuotasForAccount": SimTypeFunction(
|
|
1766
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1767
|
+
),
|
|
564
1768
|
"I_ScIsSecurityProcess": SimTypeFunction([], SimTypeLong(signed=True)),
|
|
565
|
-
"SetNamedSecurityInfoExA": SimTypeFunction(
|
|
566
|
-
|
|
567
|
-
|
|
1769
|
+
"SetNamedSecurityInfoExA": SimTypeFunction(
|
|
1770
|
+
[
|
|
1771
|
+
SimTypeLong(signed=True),
|
|
1772
|
+
SimTypeLong(signed=True),
|
|
1773
|
+
SimTypeLong(signed=True),
|
|
1774
|
+
SimTypeLong(signed=True),
|
|
1775
|
+
SimTypeLong(signed=True),
|
|
1776
|
+
SimTypeLong(signed=True),
|
|
1777
|
+
SimTypeLong(signed=True),
|
|
1778
|
+
SimTypeLong(signed=True),
|
|
1779
|
+
SimTypeLong(signed=True),
|
|
1780
|
+
],
|
|
1781
|
+
SimTypeLong(signed=True),
|
|
1782
|
+
),
|
|
1783
|
+
"SystemFunction019": SimTypeFunction(
|
|
1784
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1785
|
+
),
|
|
1786
|
+
"WmiQueryAllDataMultipleW": SimTypeFunction(
|
|
1787
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
1788
|
+
SimTypeLong(signed=True),
|
|
1789
|
+
),
|
|
568
1790
|
"ElfDeregisterEventSource": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
569
|
-
"ElfClearEventLogFileA": SimTypeFunction(
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
"
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
"
|
|
1791
|
+
"ElfClearEventLogFileA": SimTypeFunction(
|
|
1792
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1793
|
+
),
|
|
1794
|
+
"ConvertAccessToSecurityDescriptorA": SimTypeFunction(
|
|
1795
|
+
[
|
|
1796
|
+
SimTypeLong(signed=True),
|
|
1797
|
+
SimTypeLong(signed=True),
|
|
1798
|
+
SimTypeLong(signed=True),
|
|
1799
|
+
SimTypeLong(signed=True),
|
|
1800
|
+
SimTypeLong(signed=True),
|
|
1801
|
+
],
|
|
1802
|
+
SimTypeLong(signed=True),
|
|
1803
|
+
),
|
|
1804
|
+
"SystemFunction016": SimTypeFunction(
|
|
1805
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1806
|
+
),
|
|
1807
|
+
"WmiMofEnumerateResourcesW": SimTypeFunction(
|
|
1808
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1809
|
+
),
|
|
1810
|
+
"WmiNotificationRegistrationA": SimTypeFunction(
|
|
1811
|
+
[
|
|
1812
|
+
SimTypeLong(signed=True),
|
|
1813
|
+
SimTypeLong(signed=True),
|
|
1814
|
+
SimTypeLong(signed=True),
|
|
1815
|
+
SimTypeLong(signed=True),
|
|
1816
|
+
SimTypeLong(signed=True),
|
|
1817
|
+
],
|
|
1818
|
+
SimTypeLong(signed=True),
|
|
1819
|
+
),
|
|
1820
|
+
"LsaAddPrivilegesToAccount": SimTypeFunction(
|
|
1821
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1822
|
+
),
|
|
1823
|
+
"SystemFunction003": SimTypeFunction(
|
|
1824
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1825
|
+
),
|
|
1826
|
+
"SystemFunction020": SimTypeFunction(
|
|
1827
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1828
|
+
),
|
|
1829
|
+
"SystemFunction006": SimTypeFunction(
|
|
1830
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1831
|
+
),
|
|
1832
|
+
"ConvertStringSDToSDRootDomainA": SimTypeFunction(
|
|
1833
|
+
[
|
|
1834
|
+
SimTypeLong(signed=True),
|
|
1835
|
+
SimTypeLong(signed=True),
|
|
1836
|
+
SimTypeLong(signed=True),
|
|
1837
|
+
SimTypeLong(signed=True),
|
|
1838
|
+
SimTypeLong(signed=True),
|
|
1839
|
+
],
|
|
1840
|
+
SimTypeLong(signed=True),
|
|
1841
|
+
),
|
|
1842
|
+
"ConvertStringSDToSDDomainW": SimTypeFunction(
|
|
1843
|
+
[
|
|
1844
|
+
SimTypeLong(signed=True),
|
|
1845
|
+
SimTypeLong(signed=True),
|
|
1846
|
+
SimTypeLong(signed=True),
|
|
1847
|
+
SimTypeLong(signed=True),
|
|
1848
|
+
SimTypeLong(signed=True),
|
|
1849
|
+
SimTypeLong(signed=True),
|
|
1850
|
+
],
|
|
1851
|
+
SimTypeLong(signed=True),
|
|
1852
|
+
),
|
|
1853
|
+
"ConvertSecurityDescriptorToAccessNamedA": SimTypeFunction(
|
|
1854
|
+
[
|
|
1855
|
+
SimTypeLong(signed=True),
|
|
1856
|
+
SimTypeLong(signed=True),
|
|
1857
|
+
SimTypeLong(signed=True),
|
|
1858
|
+
SimTypeLong(signed=True),
|
|
1859
|
+
SimTypeLong(signed=True),
|
|
1860
|
+
SimTypeLong(signed=True),
|
|
1861
|
+
SimTypeLong(signed=True),
|
|
1862
|
+
],
|
|
1863
|
+
SimTypeLong(signed=True),
|
|
1864
|
+
),
|
|
1865
|
+
"LsaRemovePrivilegesFromAccount": SimTypeFunction(
|
|
1866
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1867
|
+
),
|
|
1868
|
+
"WmiQuerySingleInstanceW": SimTypeFunction(
|
|
1869
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
1870
|
+
SimTypeLong(signed=True),
|
|
1871
|
+
),
|
|
583
1872
|
"ProcessIdleTasks": SimTypeFunction([], SimTypeLong(signed=True)),
|
|
584
|
-
"ConvertStringSDToSDDomainA": SimTypeFunction(
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
1873
|
+
"ConvertStringSDToSDDomainA": SimTypeFunction(
|
|
1874
|
+
[
|
|
1875
|
+
SimTypeLong(signed=True),
|
|
1876
|
+
SimTypeLong(signed=True),
|
|
1877
|
+
SimTypeLong(signed=True),
|
|
1878
|
+
SimTypeLong(signed=True),
|
|
1879
|
+
SimTypeLong(signed=True),
|
|
1880
|
+
SimTypeLong(signed=True),
|
|
1881
|
+
],
|
|
1882
|
+
SimTypeLong(signed=True),
|
|
1883
|
+
),
|
|
1884
|
+
"SetEntriesInAuditListA": SimTypeFunction(
|
|
1885
|
+
[
|
|
1886
|
+
SimTypeLong(signed=True),
|
|
1887
|
+
SimTypeLong(signed=True),
|
|
1888
|
+
SimTypeLong(signed=True),
|
|
1889
|
+
SimTypeLong(signed=True),
|
|
1890
|
+
SimTypeLong(signed=True),
|
|
1891
|
+
SimTypeLong(signed=True),
|
|
1892
|
+
],
|
|
1893
|
+
SimTypeLong(signed=True),
|
|
1894
|
+
),
|
|
1895
|
+
"NotifyServiceStatusChange": SimTypeFunction(
|
|
1896
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1897
|
+
),
|
|
1898
|
+
"LsaQuerySecurityObject": SimTypeFunction(
|
|
1899
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1900
|
+
),
|
|
1901
|
+
"ElfBackupEventLogFileA": SimTypeFunction(
|
|
1902
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1903
|
+
),
|
|
1904
|
+
"SystemFunction018": SimTypeFunction(
|
|
1905
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1906
|
+
),
|
|
1907
|
+
"SaferiIsDllAllowed": SimTypeFunction(
|
|
1908
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1909
|
+
),
|
|
591
1910
|
"WmiCloseBlock": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
592
1911
|
"SystemFunction035": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
593
|
-
"WmiSetSingleInstanceW": SimTypeFunction(
|
|
1912
|
+
"WmiSetSingleInstanceW": SimTypeFunction(
|
|
1913
|
+
[
|
|
1914
|
+
SimTypeLong(signed=True),
|
|
1915
|
+
SimTypeLong(signed=True),
|
|
1916
|
+
SimTypeLong(signed=True),
|
|
1917
|
+
SimTypeLong(signed=True),
|
|
1918
|
+
SimTypeLong(signed=True),
|
|
1919
|
+
],
|
|
1920
|
+
SimTypeLong(signed=True),
|
|
1921
|
+
),
|
|
594
1922
|
"CredpEncodeCredential": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
595
|
-
"WmiQueryAllDataMultipleA": SimTypeFunction(
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
"
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
"
|
|
603
|
-
|
|
604
|
-
|
|
1923
|
+
"WmiQueryAllDataMultipleA": SimTypeFunction(
|
|
1924
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
1925
|
+
SimTypeLong(signed=True),
|
|
1926
|
+
),
|
|
1927
|
+
"SystemFunction030": SimTypeFunction(
|
|
1928
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1929
|
+
),
|
|
1930
|
+
"LsaOpenTrustedDomain": SimTypeFunction(
|
|
1931
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
1932
|
+
SimTypeLong(signed=True),
|
|
1933
|
+
),
|
|
1934
|
+
"SystemFunction005": SimTypeFunction(
|
|
1935
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1936
|
+
),
|
|
1937
|
+
"SystemFunction012": SimTypeFunction(
|
|
1938
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1939
|
+
),
|
|
1940
|
+
"SystemFunction031": SimTypeFunction(
|
|
1941
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1942
|
+
),
|
|
1943
|
+
"SetEntriesInAuditListW": SimTypeFunction(
|
|
1944
|
+
[
|
|
1945
|
+
SimTypeLong(signed=True),
|
|
1946
|
+
SimTypeLong(signed=True),
|
|
1947
|
+
SimTypeLong(signed=True),
|
|
1948
|
+
SimTypeLong(signed=True),
|
|
1949
|
+
SimTypeLong(signed=True),
|
|
1950
|
+
SimTypeLong(signed=True),
|
|
1951
|
+
],
|
|
1952
|
+
SimTypeLong(signed=True),
|
|
1953
|
+
),
|
|
1954
|
+
"I_ScGetCurrentGroupStateW": SimTypeFunction(
|
|
1955
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1956
|
+
),
|
|
1957
|
+
"SetNamedSecurityInfoExW": SimTypeFunction(
|
|
1958
|
+
[
|
|
1959
|
+
SimTypeLong(signed=True),
|
|
1960
|
+
SimTypeLong(signed=True),
|
|
1961
|
+
SimTypeLong(signed=True),
|
|
1962
|
+
SimTypeLong(signed=True),
|
|
1963
|
+
SimTypeLong(signed=True),
|
|
1964
|
+
SimTypeLong(signed=True),
|
|
1965
|
+
SimTypeLong(signed=True),
|
|
1966
|
+
SimTypeLong(signed=True),
|
|
1967
|
+
SimTypeLong(signed=True),
|
|
1968
|
+
],
|
|
1969
|
+
SimTypeLong(signed=True),
|
|
1970
|
+
),
|
|
1971
|
+
"ElfNumberOfRecords": SimTypeFunction(
|
|
1972
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1973
|
+
),
|
|
605
1974
|
"LsaClearAuditLog": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
606
|
-
"CreateCodeAuthzLevel": SimTypeFunction(
|
|
607
|
-
|
|
1975
|
+
"CreateCodeAuthzLevel": SimTypeFunction(
|
|
1976
|
+
[
|
|
1977
|
+
SimTypeLong(signed=True),
|
|
1978
|
+
SimTypeLong(signed=True),
|
|
1979
|
+
SimTypeLong(signed=True),
|
|
1980
|
+
SimTypeLong(signed=True),
|
|
1981
|
+
SimTypeLong(signed=True),
|
|
1982
|
+
],
|
|
1983
|
+
SimTypeLong(signed=True),
|
|
1984
|
+
),
|
|
1985
|
+
"MD5Update": SimTypeFunction(
|
|
1986
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1987
|
+
),
|
|
608
1988
|
"ElfFlushEventLog": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
609
|
-
"MakeAbsoluteSD2": SimTypeFunction(
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
"
|
|
1989
|
+
"MakeAbsoluteSD2": SimTypeFunction(
|
|
1990
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1991
|
+
),
|
|
1992
|
+
"SaferiCompareTokenLevels": SimTypeFunction(
|
|
1993
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
1994
|
+
),
|
|
1995
|
+
"SetEntriesInAccessListA": SimTypeFunction(
|
|
1996
|
+
[
|
|
1997
|
+
SimTypeLong(signed=True),
|
|
1998
|
+
SimTypeLong(signed=True),
|
|
1999
|
+
SimTypeLong(signed=True),
|
|
2000
|
+
SimTypeLong(signed=True),
|
|
2001
|
+
SimTypeLong(signed=True),
|
|
2002
|
+
SimTypeLong(signed=True),
|
|
2003
|
+
],
|
|
2004
|
+
SimTypeLong(signed=True),
|
|
2005
|
+
),
|
|
2006
|
+
"SystemFunction008": SimTypeFunction(
|
|
2007
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
2008
|
+
),
|
|
613
2009
|
"FlushEfsCache": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
614
|
-
"ConvertSecurityDescriptorToAccessNamedW": SimTypeFunction(
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
"
|
|
627
|
-
|
|
628
|
-
|
|
2010
|
+
"ConvertSecurityDescriptorToAccessNamedW": SimTypeFunction(
|
|
2011
|
+
[
|
|
2012
|
+
SimTypeLong(signed=True),
|
|
2013
|
+
SimTypeLong(signed=True),
|
|
2014
|
+
SimTypeLong(signed=True),
|
|
2015
|
+
SimTypeLong(signed=True),
|
|
2016
|
+
SimTypeLong(signed=True),
|
|
2017
|
+
SimTypeLong(signed=True),
|
|
2018
|
+
SimTypeLong(signed=True),
|
|
2019
|
+
],
|
|
2020
|
+
SimTypeLong(signed=True),
|
|
2021
|
+
),
|
|
2022
|
+
"LsaCreateAccount": SimTypeFunction(
|
|
2023
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
2024
|
+
SimTypeLong(signed=True),
|
|
2025
|
+
),
|
|
2026
|
+
"LsaEnumerateAccounts": SimTypeFunction(
|
|
2027
|
+
[
|
|
2028
|
+
SimTypeLong(signed=True),
|
|
2029
|
+
SimTypeLong(signed=True),
|
|
2030
|
+
SimTypeLong(signed=True),
|
|
2031
|
+
SimTypeLong(signed=True),
|
|
2032
|
+
SimTypeLong(signed=True),
|
|
2033
|
+
],
|
|
2034
|
+
SimTypeLong(signed=True),
|
|
2035
|
+
),
|
|
2036
|
+
"WmiQueryGuidInformation": SimTypeFunction(
|
|
2037
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
2038
|
+
),
|
|
2039
|
+
"I_QueryTagInformation": SimTypeFunction(
|
|
2040
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
2041
|
+
),
|
|
2042
|
+
"SetInformationCodeAuthzLevelW": SimTypeFunction(
|
|
2043
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
2044
|
+
SimTypeLong(signed=True),
|
|
2045
|
+
),
|
|
2046
|
+
"LsaQueryInfoTrustedDomain": SimTypeFunction(
|
|
2047
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
2048
|
+
),
|
|
2049
|
+
"SystemFunction028": SimTypeFunction(
|
|
2050
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
2051
|
+
),
|
|
2052
|
+
"WmiQuerySingleInstanceMultipleW": SimTypeFunction(
|
|
2053
|
+
[
|
|
2054
|
+
SimTypeLong(signed=True),
|
|
2055
|
+
SimTypeLong(signed=True),
|
|
2056
|
+
SimTypeLong(signed=True),
|
|
2057
|
+
SimTypeLong(signed=True),
|
|
2058
|
+
SimTypeLong(signed=True),
|
|
2059
|
+
],
|
|
2060
|
+
SimTypeLong(signed=True),
|
|
2061
|
+
),
|
|
2062
|
+
"WmiReceiveNotificationsW": SimTypeFunction(
|
|
2063
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
2064
|
+
SimTypeLong(signed=True),
|
|
2065
|
+
),
|
|
2066
|
+
"LsaSetInformationTrustedDomain": SimTypeFunction(
|
|
2067
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
2068
|
+
),
|
|
2069
|
+
"I_ScValidatePnPService": SimTypeFunction(
|
|
2070
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
2071
|
+
),
|
|
2072
|
+
"ElfReportEventAndSourceW": SimTypeFunction(
|
|
2073
|
+
[
|
|
2074
|
+
SimTypeLong(signed=True),
|
|
2075
|
+
SimTypeLong(signed=True),
|
|
2076
|
+
SimTypeLong(signed=True),
|
|
2077
|
+
SimTypeLong(signed=True),
|
|
2078
|
+
SimTypeLong(signed=True),
|
|
2079
|
+
SimTypeLong(signed=True),
|
|
2080
|
+
SimTypeLong(signed=True),
|
|
2081
|
+
SimTypeLong(signed=True),
|
|
2082
|
+
SimTypeLong(signed=True),
|
|
2083
|
+
SimTypeLong(signed=True),
|
|
2084
|
+
SimTypeLong(signed=True),
|
|
2085
|
+
SimTypeLong(signed=True),
|
|
2086
|
+
SimTypeLong(signed=True),
|
|
2087
|
+
SimTypeLong(signed=True),
|
|
2088
|
+
SimTypeLong(signed=True),
|
|
2089
|
+
],
|
|
2090
|
+
SimTypeLong(signed=True),
|
|
2091
|
+
),
|
|
2092
|
+
"ConvertSDToStringSDRootDomainA": SimTypeFunction(
|
|
2093
|
+
[
|
|
2094
|
+
SimTypeLong(signed=True),
|
|
2095
|
+
SimTypeLong(signed=True),
|
|
2096
|
+
SimTypeLong(signed=True),
|
|
2097
|
+
SimTypeLong(signed=True),
|
|
2098
|
+
SimTypeLong(signed=True),
|
|
2099
|
+
SimTypeLong(signed=True),
|
|
2100
|
+
],
|
|
2101
|
+
SimTypeLong(signed=True),
|
|
2102
|
+
),
|
|
2103
|
+
"TrusteeAccessToObjectA": SimTypeFunction(
|
|
2104
|
+
[
|
|
2105
|
+
SimTypeLong(signed=True),
|
|
2106
|
+
SimTypeLong(signed=True),
|
|
2107
|
+
SimTypeLong(signed=True),
|
|
2108
|
+
SimTypeLong(signed=True),
|
|
2109
|
+
SimTypeLong(signed=True),
|
|
2110
|
+
SimTypeLong(signed=True),
|
|
2111
|
+
],
|
|
2112
|
+
SimTypeLong(signed=True),
|
|
2113
|
+
),
|
|
629
2114
|
"MD4Init": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
630
|
-
"GetOverlappedAccessResults": SimTypeFunction(
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
"
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
"
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
"
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
"
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
2115
|
+
"GetOverlappedAccessResults": SimTypeFunction(
|
|
2116
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
2117
|
+
SimTypeLong(signed=True),
|
|
2118
|
+
),
|
|
2119
|
+
"LogonUserExExW": SimTypeFunction(
|
|
2120
|
+
[
|
|
2121
|
+
SimTypeLong(signed=True),
|
|
2122
|
+
SimTypeLong(signed=True),
|
|
2123
|
+
SimTypeLong(signed=True),
|
|
2124
|
+
SimTypeLong(signed=True),
|
|
2125
|
+
SimTypeLong(signed=True),
|
|
2126
|
+
SimTypeLong(signed=True),
|
|
2127
|
+
SimTypeLong(signed=True),
|
|
2128
|
+
SimTypeLong(signed=True),
|
|
2129
|
+
SimTypeLong(signed=True),
|
|
2130
|
+
SimTypeLong(signed=True),
|
|
2131
|
+
SimTypeLong(signed=True),
|
|
2132
|
+
],
|
|
2133
|
+
SimTypeLong(signed=True),
|
|
2134
|
+
),
|
|
2135
|
+
"LsaLookupPrivilegeName": SimTypeFunction(
|
|
2136
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
2137
|
+
),
|
|
2138
|
+
"LsaOpenAccount": SimTypeFunction(
|
|
2139
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
2140
|
+
SimTypeLong(signed=True),
|
|
2141
|
+
),
|
|
2142
|
+
"CredRestoreCredentials": SimTypeFunction(
|
|
2143
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
2144
|
+
SimTypeLong(signed=True),
|
|
2145
|
+
),
|
|
2146
|
+
"I_ScSendTSMessage": SimTypeFunction(
|
|
2147
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
2148
|
+
SimTypeLong(signed=True),
|
|
2149
|
+
),
|
|
2150
|
+
"LsaLookupPrivilegeDisplayName": SimTypeFunction(
|
|
2151
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
2152
|
+
SimTypeLong(signed=True),
|
|
2153
|
+
),
|
|
2154
|
+
"I_ScSendPnPMessage": SimTypeFunction(
|
|
2155
|
+
[
|
|
2156
|
+
SimTypeLong(signed=True),
|
|
2157
|
+
SimTypeLong(signed=True),
|
|
2158
|
+
SimTypeLong(signed=True),
|
|
2159
|
+
SimTypeLong(signed=True),
|
|
2160
|
+
SimTypeLong(signed=True),
|
|
2161
|
+
SimTypeLong(signed=True),
|
|
2162
|
+
],
|
|
2163
|
+
SimTypeLong(signed=True),
|
|
2164
|
+
),
|
|
2165
|
+
"LsaICLookupSids": SimTypeFunction(
|
|
2166
|
+
[
|
|
2167
|
+
SimTypeLong(signed=True),
|
|
2168
|
+
SimTypeLong(signed=True),
|
|
2169
|
+
SimTypeLong(signed=True),
|
|
2170
|
+
SimTypeLong(signed=True),
|
|
2171
|
+
SimTypeLong(signed=True),
|
|
2172
|
+
SimTypeLong(signed=True),
|
|
2173
|
+
SimTypeLong(signed=True),
|
|
2174
|
+
SimTypeLong(signed=True),
|
|
2175
|
+
SimTypeLong(signed=True),
|
|
2176
|
+
],
|
|
2177
|
+
SimTypeLong(signed=True),
|
|
2178
|
+
),
|
|
2179
|
+
"SystemFunction034": SimTypeFunction(
|
|
2180
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
2181
|
+
),
|
|
2182
|
+
"SaferiRecordEventLogEntry": SimTypeFunction(
|
|
2183
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
2184
|
+
),
|
|
2185
|
+
"SystemFunction026": SimTypeFunction(
|
|
2186
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
2187
|
+
),
|
|
2188
|
+
"ElfOpenBackupEventLogA": SimTypeFunction(
|
|
2189
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
2190
|
+
),
|
|
2191
|
+
"SystemFunction029": SimTypeFunction(
|
|
2192
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
2193
|
+
),
|
|
2194
|
+
"LsaSetSecret": SimTypeFunction(
|
|
2195
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
2196
|
+
),
|
|
2197
|
+
"ElfReadEventLogA": SimTypeFunction(
|
|
2198
|
+
[
|
|
2199
|
+
SimTypeLong(signed=True),
|
|
2200
|
+
SimTypeLong(signed=True),
|
|
2201
|
+
SimTypeLong(signed=True),
|
|
2202
|
+
SimTypeLong(signed=True),
|
|
2203
|
+
SimTypeLong(signed=True),
|
|
2204
|
+
SimTypeLong(signed=True),
|
|
2205
|
+
SimTypeLong(signed=True),
|
|
2206
|
+
],
|
|
2207
|
+
SimTypeLong(signed=True),
|
|
2208
|
+
),
|
|
2209
|
+
"CredpConvertCredential": SimTypeFunction(
|
|
2210
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
2211
|
+
SimTypeLong(signed=True),
|
|
2212
|
+
),
|
|
2213
|
+
"ConvertSecurityDescriptorToAccessW": SimTypeFunction(
|
|
2214
|
+
[
|
|
2215
|
+
SimTypeLong(signed=True),
|
|
2216
|
+
SimTypeLong(signed=True),
|
|
2217
|
+
SimTypeLong(signed=True),
|
|
2218
|
+
SimTypeLong(signed=True),
|
|
2219
|
+
SimTypeLong(signed=True),
|
|
2220
|
+
SimTypeLong(signed=True),
|
|
2221
|
+
SimTypeLong(signed=True),
|
|
2222
|
+
],
|
|
2223
|
+
SimTypeLong(signed=True),
|
|
2224
|
+
),
|
|
2225
|
+
"LsaICLookupSidsWithCreds": SimTypeFunction(
|
|
2226
|
+
[
|
|
2227
|
+
SimTypeLong(signed=True),
|
|
2228
|
+
SimTypeLong(signed=True),
|
|
2229
|
+
SimTypeLong(signed=True),
|
|
2230
|
+
SimTypeLong(signed=True),
|
|
2231
|
+
SimTypeLong(signed=True),
|
|
2232
|
+
SimTypeLong(signed=True),
|
|
2233
|
+
SimTypeLong(signed=True),
|
|
2234
|
+
SimTypeLong(signed=True),
|
|
2235
|
+
SimTypeLong(signed=True),
|
|
2236
|
+
SimTypeLong(signed=True),
|
|
2237
|
+
SimTypeLong(signed=True),
|
|
2238
|
+
SimTypeLong(signed=True),
|
|
2239
|
+
],
|
|
2240
|
+
SimTypeLong(signed=True),
|
|
2241
|
+
),
|
|
2242
|
+
"SetSecurityInfoExA": SimTypeFunction(
|
|
2243
|
+
[
|
|
2244
|
+
SimTypeLong(signed=True),
|
|
2245
|
+
SimTypeLong(signed=True),
|
|
2246
|
+
SimTypeLong(signed=True),
|
|
2247
|
+
SimTypeLong(signed=True),
|
|
2248
|
+
SimTypeLong(signed=True),
|
|
2249
|
+
SimTypeLong(signed=True),
|
|
2250
|
+
SimTypeLong(signed=True),
|
|
2251
|
+
SimTypeLong(signed=True),
|
|
2252
|
+
SimTypeLong(signed=True),
|
|
2253
|
+
],
|
|
2254
|
+
SimTypeLong(signed=True),
|
|
2255
|
+
),
|
|
2256
|
+
"SystemFunction001": SimTypeFunction(
|
|
2257
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
2258
|
+
),
|
|
2259
|
+
"UsePinForEncryptedFilesA": SimTypeFunction(
|
|
2260
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
2261
|
+
),
|
|
2262
|
+
"LsaQuerySecret": SimTypeFunction(
|
|
2263
|
+
[
|
|
2264
|
+
SimTypeLong(signed=True),
|
|
2265
|
+
SimTypeLong(signed=True),
|
|
2266
|
+
SimTypeLong(signed=True),
|
|
2267
|
+
SimTypeLong(signed=True),
|
|
2268
|
+
SimTypeLong(signed=True),
|
|
2269
|
+
],
|
|
2270
|
+
SimTypeLong(signed=True),
|
|
2271
|
+
),
|
|
2272
|
+
"LsaEnumeratePrivileges": SimTypeFunction(
|
|
2273
|
+
[
|
|
2274
|
+
SimTypeLong(signed=True),
|
|
2275
|
+
SimTypeLong(signed=True),
|
|
2276
|
+
SimTypeLong(signed=True),
|
|
2277
|
+
SimTypeLong(signed=True),
|
|
2278
|
+
SimTypeLong(signed=True),
|
|
2279
|
+
],
|
|
2280
|
+
SimTypeLong(signed=True),
|
|
2281
|
+
),
|
|
2282
|
+
"SystemFunction032": SimTypeFunction(
|
|
2283
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
2284
|
+
),
|
|
2285
|
+
"GetInformationCodeAuthzPolicyW": SimTypeFunction(
|
|
2286
|
+
[
|
|
2287
|
+
SimTypeLong(signed=True),
|
|
2288
|
+
SimTypeLong(signed=True),
|
|
2289
|
+
SimTypeLong(signed=True),
|
|
2290
|
+
SimTypeLong(signed=True),
|
|
2291
|
+
SimTypeLong(signed=True),
|
|
2292
|
+
SimTypeLong(signed=True),
|
|
2293
|
+
],
|
|
2294
|
+
SimTypeLong(signed=True),
|
|
2295
|
+
),
|
|
2296
|
+
"CredpEncodeSecret": SimTypeFunction(
|
|
2297
|
+
[
|
|
2298
|
+
SimTypeLong(signed=True),
|
|
2299
|
+
SimTypeLong(signed=True),
|
|
2300
|
+
SimTypeLong(signed=True),
|
|
2301
|
+
SimTypeLong(signed=True),
|
|
2302
|
+
SimTypeLong(signed=True),
|
|
2303
|
+
],
|
|
2304
|
+
SimTypeLong(signed=True),
|
|
2305
|
+
),
|
|
2306
|
+
"ElfOpenBackupEventLogW": SimTypeFunction(
|
|
2307
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
2308
|
+
),
|
|
2309
|
+
"IdentifyCodeAuthzLevelW": SimTypeFunction(
|
|
2310
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
2311
|
+
SimTypeLong(signed=True),
|
|
2312
|
+
),
|
|
2313
|
+
"SystemFunction009": SimTypeFunction(
|
|
2314
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
2315
|
+
),
|
|
2316
|
+
"A_SHAUpdate": SimTypeFunction(
|
|
2317
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
2318
|
+
),
|
|
661
2319
|
"LsaDelete": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
662
|
-
"ElfClearEventLogFileW": SimTypeFunction(
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
"
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
"
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
"
|
|
679
|
-
|
|
680
|
-
|
|
2320
|
+
"ElfClearEventLogFileW": SimTypeFunction(
|
|
2321
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
2322
|
+
),
|
|
2323
|
+
"SetInformationCodeAuthzPolicyW": SimTypeFunction(
|
|
2324
|
+
[
|
|
2325
|
+
SimTypeLong(signed=True),
|
|
2326
|
+
SimTypeLong(signed=True),
|
|
2327
|
+
SimTypeLong(signed=True),
|
|
2328
|
+
SimTypeLong(signed=True),
|
|
2329
|
+
SimTypeLong(signed=True),
|
|
2330
|
+
],
|
|
2331
|
+
SimTypeLong(signed=True),
|
|
2332
|
+
),
|
|
2333
|
+
"I_ScQueryServiceConfig": SimTypeFunction(
|
|
2334
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
2335
|
+
),
|
|
2336
|
+
"WmiDevInstToInstanceNameW": SimTypeFunction(
|
|
2337
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
2338
|
+
SimTypeLong(signed=True),
|
|
2339
|
+
),
|
|
2340
|
+
"SystemFunction022": SimTypeFunction(
|
|
2341
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
2342
|
+
),
|
|
2343
|
+
"WmiQueryAllDataW": SimTypeFunction(
|
|
2344
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
2345
|
+
),
|
|
2346
|
+
"WmiQuerySingleInstanceA": SimTypeFunction(
|
|
2347
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
2348
|
+
SimTypeLong(signed=True),
|
|
2349
|
+
),
|
|
2350
|
+
"ElfOldestRecord": SimTypeFunction(
|
|
2351
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
2352
|
+
),
|
|
2353
|
+
"SystemFunction002": SimTypeFunction(
|
|
2354
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
2355
|
+
),
|
|
2356
|
+
"SetEntriesInAccessListW": SimTypeFunction(
|
|
2357
|
+
[
|
|
2358
|
+
SimTypeLong(signed=True),
|
|
2359
|
+
SimTypeLong(signed=True),
|
|
2360
|
+
SimTypeLong(signed=True),
|
|
2361
|
+
SimTypeLong(signed=True),
|
|
2362
|
+
SimTypeLong(signed=True),
|
|
2363
|
+
SimTypeLong(signed=True),
|
|
2364
|
+
],
|
|
2365
|
+
SimTypeLong(signed=True),
|
|
2366
|
+
),
|
|
2367
|
+
"LsaSetQuotasForAccount": SimTypeFunction(
|
|
2368
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
2369
|
+
),
|
|
2370
|
+
"CredReadByTokenHandle": SimTypeFunction(
|
|
2371
|
+
[
|
|
2372
|
+
SimTypeLong(signed=True),
|
|
2373
|
+
SimTypeLong(signed=True),
|
|
2374
|
+
SimTypeLong(signed=True),
|
|
2375
|
+
SimTypeLong(signed=True),
|
|
2376
|
+
SimTypeLong(signed=True),
|
|
2377
|
+
],
|
|
2378
|
+
SimTypeLong(signed=True),
|
|
2379
|
+
),
|
|
2380
|
+
"SystemFunction004": SimTypeFunction(
|
|
2381
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
2382
|
+
),
|
|
2383
|
+
"LsaICLookupNamesWithCreds": SimTypeFunction(
|
|
2384
|
+
[
|
|
2385
|
+
SimTypeLong(signed=True),
|
|
2386
|
+
SimTypeLong(signed=True),
|
|
2387
|
+
SimTypeLong(signed=True),
|
|
2388
|
+
SimTypeLong(signed=True),
|
|
2389
|
+
SimTypeLong(signed=True),
|
|
2390
|
+
SimTypeLong(signed=True),
|
|
2391
|
+
SimTypeLong(signed=True),
|
|
2392
|
+
SimTypeLong(signed=True),
|
|
2393
|
+
SimTypeLong(signed=True),
|
|
2394
|
+
SimTypeLong(signed=True),
|
|
2395
|
+
SimTypeLong(signed=True),
|
|
2396
|
+
SimTypeLong(signed=True),
|
|
2397
|
+
],
|
|
2398
|
+
SimTypeLong(signed=True),
|
|
2399
|
+
),
|
|
2400
|
+
"SystemFunction023": SimTypeFunction(
|
|
2401
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
2402
|
+
),
|
|
2403
|
+
"SystemFunction011": SimTypeFunction(
|
|
2404
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
2405
|
+
),
|
|
2406
|
+
"WmiNotificationRegistrationW": SimTypeFunction(
|
|
2407
|
+
[
|
|
2408
|
+
SimTypeLong(signed=True),
|
|
2409
|
+
SimTypeLong(signed=True),
|
|
2410
|
+
SimTypeLong(signed=True),
|
|
2411
|
+
SimTypeLong(signed=True),
|
|
2412
|
+
SimTypeLong(signed=True),
|
|
2413
|
+
],
|
|
2414
|
+
SimTypeLong(signed=True),
|
|
2415
|
+
),
|
|
2416
|
+
"SystemFunction021": SimTypeFunction(
|
|
2417
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)], SimTypeLong(signed=True)
|
|
2418
|
+
),
|
|
2419
|
+
"WmiReceiveNotificationsA": SimTypeFunction(
|
|
2420
|
+
[SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True), SimTypeLong(signed=True)],
|
|
2421
|
+
SimTypeLong(signed=True),
|
|
2422
|
+
),
|
|
681
2423
|
"MD5Final": SimTypeFunction([SimTypeLong(signed=True)], SimTypeLong(signed=True)),
|
|
682
2424
|
}
|
|
683
2425
|
|
|
@@ -733,7 +2475,8 @@ lib.set_prototypes(prototypes)
|
|
|
733
2475
|
with open(filename, "w") as f:
|
|
734
2476
|
f.write(header)
|
|
735
2477
|
if (prefix, libname) == ("win32", "kernel32"):
|
|
736
|
-
f.write(
|
|
2478
|
+
f.write(
|
|
2479
|
+
"""lib.add_all_from_dict(P['win32'])
|
|
737
2480
|
lib.add_alias('EncodePointer', 'DecodePointer')
|
|
738
2481
|
lib.add_alias('GlobalAlloc', 'LocalAlloc')
|
|
739
2482
|
|
|
@@ -744,34 +2487,42 @@ lib.add('lstrcpynA', P['libc']['strncpy'])
|
|
|
744
2487
|
lib.add('lstrlenA', P['libc']['strlen'])
|
|
745
2488
|
lib.add('lstrcmpW', P['libc']['wcscmp'])
|
|
746
2489
|
lib.add('lstrcmpiW', P['libc']['wcscasecmp'])
|
|
747
|
-
"""
|
|
2490
|
+
"""
|
|
2491
|
+
)
|
|
748
2492
|
elif (prefix, libname) == ("win32", "ntdll"):
|
|
749
|
-
f.write(
|
|
2493
|
+
f.write(
|
|
2494
|
+
"""lib.add('RtlEncodePointer', P['win32']['EncodePointer'])
|
|
750
2495
|
lib.add('RtlDecodePointer', P['win32']['EncodePointer'])
|
|
751
2496
|
lib.add('RtlAllocateHeap', P['win32']['HeapAlloc'])
|
|
752
|
-
"""
|
|
2497
|
+
"""
|
|
2498
|
+
)
|
|
753
2499
|
elif (prefix, libname) == ("win32", "user32"):
|
|
754
|
-
f.write(
|
|
2500
|
+
f.write(
|
|
2501
|
+
"""import archinfo
|
|
755
2502
|
from ...calling_conventions import SimCCCdecl
|
|
756
2503
|
|
|
757
2504
|
lib.add_all_from_dict(P['win_user32'])
|
|
758
2505
|
lib.add('wsprintfA', P['libc']['sprintf'], cc=SimCCCdecl(archinfo.ArchX86()))
|
|
759
|
-
"""
|
|
2506
|
+
"""
|
|
2507
|
+
)
|
|
760
2508
|
elif (prefix, libname) == ("wdk", "ntoskrnl"):
|
|
761
|
-
f.write(
|
|
762
|
-
""")
|
|
2509
|
+
f.write(
|
|
2510
|
+
"""lib.add_all_from_dict(P["win32_kernel"])
|
|
2511
|
+
"""
|
|
2512
|
+
)
|
|
763
2513
|
|
|
764
2514
|
if suffix:
|
|
765
|
-
f.write(f
|
|
2515
|
+
f.write(f'lib.set_library_names("{libname}.{suffix}")\n')
|
|
766
2516
|
else:
|
|
767
|
-
f.write(f
|
|
2517
|
+
f.write(f'lib.set_library_names("{libname}")\n')
|
|
768
2518
|
f.write("prototypes = \\\n {\n")
|
|
769
2519
|
f.write(parsedcprotos2py(parsed_cprotos_per_lib))
|
|
770
2520
|
f.write(footer)
|
|
771
2521
|
|
|
772
2522
|
# Dump the type collection
|
|
773
2523
|
with open("types_win32.py", "w") as f:
|
|
774
|
-
f.write(
|
|
2524
|
+
f.write(
|
|
2525
|
+
"""# pylint:disable=line-too-long
|
|
775
2526
|
from collections import OrderedDict
|
|
776
2527
|
|
|
777
2528
|
from angr.procedures.definitions import SimTypeCollection
|
|
@@ -786,12 +2537,13 @@ from angr.sim_type import SimTypeFunction, \
|
|
|
786
2537
|
SimTypeBool, \
|
|
787
2538
|
SimTypeRef
|
|
788
2539
|
|
|
789
|
-
"""
|
|
2540
|
+
"""
|
|
2541
|
+
)
|
|
790
2542
|
f.write(typelib.init_str())
|
|
791
2543
|
|
|
792
2544
|
|
|
793
2545
|
def main():
|
|
794
|
-
_args = ArgumentParser(description=
|
|
2546
|
+
_args = ArgumentParser(description="Build a typelib from win32json project")
|
|
795
2547
|
_args.add_argument("win32json_api_directory")
|
|
796
2548
|
_args.add_argument("-v", action="count", help="Increase logging verbosity. Can specify multiple times.")
|
|
797
2549
|
args = _args.parse_args()
|