forked from bats3c/DefensiveInjector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsyscalls.asm
12211 lines (12181 loc) · 461 KB
/
syscalls.asm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
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
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
section .text
%macro makesyscall 2
global %1
%1:
mov r10,rcx
mov eax,%2
syscall
ret
%endmacro
%ifdef _XP_SP1
makesyscall NtMapUserPhysicalPagesScatter, 0x0
makesyscall NtWaitForSingleObject, 0x1
makesyscall NtCallbackReturn, 0x2
makesyscall NtReadFile, 0x3
makesyscall NtDeviceIoControlFile, 0x4
makesyscall NtWriteFile, 0x5
makesyscall NtRemoveIoCompletion, 0x6
makesyscall NtReleaseSemaphore, 0x7
makesyscall NtReplyWaitReceivePort, 0x8
makesyscall NtReplyPort, 0x9
makesyscall NtSetInformationThread, 0xa
makesyscall NtSetEvent, 0xb
makesyscall NtClose, 0xc
makesyscall NtQueryObject, 0xd
makesyscall NtQueryInformationFile, 0xe
makesyscall NtOpenKey, 0xf
makesyscall NtEnumerateValueKey, 0x10
makesyscall NtFindAtom, 0x11
makesyscall NtQueryDefaultLocale, 0x12
makesyscall NtQueryKey, 0x13
makesyscall NtQueryValueKey, 0x14
makesyscall NtAllocateVirtualMemory, 0x15
makesyscall NtQueryInformationProcess, 0x16
makesyscall NtWaitForMultipleObjects32, 0x17
makesyscall NtWriteFileGather, 0x18
makesyscall NtSetInformationProcess, 0x19
makesyscall NtCreateKey, 0x1a
makesyscall NtFreeVirtualMemory, 0x1b
makesyscall NtImpersonateClientOfPort, 0x1c
makesyscall NtReleaseMutant, 0x1d
makesyscall NtQueryInformationToken, 0x1e
makesyscall NtRequestWaitReplyPort, 0x1f
makesyscall NtQueryVirtualMemory, 0x20
makesyscall NtOpenThreadToken, 0x21
makesyscall NtQueryInformationThread, 0x22
makesyscall NtOpenProcess, 0x23
makesyscall NtSetInformationFile, 0x24
makesyscall NtMapViewOfSection, 0x25
makesyscall NtAccessCheckAndAuditAlarm, 0x26
makesyscall NtUnmapViewOfSection, 0x27
makesyscall NtReplyWaitReceivePortEx, 0x28
makesyscall NtTerminateProcess, 0x29
makesyscall NtSetEventBoostPriority, 0x2a
makesyscall NtReadFileScatter, 0x2b
makesyscall NtOpenThreadTokenEx, 0x2c
makesyscall NtOpenProcessTokenEx, 0x2d
makesyscall NtQueryPerformanceCounter, 0x2e
makesyscall NtEnumerateKey, 0x2f
makesyscall NtOpenFile, 0x30
makesyscall NtDelayExecution, 0x31
makesyscall NtQueryDirectoryFile, 0x32
makesyscall NtQuerySystemInformation, 0x33
makesyscall NtOpenSection, 0x34
makesyscall NtQueryTimer, 0x35
makesyscall NtFsControlFile, 0x36
makesyscall NtWriteVirtualMemory, 0x37
makesyscall NtCloseObjectAuditAlarm, 0x38
makesyscall NtDuplicateObject, 0x39
makesyscall NtQueryAttributesFile, 0x3a
makesyscall NtClearEvent, 0x3b
makesyscall NtReadVirtualMemory, 0x3c
makesyscall NtOpenEvent, 0x3d
makesyscall NtAdjustPrivilegesToken, 0x3e
makesyscall NtDuplicateToken, 0x3f
makesyscall NtContinue, 0x40
makesyscall NtQueryDefaultUILanguage, 0x41
makesyscall NtQueueApcThread, 0x42
makesyscall NtYieldExecution, 0x43
makesyscall NtAddAtom, 0x44
makesyscall NtCreateEvent, 0x45
makesyscall NtQueryVolumeInformationFile, 0x46
makesyscall NtCreateSection, 0x47
makesyscall NtFlushBuffersFile, 0x48
makesyscall NtApphelpCacheControl, 0x49
makesyscall NtCreateProcessEx, 0x4a
makesyscall NtCreateThread, 0x4b
makesyscall NtIsProcessInJob, 0x4c
makesyscall NtProtectVirtualMemory, 0x4d
makesyscall NtQuerySection, 0x4e
makesyscall NtResumeThread, 0x4f
makesyscall NtTerminateThread, 0x50
makesyscall NtReadRequestData, 0x51
makesyscall NtCreateFile, 0x52
makesyscall NtQueryEvent, 0x53
makesyscall NtWriteRequestData, 0x54
makesyscall NtOpenDirectoryObject, 0x55
makesyscall NtAccessCheckByTypeAndAuditAlarm, 0x56
makesyscall NtQuerySystemTime, 0x57
makesyscall NtWaitForMultipleObjects, 0x58
makesyscall NtSetInformationObject, 0x59
makesyscall NtCancelIoFile, 0x5a
makesyscall NtTraceEvent, 0x5b
makesyscall NtPowerInformation, 0x5c
makesyscall NtSetValueKey, 0x5d
makesyscall NtCancelTimer, 0x5e
makesyscall NtSetTimer, 0x5f
makesyscall NtAcceptConnectPort, 0x60
makesyscall NtAccessCheck, 0x61
makesyscall NtAccessCheckByType, 0x62
makesyscall NtAccessCheckByTypeResultList, 0x63
makesyscall NtAccessCheckByTypeResultListAndAuditAlarm, 0x64
makesyscall NtAccessCheckByTypeResultListAndAuditAlarmByHandle, 0x65
makesyscall NtAddBootEntry, 0x66
makesyscall NtAddDriverEntry, 0x67
makesyscall NtAdjustGroupsToken, 0x68
makesyscall NtAlertResumeThread, 0x69
makesyscall NtAlertThread, 0x6a
makesyscall NtAllocateLocallyUniqueId, 0x6b
makesyscall NtAllocateUserPhysicalPages, 0x6c
makesyscall NtAllocateUuids, 0x6d
makesyscall NtAreMappedFilesTheSame, 0x6e
makesyscall NtAssignProcessToJobObject, 0x6f
makesyscall NtCancelDeviceWakeupRequest, 0x70
makesyscall NtCompactKeys, 0x71
makesyscall NtCompareTokens, 0x72
makesyscall NtCompleteConnectPort, 0x73
makesyscall NtCompressKey, 0x74
makesyscall NtConnectPort, 0x75
makesyscall NtCreateDebugObject, 0x76
makesyscall NtCreateDirectoryObject, 0x77
makesyscall NtCreateEventPair, 0x78
makesyscall NtCreateIoCompletion, 0x79
makesyscall NtCreateJobObject, 0x7a
makesyscall NtCreateJobSet, 0x7b
makesyscall NtCreateKeyedEvent, 0x7c
makesyscall NtCreateMailslotFile, 0x7d
makesyscall NtCreateMutant, 0x7e
makesyscall NtCreateNamedPipeFile, 0x7f
makesyscall NtCreatePagingFile, 0x80
makesyscall NtCreatePort, 0x81
makesyscall NtCreateProcess, 0x82
makesyscall NtCreateProfile, 0x83
makesyscall NtCreateSemaphore, 0x84
makesyscall NtCreateSymbolicLinkObject, 0x85
makesyscall NtCreateTimer, 0x86
makesyscall NtCreateToken, 0x87
makesyscall NtCreateWaitablePort, 0x88
makesyscall NtDebugActiveProcess, 0x89
makesyscall NtDebugContinue, 0x8a
makesyscall NtDeleteAtom, 0x8b
makesyscall NtDeleteBootEntry, 0x8c
makesyscall NtDeleteDriverEntry, 0x8d
makesyscall NtDeleteFile, 0x8e
makesyscall NtDeleteKey, 0x8f
makesyscall NtDeleteObjectAuditAlarm, 0x90
makesyscall NtDeleteValueKey, 0x91
makesyscall NtDisplayString, 0x92
makesyscall NtEnumerateBootEntries, 0x93
makesyscall NtEnumerateDriverEntries, 0x94
makesyscall NtEnumerateSystemEnvironmentValuesEx, 0x95
makesyscall NtExtendSection, 0x96
makesyscall NtFilterToken, 0x97
makesyscall NtFlushInstructionCache, 0x98
makesyscall NtFlushKey, 0x99
makesyscall NtFlushVirtualMemory, 0x9a
makesyscall NtFlushWriteBuffer, 0x9b
makesyscall NtFreeUserPhysicalPages, 0x9c
makesyscall NtGetContextThread, 0x9d
makesyscall NtGetCurrentProcessorNumber, 0x9e
makesyscall NtGetDevicePowerState, 0x9f
makesyscall NtGetPlugPlayEvent, 0xa0
makesyscall NtGetWriteWatch, 0xa1
makesyscall NtImpersonateAnonymousToken, 0xa2
makesyscall NtImpersonateThread, 0xa3
makesyscall NtInitializeRegistry, 0xa4
makesyscall NtInitiatePowerAction, 0xa5
makesyscall NtIsSystemResumeAutomatic, 0xa6
makesyscall NtListenPort, 0xa7
makesyscall NtLoadDriver, 0xa8
makesyscall NtLoadKey, 0xa9
makesyscall NtLoadKey2, 0xaa
makesyscall NtLoadKeyEx, 0xab
makesyscall NtLockFile, 0xac
makesyscall NtLockProductActivationKeys, 0xad
makesyscall NtLockRegistryKey, 0xae
makesyscall NtLockVirtualMemory, 0xaf
makesyscall NtMakePermanentObject, 0xb0
makesyscall NtMakeTemporaryObject, 0xb1
makesyscall NtMapUserPhysicalPages, 0xb2
makesyscall NtModifyBootEntry, 0xb3
makesyscall NtModifyDriverEntry, 0xb4
makesyscall NtNotifyChangeDirectoryFile, 0xb5
makesyscall NtNotifyChangeKey, 0xb6
makesyscall NtNotifyChangeMultipleKeys, 0xb7
makesyscall NtOpenEventPair, 0xb8
makesyscall NtOpenIoCompletion, 0xb9
makesyscall NtOpenJobObject, 0xba
makesyscall NtOpenKeyedEvent, 0xbb
makesyscall NtOpenMutant, 0xbc
makesyscall NtOpenObjectAuditAlarm, 0xbd
makesyscall NtOpenProcessToken, 0xbe
makesyscall NtOpenSemaphore, 0xbf
makesyscall NtOpenSymbolicLinkObject, 0xc0
makesyscall NtOpenThread, 0xc1
makesyscall NtOpenTimer, 0xc2
makesyscall NtPlugPlayControl, 0xc3
makesyscall NtPrivilegeCheck, 0xc4
makesyscall NtPrivilegeObjectAuditAlarm, 0xc5
makesyscall NtPrivilegedServiceAuditAlarm, 0xc6
makesyscall NtPulseEvent, 0xc7
makesyscall NtQueryBootEntryOrder, 0xc8
makesyscall NtQueryBootOptions, 0xc9
makesyscall NtQueryDebugFilterState, 0xca
makesyscall NtQueryDirectoryObject, 0xcb
makesyscall NtQueryDriverEntryOrder, 0xcc
makesyscall NtQueryEaFile, 0xcd
makesyscall NtQueryFullAttributesFile, 0xce
makesyscall NtQueryInformationAtom, 0xcf
makesyscall NtQueryInformationJobObject, 0xd0
makesyscall NtQueryInformationPort, 0xd1
makesyscall NtQueryInstallUILanguage, 0xd2
makesyscall NtQueryIntervalProfile, 0xd3
makesyscall NtQueryIoCompletion, 0xd4
makesyscall NtQueryMultipleValueKey, 0xd5
makesyscall NtQueryMutant, 0xd6
makesyscall NtQueryOpenSubKeys, 0xd7
makesyscall NtQueryOpenSubKeysEx, 0xd8
makesyscall NtQueryPortInformationProcess, 0xd9
makesyscall NtQueryQuotaInformationFile, 0xda
makesyscall NtQuerySecurityObject, 0xdb
makesyscall NtQuerySemaphore, 0xdc
makesyscall NtQuerySymbolicLinkObject, 0xdd
makesyscall NtQuerySystemEnvironmentValue, 0xde
makesyscall NtQuerySystemEnvironmentValueEx, 0xdf
makesyscall NtQueryTimerResolution, 0xe0
makesyscall NtRaiseException, 0xe1
makesyscall NtRaiseHardError, 0xe2
makesyscall NtRegisterThreadTerminatePort, 0xe3
makesyscall NtReleaseKeyedEvent, 0xe4
makesyscall NtRemoveProcessDebug, 0xe5
makesyscall NtRenameKey, 0xe6
makesyscall NtReplaceKey, 0xe7
makesyscall NtReplyWaitReplyPort, 0xe8
makesyscall NtRequestDeviceWakeup, 0xe9
makesyscall NtRequestPort, 0xea
makesyscall NtRequestWakeupLatency, 0xeb
makesyscall NtResetEvent, 0xec
makesyscall NtResetWriteWatch, 0xed
makesyscall NtRestoreKey, 0xee
makesyscall NtResumeProcess, 0xef
makesyscall NtSaveKey, 0xf0
makesyscall NtSaveKeyEx, 0xf1
makesyscall NtSaveMergedKeys, 0xf2
makesyscall NtSecureConnectPort, 0xf3
makesyscall NtSetBootEntryOrder, 0xf4
makesyscall NtSetBootOptions, 0xf5
makesyscall NtSetContextThread, 0xf6
makesyscall NtSetDebugFilterState, 0xf7
makesyscall NtSetDefaultHardErrorPort, 0xf8
makesyscall NtSetDefaultLocale, 0xf9
makesyscall NtSetDefaultUILanguage, 0xfa
makesyscall NtSetDriverEntryOrder, 0xfb
makesyscall NtSetEaFile, 0xfc
makesyscall NtSetHighEventPair, 0xfd
makesyscall NtSetHighWaitLowEventPair, 0xfe
makesyscall NtSetInformationDebugObject, 0xff
makesyscall NtSetInformationJobObject, 0x100
makesyscall NtSetInformationKey, 0x101
makesyscall NtSetInformationToken, 0x102
makesyscall NtSetIntervalProfile, 0x103
makesyscall NtSetIoCompletion, 0x104
makesyscall NtSetLdtEntries, 0x105
makesyscall NtSetLowEventPair, 0x106
makesyscall NtSetLowWaitHighEventPair, 0x107
makesyscall NtSetQuotaInformationFile, 0x108
makesyscall NtSetSecurityObject, 0x109
makesyscall NtSetSystemEnvironmentValue, 0x10a
makesyscall NtSetSystemEnvironmentValueEx, 0x10b
makesyscall NtSetSystemInformation, 0x10c
makesyscall NtSetSystemPowerState, 0x10d
makesyscall NtSetSystemTime, 0x10e
makesyscall NtSetThreadExecutionState, 0x10f
makesyscall NtSetTimerResolution, 0x110
makesyscall NtSetUuidSeed, 0x111
makesyscall NtSetVolumeInformationFile, 0x112
makesyscall NtShutdownSystem, 0x113
makesyscall NtSignalAndWaitForSingleObject, 0x114
makesyscall NtStartProfile, 0x115
makesyscall NtStopProfile, 0x116
makesyscall NtSuspendProcess, 0x117
makesyscall NtSuspendThread, 0x118
makesyscall NtSystemDebugControl, 0x119
makesyscall NtTerminateJobObject, 0x11a
makesyscall NtTestAlert, 0x11b
makesyscall NtTranslateFilePath, 0x11c
makesyscall NtUnloadDriver, 0x11d
makesyscall NtUnloadKey, 0x11e
makesyscall NtUnloadKey2, 0x11f
makesyscall NtUnloadKeyEx, 0x120
makesyscall NtUnlockFile, 0x121
makesyscall NtUnlockVirtualMemory, 0x122
makesyscall NtVdmControl, 0x123
makesyscall NtWaitForDebugEvent, 0x124
makesyscall NtWaitForKeyedEvent, 0x125
makesyscall NtWaitHighEventPair, 0x126
makesyscall NtWaitLowEventPair, 0x127
%endif
%ifdef _XP_SP2
makesyscall NtMapUserPhysicalPagesScatter, 0x0
makesyscall NtWaitForSingleObject, 0x1
makesyscall NtCallbackReturn, 0x2
makesyscall NtReadFile, 0x3
makesyscall NtDeviceIoControlFile, 0x4
makesyscall NtWriteFile, 0x5
makesyscall NtRemoveIoCompletion, 0x6
makesyscall NtReleaseSemaphore, 0x7
makesyscall NtReplyWaitReceivePort, 0x8
makesyscall NtReplyPort, 0x9
makesyscall NtSetInformationThread, 0xa
makesyscall NtSetEvent, 0xb
makesyscall NtClose, 0xc
makesyscall NtQueryObject, 0xd
makesyscall NtQueryInformationFile, 0xe
makesyscall NtOpenKey, 0xf
makesyscall NtEnumerateValueKey, 0x10
makesyscall NtFindAtom, 0x11
makesyscall NtQueryDefaultLocale, 0x12
makesyscall NtQueryKey, 0x13
makesyscall NtQueryValueKey, 0x14
makesyscall NtAllocateVirtualMemory, 0x15
makesyscall NtQueryInformationProcess, 0x16
makesyscall NtWaitForMultipleObjects32, 0x17
makesyscall NtWriteFileGather, 0x18
makesyscall NtSetInformationProcess, 0x19
makesyscall NtCreateKey, 0x1a
makesyscall NtFreeVirtualMemory, 0x1b
makesyscall NtImpersonateClientOfPort, 0x1c
makesyscall NtReleaseMutant, 0x1d
makesyscall NtQueryInformationToken, 0x1e
makesyscall NtRequestWaitReplyPort, 0x1f
makesyscall NtQueryVirtualMemory, 0x20
makesyscall NtOpenThreadToken, 0x21
makesyscall NtQueryInformationThread, 0x22
makesyscall NtOpenProcess, 0x23
makesyscall NtSetInformationFile, 0x24
makesyscall NtMapViewOfSection, 0x25
makesyscall NtAccessCheckAndAuditAlarm, 0x26
makesyscall NtUnmapViewOfSection, 0x27
makesyscall NtReplyWaitReceivePortEx, 0x28
makesyscall NtTerminateProcess, 0x29
makesyscall NtSetEventBoostPriority, 0x2a
makesyscall NtReadFileScatter, 0x2b
makesyscall NtOpenThreadTokenEx, 0x2c
makesyscall NtOpenProcessTokenEx, 0x2d
makesyscall NtQueryPerformanceCounter, 0x2e
makesyscall NtEnumerateKey, 0x2f
makesyscall NtOpenFile, 0x30
makesyscall NtDelayExecution, 0x31
makesyscall NtQueryDirectoryFile, 0x32
makesyscall NtQuerySystemInformation, 0x33
makesyscall NtOpenSection, 0x34
makesyscall NtQueryTimer, 0x35
makesyscall NtFsControlFile, 0x36
makesyscall NtWriteVirtualMemory, 0x37
makesyscall NtCloseObjectAuditAlarm, 0x38
makesyscall NtDuplicateObject, 0x39
makesyscall NtQueryAttributesFile, 0x3a
makesyscall NtClearEvent, 0x3b
makesyscall NtReadVirtualMemory, 0x3c
makesyscall NtOpenEvent, 0x3d
makesyscall NtAdjustPrivilegesToken, 0x3e
makesyscall NtDuplicateToken, 0x3f
makesyscall NtContinue, 0x40
makesyscall NtQueryDefaultUILanguage, 0x41
makesyscall NtQueueApcThread, 0x42
makesyscall NtYieldExecution, 0x43
makesyscall NtAddAtom, 0x44
makesyscall NtCreateEvent, 0x45
makesyscall NtQueryVolumeInformationFile, 0x46
makesyscall NtCreateSection, 0x47
makesyscall NtFlushBuffersFile, 0x48
makesyscall NtApphelpCacheControl, 0x49
makesyscall NtCreateProcessEx, 0x4a
makesyscall NtCreateThread, 0x4b
makesyscall NtIsProcessInJob, 0x4c
makesyscall NtProtectVirtualMemory, 0x4d
makesyscall NtQuerySection, 0x4e
makesyscall NtResumeThread, 0x4f
makesyscall NtTerminateThread, 0x50
makesyscall NtReadRequestData, 0x51
makesyscall NtCreateFile, 0x52
makesyscall NtQueryEvent, 0x53
makesyscall NtWriteRequestData, 0x54
makesyscall NtOpenDirectoryObject, 0x55
makesyscall NtAccessCheckByTypeAndAuditAlarm, 0x56
makesyscall NtQuerySystemTime, 0x57
makesyscall NtWaitForMultipleObjects, 0x58
makesyscall NtSetInformationObject, 0x59
makesyscall NtCancelIoFile, 0x5a
makesyscall NtTraceEvent, 0x5b
makesyscall NtPowerInformation, 0x5c
makesyscall NtSetValueKey, 0x5d
makesyscall NtCancelTimer, 0x5e
makesyscall NtSetTimer, 0x5f
makesyscall NtAcceptConnectPort, 0x60
makesyscall NtAccessCheck, 0x61
makesyscall NtAccessCheckByType, 0x62
makesyscall NtAccessCheckByTypeResultList, 0x63
makesyscall NtAccessCheckByTypeResultListAndAuditAlarm, 0x64
makesyscall NtAccessCheckByTypeResultListAndAuditAlarmByHandle, 0x65
makesyscall NtAddBootEntry, 0x66
makesyscall NtAddDriverEntry, 0x67
makesyscall NtAdjustGroupsToken, 0x68
makesyscall NtAlertResumeThread, 0x69
makesyscall NtAlertThread, 0x6a
makesyscall NtAllocateLocallyUniqueId, 0x6b
makesyscall NtAllocateUserPhysicalPages, 0x6c
makesyscall NtAllocateUuids, 0x6d
makesyscall NtAreMappedFilesTheSame, 0x6e
makesyscall NtAssignProcessToJobObject, 0x6f
makesyscall NtCancelDeviceWakeupRequest, 0x70
makesyscall NtCompactKeys, 0x71
makesyscall NtCompareTokens, 0x72
makesyscall NtCompleteConnectPort, 0x73
makesyscall NtCompressKey, 0x74
makesyscall NtConnectPort, 0x75
makesyscall NtCreateDebugObject, 0x76
makesyscall NtCreateDirectoryObject, 0x77
makesyscall NtCreateEventPair, 0x78
makesyscall NtCreateIoCompletion, 0x79
makesyscall NtCreateJobObject, 0x7a
makesyscall NtCreateJobSet, 0x7b
makesyscall NtCreateKeyedEvent, 0x7c
makesyscall NtCreateMailslotFile, 0x7d
makesyscall NtCreateMutant, 0x7e
makesyscall NtCreateNamedPipeFile, 0x7f
makesyscall NtCreatePagingFile, 0x80
makesyscall NtCreatePort, 0x81
makesyscall NtCreateProcess, 0x82
makesyscall NtCreateProfile, 0x83
makesyscall NtCreateSemaphore, 0x84
makesyscall NtCreateSymbolicLinkObject, 0x85
makesyscall NtCreateTimer, 0x86
makesyscall NtCreateToken, 0x87
makesyscall NtCreateWaitablePort, 0x88
makesyscall NtDebugActiveProcess, 0x89
makesyscall NtDebugContinue, 0x8a
makesyscall NtDeleteAtom, 0x8b
makesyscall NtDeleteBootEntry, 0x8c
makesyscall NtDeleteDriverEntry, 0x8d
makesyscall NtDeleteFile, 0x8e
makesyscall NtDeleteKey, 0x8f
makesyscall NtDeleteObjectAuditAlarm, 0x90
makesyscall NtDeleteValueKey, 0x91
makesyscall NtDisplayString, 0x92
makesyscall NtEnumerateBootEntries, 0x93
makesyscall NtEnumerateDriverEntries, 0x94
makesyscall NtEnumerateSystemEnvironmentValuesEx, 0x95
makesyscall NtExtendSection, 0x96
makesyscall NtFilterToken, 0x97
makesyscall NtFlushInstructionCache, 0x98
makesyscall NtFlushKey, 0x99
makesyscall NtFlushVirtualMemory, 0x9a
makesyscall NtFlushWriteBuffer, 0x9b
makesyscall NtFreeUserPhysicalPages, 0x9c
makesyscall NtGetContextThread, 0x9d
makesyscall NtGetCurrentProcessorNumber, 0x9e
makesyscall NtGetDevicePowerState, 0x9f
makesyscall NtGetPlugPlayEvent, 0xa0
makesyscall NtGetWriteWatch, 0xa1
makesyscall NtImpersonateAnonymousToken, 0xa2
makesyscall NtImpersonateThread, 0xa3
makesyscall NtInitializeRegistry, 0xa4
makesyscall NtInitiatePowerAction, 0xa5
makesyscall NtIsSystemResumeAutomatic, 0xa6
makesyscall NtListenPort, 0xa7
makesyscall NtLoadDriver, 0xa8
makesyscall NtLoadKey, 0xa9
makesyscall NtLoadKey2, 0xaa
makesyscall NtLoadKeyEx, 0xab
makesyscall NtLockFile, 0xac
makesyscall NtLockProductActivationKeys, 0xad
makesyscall NtLockRegistryKey, 0xae
makesyscall NtLockVirtualMemory, 0xaf
makesyscall NtMakePermanentObject, 0xb0
makesyscall NtMakeTemporaryObject, 0xb1
makesyscall NtMapUserPhysicalPages, 0xb2
makesyscall NtModifyBootEntry, 0xb3
makesyscall NtModifyDriverEntry, 0xb4
makesyscall NtNotifyChangeDirectoryFile, 0xb5
makesyscall NtNotifyChangeKey, 0xb6
makesyscall NtNotifyChangeMultipleKeys, 0xb7
makesyscall NtOpenEventPair, 0xb8
makesyscall NtOpenIoCompletion, 0xb9
makesyscall NtOpenJobObject, 0xba
makesyscall NtOpenKeyedEvent, 0xbb
makesyscall NtOpenMutant, 0xbc
makesyscall NtOpenObjectAuditAlarm, 0xbd
makesyscall NtOpenProcessToken, 0xbe
makesyscall NtOpenSemaphore, 0xbf
makesyscall NtOpenSymbolicLinkObject, 0xc0
makesyscall NtOpenThread, 0xc1
makesyscall NtOpenTimer, 0xc2
makesyscall NtPlugPlayControl, 0xc3
makesyscall NtPrivilegeCheck, 0xc4
makesyscall NtPrivilegeObjectAuditAlarm, 0xc5
makesyscall NtPrivilegedServiceAuditAlarm, 0xc6
makesyscall NtPulseEvent, 0xc7
makesyscall NtQueryBootEntryOrder, 0xc8
makesyscall NtQueryBootOptions, 0xc9
makesyscall NtQueryDebugFilterState, 0xca
makesyscall NtQueryDirectoryObject, 0xcb
makesyscall NtQueryDriverEntryOrder, 0xcc
makesyscall NtQueryEaFile, 0xcd
makesyscall NtQueryFullAttributesFile, 0xce
makesyscall NtQueryInformationAtom, 0xcf
makesyscall NtQueryInformationJobObject, 0xd0
makesyscall NtQueryInformationPort, 0xd1
makesyscall NtQueryInstallUILanguage, 0xd2
makesyscall NtQueryIntervalProfile, 0xd3
makesyscall NtQueryIoCompletion, 0xd4
makesyscall NtQueryMultipleValueKey, 0xd5
makesyscall NtQueryMutant, 0xd6
makesyscall NtQueryOpenSubKeys, 0xd7
makesyscall NtQueryOpenSubKeysEx, 0xd8
makesyscall NtQueryPortInformationProcess, 0xd9
makesyscall NtQueryQuotaInformationFile, 0xda
makesyscall NtQuerySecurityObject, 0xdb
makesyscall NtQuerySemaphore, 0xdc
makesyscall NtQuerySymbolicLinkObject, 0xdd
makesyscall NtQuerySystemEnvironmentValue, 0xde
makesyscall NtQuerySystemEnvironmentValueEx, 0xdf
makesyscall NtQueryTimerResolution, 0xe0
makesyscall NtRaiseException, 0xe1
makesyscall NtRaiseHardError, 0xe2
makesyscall NtRegisterThreadTerminatePort, 0xe3
makesyscall NtReleaseKeyedEvent, 0xe4
makesyscall NtRemoveProcessDebug, 0xe5
makesyscall NtRenameKey, 0xe6
makesyscall NtReplaceKey, 0xe7
makesyscall NtReplyWaitReplyPort, 0xe8
makesyscall NtRequestDeviceWakeup, 0xe9
makesyscall NtRequestPort, 0xea
makesyscall NtRequestWakeupLatency, 0xeb
makesyscall NtResetEvent, 0xec
makesyscall NtResetWriteWatch, 0xed
makesyscall NtRestoreKey, 0xee
makesyscall NtResumeProcess, 0xef
makesyscall NtSaveKey, 0xf0
makesyscall NtSaveKeyEx, 0xf1
makesyscall NtSaveMergedKeys, 0xf2
makesyscall NtSecureConnectPort, 0xf3
makesyscall NtSetBootEntryOrder, 0xf4
makesyscall NtSetBootOptions, 0xf5
makesyscall NtSetContextThread, 0xf6
makesyscall NtSetDebugFilterState, 0xf7
makesyscall NtSetDefaultHardErrorPort, 0xf8
makesyscall NtSetDefaultLocale, 0xf9
makesyscall NtSetDefaultUILanguage, 0xfa
makesyscall NtSetDriverEntryOrder, 0xfb
makesyscall NtSetEaFile, 0xfc
makesyscall NtSetHighEventPair, 0xfd
makesyscall NtSetHighWaitLowEventPair, 0xfe
makesyscall NtSetInformationDebugObject, 0xff
makesyscall NtSetInformationJobObject, 0x100
makesyscall NtSetInformationKey, 0x101
makesyscall NtSetInformationToken, 0x102
makesyscall NtSetIntervalProfile, 0x103
makesyscall NtSetIoCompletion, 0x104
makesyscall NtSetLdtEntries, 0x105
makesyscall NtSetLowEventPair, 0x106
makesyscall NtSetLowWaitHighEventPair, 0x107
makesyscall NtSetQuotaInformationFile, 0x108
makesyscall NtSetSecurityObject, 0x109
makesyscall NtSetSystemEnvironmentValue, 0x10a
makesyscall NtSetSystemEnvironmentValueEx, 0x10b
makesyscall NtSetSystemInformation, 0x10c
makesyscall NtSetSystemPowerState, 0x10d
makesyscall NtSetSystemTime, 0x10e
makesyscall NtSetThreadExecutionState, 0x10f
makesyscall NtSetTimerResolution, 0x110
makesyscall NtSetUuidSeed, 0x111
makesyscall NtSetVolumeInformationFile, 0x112
makesyscall NtShutdownSystem, 0x113
makesyscall NtSignalAndWaitForSingleObject, 0x114
makesyscall NtStartProfile, 0x115
makesyscall NtStopProfile, 0x116
makesyscall NtSuspendProcess, 0x117
makesyscall NtSuspendThread, 0x118
makesyscall NtSystemDebugControl, 0x119
makesyscall NtTerminateJobObject, 0x11a
makesyscall NtTestAlert, 0x11b
makesyscall NtTranslateFilePath, 0x11c
makesyscall NtUnloadDriver, 0x11d
makesyscall NtUnloadKey, 0x11e
makesyscall NtUnloadKey2, 0x11f
makesyscall NtUnloadKeyEx, 0x120
makesyscall NtUnlockFile, 0x121
makesyscall NtUnlockVirtualMemory, 0x122
makesyscall NtVdmControl, 0x123
makesyscall NtWaitForDebugEvent, 0x124
makesyscall NtWaitForKeyedEvent, 0x125
makesyscall NtWaitHighEventPair, 0x126
makesyscall NtWaitLowEventPair, 0x127
%endif
%ifdef _Server_2003_SP0
makesyscall NtMapUserPhysicalPagesScatter, 0x0
makesyscall NtWaitForSingleObject, 0x1
makesyscall NtCallbackReturn, 0x2
makesyscall NtReadFile, 0x3
makesyscall NtDeviceIoControlFile, 0x4
makesyscall NtWriteFile, 0x5
makesyscall NtRemoveIoCompletion, 0x6
makesyscall NtReleaseSemaphore, 0x7
makesyscall NtReplyWaitReceivePort, 0x8
makesyscall NtReplyPort, 0x9
makesyscall NtSetInformationThread, 0xa
makesyscall NtSetEvent, 0xb
makesyscall NtClose, 0xc
makesyscall NtQueryObject, 0xd
makesyscall NtQueryInformationFile, 0xe
makesyscall NtOpenKey, 0xf
makesyscall NtEnumerateValueKey, 0x10
makesyscall NtFindAtom, 0x11
makesyscall NtQueryDefaultLocale, 0x12
makesyscall NtQueryKey, 0x13
makesyscall NtQueryValueKey, 0x14
makesyscall NtAllocateVirtualMemory, 0x15
makesyscall NtQueryInformationProcess, 0x16
makesyscall NtWaitForMultipleObjects32, 0x17
makesyscall NtWriteFileGather, 0x18
makesyscall NtSetInformationProcess, 0x19
makesyscall NtCreateKey, 0x1a
makesyscall NtFreeVirtualMemory, 0x1b
makesyscall NtImpersonateClientOfPort, 0x1c
makesyscall NtReleaseMutant, 0x1d
makesyscall NtQueryInformationToken, 0x1e
makesyscall NtRequestWaitReplyPort, 0x1f
makesyscall NtQueryVirtualMemory, 0x20
makesyscall NtOpenThreadToken, 0x21
makesyscall NtQueryInformationThread, 0x22
makesyscall NtOpenProcess, 0x23
makesyscall NtSetInformationFile, 0x24
makesyscall NtMapViewOfSection, 0x25
makesyscall NtAccessCheckAndAuditAlarm, 0x26
makesyscall NtUnmapViewOfSection, 0x27
makesyscall NtReplyWaitReceivePortEx, 0x28
makesyscall NtTerminateProcess, 0x29
makesyscall NtSetEventBoostPriority, 0x2a
makesyscall NtReadFileScatter, 0x2b
makesyscall NtOpenThreadTokenEx, 0x2c
makesyscall NtOpenProcessTokenEx, 0x2d
makesyscall NtQueryPerformanceCounter, 0x2e
makesyscall NtEnumerateKey, 0x2f
makesyscall NtOpenFile, 0x30
makesyscall NtDelayExecution, 0x31
makesyscall NtQueryDirectoryFile, 0x32
makesyscall NtQuerySystemInformation, 0x33
makesyscall NtOpenSection, 0x34
makesyscall NtQueryTimer, 0x35
makesyscall NtFsControlFile, 0x36
makesyscall NtWriteVirtualMemory, 0x37
makesyscall NtCloseObjectAuditAlarm, 0x38
makesyscall NtDuplicateObject, 0x39
makesyscall NtQueryAttributesFile, 0x3a
makesyscall NtClearEvent, 0x3b
makesyscall NtReadVirtualMemory, 0x3c
makesyscall NtOpenEvent, 0x3d
makesyscall NtAdjustPrivilegesToken, 0x3e
makesyscall NtDuplicateToken, 0x3f
makesyscall NtContinue, 0x40
makesyscall NtQueryDefaultUILanguage, 0x41
makesyscall NtQueueApcThread, 0x42
makesyscall NtYieldExecution, 0x43
makesyscall NtAddAtom, 0x44
makesyscall NtCreateEvent, 0x45
makesyscall NtQueryVolumeInformationFile, 0x46
makesyscall NtCreateSection, 0x47
makesyscall NtFlushBuffersFile, 0x48
makesyscall NtApphelpCacheControl, 0x49
makesyscall NtCreateProcessEx, 0x4a
makesyscall NtCreateThread, 0x4b
makesyscall NtIsProcessInJob, 0x4c
makesyscall NtProtectVirtualMemory, 0x4d
makesyscall NtQuerySection, 0x4e
makesyscall NtResumeThread, 0x4f
makesyscall NtTerminateThread, 0x50
makesyscall NtReadRequestData, 0x51
makesyscall NtCreateFile, 0x52
makesyscall NtQueryEvent, 0x53
makesyscall NtWriteRequestData, 0x54
makesyscall NtOpenDirectoryObject, 0x55
makesyscall NtAccessCheckByTypeAndAuditAlarm, 0x56
makesyscall NtQuerySystemTime, 0x57
makesyscall NtWaitForMultipleObjects, 0x58
makesyscall NtSetInformationObject, 0x59
makesyscall NtCancelIoFile, 0x5a
makesyscall NtTraceEvent, 0x5b
makesyscall NtPowerInformation, 0x5c
makesyscall NtSetValueKey, 0x5d
makesyscall NtCancelTimer, 0x5e
makesyscall NtSetTimer, 0x5f
makesyscall NtAcceptConnectPort, 0x60
makesyscall NtAccessCheck, 0x61
makesyscall NtAccessCheckByType, 0x62
makesyscall NtAccessCheckByTypeResultList, 0x63
makesyscall NtAccessCheckByTypeResultListAndAuditAlarm, 0x64
makesyscall NtAccessCheckByTypeResultListAndAuditAlarmByHandle, 0x65
makesyscall NtAddBootEntry, 0x66
makesyscall NtAddDriverEntry, 0x67
makesyscall NtAdjustGroupsToken, 0x68
makesyscall NtAlertResumeThread, 0x69
makesyscall NtAlertThread, 0x6a
makesyscall NtAllocateLocallyUniqueId, 0x6b
makesyscall NtAllocateUserPhysicalPages, 0x6c
makesyscall NtAllocateUuids, 0x6d
makesyscall NtAreMappedFilesTheSame, 0x6e
makesyscall NtAssignProcessToJobObject, 0x6f
makesyscall NtCancelDeviceWakeupRequest, 0x70
makesyscall NtCompactKeys, 0x71
makesyscall NtCompareTokens, 0x72
makesyscall NtCompleteConnectPort, 0x73
makesyscall NtCompressKey, 0x74
makesyscall NtConnectPort, 0x75
makesyscall NtCreateDebugObject, 0x76
makesyscall NtCreateDirectoryObject, 0x77
makesyscall NtCreateEventPair, 0x78
makesyscall NtCreateIoCompletion, 0x79
makesyscall NtCreateJobObject, 0x7a
makesyscall NtCreateJobSet, 0x7b
makesyscall NtCreateKeyedEvent, 0x7c
makesyscall NtCreateMailslotFile, 0x7d
makesyscall NtCreateMutant, 0x7e
makesyscall NtCreateNamedPipeFile, 0x7f
makesyscall NtCreatePagingFile, 0x80
makesyscall NtCreatePort, 0x81
makesyscall NtCreateProcess, 0x82
makesyscall NtCreateProfile, 0x83
makesyscall NtCreateSemaphore, 0x84
makesyscall NtCreateSymbolicLinkObject, 0x85
makesyscall NtCreateTimer, 0x86
makesyscall NtCreateToken, 0x87
makesyscall NtCreateWaitablePort, 0x88
makesyscall NtDebugActiveProcess, 0x89
makesyscall NtDebugContinue, 0x8a
makesyscall NtDeleteAtom, 0x8b
makesyscall NtDeleteBootEntry, 0x8c
makesyscall NtDeleteDriverEntry, 0x8d
makesyscall NtDeleteFile, 0x8e
makesyscall NtDeleteKey, 0x8f
makesyscall NtDeleteObjectAuditAlarm, 0x90
makesyscall NtDeleteValueKey, 0x91
makesyscall NtDisplayString, 0x92
makesyscall NtEnumerateBootEntries, 0x93
makesyscall NtEnumerateDriverEntries, 0x94
makesyscall NtEnumerateSystemEnvironmentValuesEx, 0x95
makesyscall NtExtendSection, 0x96
makesyscall NtFilterToken, 0x97
makesyscall NtFlushInstructionCache, 0x98
makesyscall NtFlushKey, 0x99
makesyscall NtFlushVirtualMemory, 0x9a
makesyscall NtFlushWriteBuffer, 0x9b
makesyscall NtFreeUserPhysicalPages, 0x9c
makesyscall NtGetContextThread, 0x9d
makesyscall NtGetCurrentProcessorNumber, 0x9e
makesyscall NtGetDevicePowerState, 0x9f
makesyscall NtGetPlugPlayEvent, 0xa0
makesyscall NtGetWriteWatch, 0xa1
makesyscall NtImpersonateAnonymousToken, 0xa2
makesyscall NtImpersonateThread, 0xa3
makesyscall NtInitializeRegistry, 0xa4
makesyscall NtInitiatePowerAction, 0xa5
makesyscall NtIsSystemResumeAutomatic, 0xa6
makesyscall NtListenPort, 0xa7
makesyscall NtLoadDriver, 0xa8
makesyscall NtLoadKey, 0xa9
makesyscall NtLoadKey2, 0xaa
makesyscall NtLoadKeyEx, 0xab
makesyscall NtLockFile, 0xac
makesyscall NtLockProductActivationKeys, 0xad
makesyscall NtLockRegistryKey, 0xae
makesyscall NtLockVirtualMemory, 0xaf
makesyscall NtMakePermanentObject, 0xb0
makesyscall NtMakeTemporaryObject, 0xb1
makesyscall NtMapUserPhysicalPages, 0xb2
makesyscall NtModifyBootEntry, 0xb3
makesyscall NtModifyDriverEntry, 0xb4
makesyscall NtNotifyChangeDirectoryFile, 0xb5
makesyscall NtNotifyChangeKey, 0xb6
makesyscall NtNotifyChangeMultipleKeys, 0xb7
makesyscall NtOpenEventPair, 0xb8
makesyscall NtOpenIoCompletion, 0xb9
makesyscall NtOpenJobObject, 0xba
makesyscall NtOpenKeyedEvent, 0xbb
makesyscall NtOpenMutant, 0xbc
makesyscall NtOpenObjectAuditAlarm, 0xbd
makesyscall NtOpenProcessToken, 0xbe
makesyscall NtOpenSemaphore, 0xbf
makesyscall NtOpenSymbolicLinkObject, 0xc0
makesyscall NtOpenThread, 0xc1
makesyscall NtOpenTimer, 0xc2
makesyscall NtPlugPlayControl, 0xc3
makesyscall NtPrivilegeCheck, 0xc4
makesyscall NtPrivilegeObjectAuditAlarm, 0xc5
makesyscall NtPrivilegedServiceAuditAlarm, 0xc6
makesyscall NtPulseEvent, 0xc7
makesyscall NtQueryBootEntryOrder, 0xc8
makesyscall NtQueryBootOptions, 0xc9
makesyscall NtQueryDebugFilterState, 0xca
makesyscall NtQueryDirectoryObject, 0xcb
makesyscall NtQueryDriverEntryOrder, 0xcc
makesyscall NtQueryEaFile, 0xcd
makesyscall NtQueryFullAttributesFile, 0xce
makesyscall NtQueryInformationAtom, 0xcf
makesyscall NtQueryInformationJobObject, 0xd0
makesyscall NtQueryInformationPort, 0xd1
makesyscall NtQueryInstallUILanguage, 0xd2
makesyscall NtQueryIntervalProfile, 0xd3
makesyscall NtQueryIoCompletion, 0xd4
makesyscall NtQueryMultipleValueKey, 0xd5
makesyscall NtQueryMutant, 0xd6
makesyscall NtQueryOpenSubKeys, 0xd7
makesyscall NtQueryOpenSubKeysEx, 0xd8
makesyscall NtQueryPortInformationProcess, 0xd9
makesyscall NtQueryQuotaInformationFile, 0xda
makesyscall NtQuerySecurityObject, 0xdb
makesyscall NtQuerySemaphore, 0xdc
makesyscall NtQuerySymbolicLinkObject, 0xdd
makesyscall NtQuerySystemEnvironmentValue, 0xde
makesyscall NtQuerySystemEnvironmentValueEx, 0xdf
makesyscall NtQueryTimerResolution, 0xe0
makesyscall NtRaiseException, 0xe1
makesyscall NtRaiseHardError, 0xe2
makesyscall NtRegisterThreadTerminatePort, 0xe3
makesyscall NtReleaseKeyedEvent, 0xe4
makesyscall NtRemoveProcessDebug, 0xe5
makesyscall NtRenameKey, 0xe6
makesyscall NtReplaceKey, 0xe7
makesyscall NtReplyWaitReplyPort, 0xe8
makesyscall NtRequestDeviceWakeup, 0xe9
makesyscall NtRequestPort, 0xea
makesyscall NtRequestWakeupLatency, 0xeb
makesyscall NtResetEvent, 0xec
makesyscall NtResetWriteWatch, 0xed
makesyscall NtRestoreKey, 0xee
makesyscall NtResumeProcess, 0xef
makesyscall NtSaveKey, 0xf0
makesyscall NtSaveKeyEx, 0xf1
makesyscall NtSaveMergedKeys, 0xf2
makesyscall NtSecureConnectPort, 0xf3
makesyscall NtSetBootEntryOrder, 0xf4
makesyscall NtSetBootOptions, 0xf5
makesyscall NtSetContextThread, 0xf6
makesyscall NtSetDebugFilterState, 0xf7
makesyscall NtSetDefaultHardErrorPort, 0xf8
makesyscall NtSetDefaultLocale, 0xf9
makesyscall NtSetDefaultUILanguage, 0xfa
makesyscall NtSetDriverEntryOrder, 0xfb
makesyscall NtSetEaFile, 0xfc
makesyscall NtSetHighEventPair, 0xfd
makesyscall NtSetHighWaitLowEventPair, 0xfe
makesyscall NtSetInformationDebugObject, 0xff
makesyscall NtSetInformationJobObject, 0x100
makesyscall NtSetInformationKey, 0x101
makesyscall NtSetInformationToken, 0x102
makesyscall NtSetIntervalProfile, 0x103
makesyscall NtSetIoCompletion, 0x104
makesyscall NtSetLdtEntries, 0x105
makesyscall NtSetLowEventPair, 0x106
makesyscall NtSetLowWaitHighEventPair, 0x107
makesyscall NtSetQuotaInformationFile, 0x108
makesyscall NtSetSecurityObject, 0x109
makesyscall NtSetSystemEnvironmentValue, 0x10a
makesyscall NtSetSystemEnvironmentValueEx, 0x10b
makesyscall NtSetSystemInformation, 0x10c
makesyscall NtSetSystemPowerState, 0x10d
makesyscall NtSetSystemTime, 0x10e
makesyscall NtSetThreadExecutionState, 0x10f
makesyscall NtSetTimerResolution, 0x110
makesyscall NtSetUuidSeed, 0x111
makesyscall NtSetVolumeInformationFile, 0x112
makesyscall NtShutdownSystem, 0x113
makesyscall NtSignalAndWaitForSingleObject, 0x114
makesyscall NtStartProfile, 0x115
makesyscall NtStopProfile, 0x116
makesyscall NtSuspendProcess, 0x117
makesyscall NtSuspendThread, 0x118
makesyscall NtSystemDebugControl, 0x119
makesyscall NtTerminateJobObject, 0x11a
makesyscall NtTestAlert, 0x11b
makesyscall NtTranslateFilePath, 0x11c
makesyscall NtUnloadDriver, 0x11d
makesyscall NtUnloadKey, 0x11e
makesyscall NtUnloadKey2, 0x11f
makesyscall NtUnloadKeyEx, 0x120
makesyscall NtUnlockFile, 0x121
makesyscall NtUnlockVirtualMemory, 0x122
makesyscall NtVdmControl, 0x123
makesyscall NtWaitForDebugEvent, 0x124
makesyscall NtWaitForKeyedEvent, 0x125
makesyscall NtWaitHighEventPair, 0x126
makesyscall NtWaitLowEventPair, 0x127
%endif
%ifdef _Server_2003_SP2
makesyscall NtMapUserPhysicalPagesScatter, 0x0
makesyscall NtWaitForSingleObject, 0x1
makesyscall NtCallbackReturn, 0x2
makesyscall NtReadFile, 0x3
makesyscall NtDeviceIoControlFile, 0x4
makesyscall NtWriteFile, 0x5
makesyscall NtRemoveIoCompletion, 0x6
makesyscall NtReleaseSemaphore, 0x7
makesyscall NtReplyWaitReceivePort, 0x8
makesyscall NtReplyPort, 0x9
makesyscall NtSetInformationThread, 0xa
makesyscall NtSetEvent, 0xb
makesyscall NtClose, 0xc
makesyscall NtQueryObject, 0xd
makesyscall NtQueryInformationFile, 0xe
makesyscall NtOpenKey, 0xf
makesyscall NtEnumerateValueKey, 0x10
makesyscall NtFindAtom, 0x11
makesyscall NtQueryDefaultLocale, 0x12
makesyscall NtQueryKey, 0x13
makesyscall NtQueryValueKey, 0x14
makesyscall NtAllocateVirtualMemory, 0x15
makesyscall NtQueryInformationProcess, 0x16
makesyscall NtWaitForMultipleObjects32, 0x17
makesyscall NtWriteFileGather, 0x18
makesyscall NtSetInformationProcess, 0x19
makesyscall NtCreateKey, 0x1a
makesyscall NtFreeVirtualMemory, 0x1b
makesyscall NtImpersonateClientOfPort, 0x1c
makesyscall NtReleaseMutant, 0x1d
makesyscall NtQueryInformationToken, 0x1e
makesyscall NtRequestWaitReplyPort, 0x1f
makesyscall NtQueryVirtualMemory, 0x20
makesyscall NtOpenThreadToken, 0x21
makesyscall NtQueryInformationThread, 0x22
makesyscall NtOpenProcess, 0x23
makesyscall NtSetInformationFile, 0x24
makesyscall NtMapViewOfSection, 0x25
makesyscall NtAccessCheckAndAuditAlarm, 0x26
makesyscall NtUnmapViewOfSection, 0x27
makesyscall NtReplyWaitReceivePortEx, 0x28
makesyscall NtTerminateProcess, 0x29
makesyscall NtSetEventBoostPriority, 0x2a
makesyscall NtReadFileScatter, 0x2b
makesyscall NtOpenThreadTokenEx, 0x2c
makesyscall NtOpenProcessTokenEx, 0x2d
makesyscall NtQueryPerformanceCounter, 0x2e
makesyscall NtEnumerateKey, 0x2f
makesyscall NtOpenFile, 0x30
makesyscall NtDelayExecution, 0x31
makesyscall NtQueryDirectoryFile, 0x32
makesyscall NtQuerySystemInformation, 0x33
makesyscall NtOpenSection, 0x34
makesyscall NtQueryTimer, 0x35
makesyscall NtFsControlFile, 0x36
makesyscall NtWriteVirtualMemory, 0x37
makesyscall NtCloseObjectAuditAlarm, 0x38
makesyscall NtDuplicateObject, 0x39
makesyscall NtQueryAttributesFile, 0x3a
makesyscall NtClearEvent, 0x3b
makesyscall NtReadVirtualMemory, 0x3c
makesyscall NtOpenEvent, 0x3d
makesyscall NtAdjustPrivilegesToken, 0x3e
makesyscall NtDuplicateToken, 0x3f
makesyscall NtContinue, 0x40
makesyscall NtQueryDefaultUILanguage, 0x41
makesyscall NtQueueApcThread, 0x42
makesyscall NtYieldExecution, 0x43
makesyscall NtAddAtom, 0x44
makesyscall NtCreateEvent, 0x45
makesyscall NtQueryVolumeInformationFile, 0x46
makesyscall NtCreateSection, 0x47
makesyscall NtFlushBuffersFile, 0x48
makesyscall NtApphelpCacheControl, 0x49
makesyscall NtCreateProcessEx, 0x4a
makesyscall NtCreateThread, 0x4b
makesyscall NtIsProcessInJob, 0x4c
makesyscall NtProtectVirtualMemory, 0x4d
makesyscall NtQuerySection, 0x4e
makesyscall NtResumeThread, 0x4f
makesyscall NtTerminateThread, 0x50
makesyscall NtReadRequestData, 0x51
makesyscall NtCreateFile, 0x52
makesyscall NtQueryEvent, 0x53
makesyscall NtWriteRequestData, 0x54
makesyscall NtOpenDirectoryObject, 0x55
makesyscall NtAccessCheckByTypeAndAuditAlarm, 0x56
makesyscall NtQuerySystemTime, 0x57
makesyscall NtWaitForMultipleObjects, 0x58
makesyscall NtSetInformationObject, 0x59
makesyscall NtCancelIoFile, 0x5a
makesyscall NtTraceEvent, 0x5b
makesyscall NtPowerInformation, 0x5c