forked from HyperDbg/gui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
win32u.txt
1458 lines (1458 loc) · 137 KB
/
win32u.txt
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
Windows 11 v10.0.22621.1928
┌──────┬─────────────────────────────────────────────────────────┬────────────────────┐
│ Id │ Name │ Index │
├──────┼─────────────────────────────────────────────────────────┼────────────────────┤
│ 1 │ NtUserGetThreadState │ 0x00000000, //0 │
│ 2 │ NtUserPeekMessage │ 0x00000001, //1 │
│ 3 │ NtUserGetKeyState │ 0x00000002, //2 │
│ 4 │ NtUserInvalidateRect │ 0x00000003, //3 │
│ 5 │ NtUserGetMessage │ 0x00000004, //4 │
│ 6 │ NtUserMessageCall │ 0x00000005, //5 │
│ 7 │ NtGdiBitBlt │ 0x00000006, //6 │
│ 8 │ NtGdiGetCharSet │ 0x00000007, //7 │
│ 9 │ NtUserGetDC │ 0x00000008, //8 │
│ 10 │ NtGdiSelectBitmap │ 0x00000009, //9 │
│ 11 │ NtUserWaitMessage │ 0x0000000A, //10 │
│ 12 │ NtUserTranslateMessage │ 0x0000000B, //11 │
│ 13 │ NtUserGetProp │ 0x0000000C, //12 │
│ 14 │ NtUserPostMessage │ 0x0000000D, //13 │
│ 15 │ NtUserQueryWindow │ 0x0000000E, //14 │
│ 16 │ NtUserTranslateAccelerator │ 0x0000000F, //15 │
│ 17 │ NtGdiFlush │ 0x00000010, //16 │
│ 18 │ NtUserRedrawWindow │ 0x00000011, //17 │
│ 19 │ NtUserWindowFromPoint │ 0x00000012, //18 │
│ 20 │ NtUserCallMsgFilter │ 0x00000013, //19 │
│ 21 │ NtUserValidateTimerCallback │ 0x00000014, //20 │
│ 22 │ NtUserBeginPaint │ 0x00000015, //21 │
│ 23 │ NtUserSetTimer │ 0x00000016, //22 │
│ 24 │ NtUserEndPaint │ 0x00000017, //23 │
│ 25 │ NtUserSetCursor │ 0x00000018, //24 │
│ 26 │ NtUserKillTimer │ 0x00000019, //25 │
│ 27 │ NtUserBuildHwndList │ 0x0000001A, //26 │
│ 28 │ NtUserSelectPalette │ 0x0000001B, //27 │
│ 29 │ NtUserCallNextHookEx │ 0x0000001C, //28 │
│ 30 │ NtUserHideCaret │ 0x0000001D, //29 │
│ 31 │ NtGdiIntersectClipRect │ 0x0000001E, //30 │
│ 32 │ NtUserGetProcessWindowStation │ 0x0000001F, //31 │
│ 33 │ NtGdiDeleteObjectApp │ 0x00000020, //32 │
│ 34 │ NtUserSetWindowPos │ 0x00000021, //33 │
│ 35 │ NtUserShowCaret │ 0x00000022, //34 │
│ 36 │ NtUserEndDeferWindowPosEx │ 0x00000023, //35 │
│ 37 │ NtUserVkKeyScanEx │ 0x00000024, //36 │
│ 38 │ NtGdiSetDIBitsToDeviceInternal │ 0x00000025, //37 │
│ 39 │ NtGdiGetRandomRgn │ 0x00000026, //38 │
│ 40 │ NtUserCopyAcceleratorTable │ 0x00000027, //39 │
│ 41 │ NtUserNotifyWinEvent │ 0x00000028, //40 │
│ 42 │ NtGdiExtSelectClipRgn │ 0x00000029, //41 │
│ 43 │ NtUserIsClipboardFormatAvailable │ 0x0000002A, //42 │
│ 44 │ NtUserSetScrollInfo │ 0x0000002B, //43 │
│ 45 │ NtGdiStretchBlt │ 0x0000002C, //44 │
│ 46 │ NtUserCreateCaret │ 0x0000002D, //45 │
│ 47 │ NtGdiRectVisible │ 0x0000002E, //46 │
│ 48 │ NtGdiCombineRgn │ 0x0000002F, //47 │
│ 49 │ NtGdiGetDCObject │ 0x00000030, //48 │
│ 50 │ NtUserDispatchMessage │ 0x00000031, //49 │
│ 51 │ NtUserRegisterWindowMessage │ 0x00000032, //50 │
│ 52 │ NtGdiExtTextOutW │ 0x00000033, //51 │
│ 53 │ NtGdiSelectFont │ 0x00000034, //52 │
│ 54 │ NtGdiRestoreDC │ 0x00000035, //53 │
│ 55 │ NtGdiSaveDC │ 0x00000036, //54 │
│ 56 │ NtUserGetForegroundWindow │ 0x00000037, //55 │
│ 57 │ NtUserShowScrollBar │ 0x00000038, //56 │
│ 58 │ NtUserFindExistingCursorIcon │ 0x00000039, //57 │
│ 59 │ NtGdiGetDCDword │ 0x0000003A, //58 │
│ 60 │ NtGdiGetRegionData │ 0x0000003B, //59 │
│ 61 │ NtGdiLineTo │ 0x0000003C, //60 │
│ 62 │ NtUserSystemParametersInfo │ 0x0000003D, //61 │
│ 63 │ NtGdiGetAppClipBox │ 0x0000003E, //62 │
│ 64 │ NtUserGetAsyncKeyState │ 0x0000003F, //63 │
│ 65 │ NtUserGetCPD │ 0x00000040, //64 │
│ 66 │ NtUserRemoveProp │ 0x00000041, //65 │
│ 67 │ NtGdiDoPalette │ 0x00000042, //66 │
│ 68 │ NtGdiPolyPolyDraw │ 0x00000043, //67 │
│ 69 │ NtUserSetCapture │ 0x00000044, //68 │
│ 70 │ NtUserEnumDisplayMonitors │ 0x00000045, //69 │
│ 71 │ NtGdiCreateCompatibleBitmap │ 0x00000046, //70 │
│ 72 │ NtUserSetProp │ 0x00000047, //71 │
│ 73 │ NtGdiGetTextCharsetInfo │ 0x00000048, //72 │
│ 74 │ NtUserSBGetParms │ 0x00000049, //73 │
│ 75 │ NtUserGetIconInfo │ 0x0000004A, //74 │
│ 76 │ NtUserExcludeUpdateRgn │ 0x0000004B, //75 │
│ 77 │ NtUserSetFocus │ 0x0000004C, //76 │
│ 78 │ NtGdiExtGetObjectW │ 0x0000004D, //77 │
│ 79 │ NtUserGetUpdateRect │ 0x0000004E, //78 │
│ 80 │ NtGdiCreateCompatibleDC │ 0x0000004F, //79 │
│ 81 │ NtUserGetClipboardSequenceNumber │ 0x00000050, //80 │
│ 82 │ NtGdiCreatePen │ 0x00000051, //81 │
│ 83 │ NtUserShowWindow │ 0x00000052, //82 │
│ 84 │ NtUserGetKeyboardLayoutList │ 0x00000053, //83 │
│ 85 │ NtGdiPatBlt │ 0x00000054, //84 │
│ 86 │ NtUserMapVirtualKeyEx │ 0x00000055, //85 │
│ 87 │ NtUserSetWindowLong │ 0x00000056, //86 │
│ 88 │ NtGdiHfontCreate │ 0x00000057, //87 │
│ 89 │ NtUserMoveWindow │ 0x00000058, //88 │
│ 90 │ NtUserPostThreadMessage │ 0x00000059, //89 │
│ 91 │ NtUserDrawIconEx │ 0x0000005A, //90 │
│ 92 │ NtUserGetSystemMenu │ 0x0000005B, //91 │
│ 93 │ NtGdiDrawStream │ 0x0000005C, //92 │
│ 94 │ NtUserInternalGetWindowText │ 0x0000005D, //93 │
│ 95 │ NtUserGetWindowDC │ 0x0000005E, //94 │
│ 96 │ NtGdiInvertRgn │ 0x0000005F, //95 │
│ 97 │ NtGdiGetRgnBox │ 0x00000060, //96 │
│ 98 │ NtGdiGetAndSetDCDword │ 0x00000061, //97 │
│ 99 │ NtGdiMaskBlt │ 0x00000062, //98 │
│ 100 │ NtGdiGetWidthTable │ 0x00000063, //99 │
│ 101 │ NtUserScrollDC │ 0x00000064, //100 │
│ 102 │ NtUserGetObjectInformation │ 0x00000065, //101 │
│ 103 │ NtGdiCreateBitmap │ 0x00000066, //102 │
│ 104 │ NtUserFindWindowEx │ 0x00000067, //103 │
│ 105 │ NtGdiPolyPatBlt │ 0x00000068, //104 │
│ 106 │ NtUserUnhookWindowsHookEx │ 0x00000069, //105 │
│ 107 │ NtGdiGetNearestColor │ 0x0000006A, //106 │
│ 108 │ NtGdiTransformPoints │ 0x0000006B, //107 │
│ 109 │ NtGdiGetDCPoint │ 0x0000006C, //108 │
│ 110 │ NtGdiCreateDIBBrush │ 0x0000006D, //109 │
│ 111 │ NtGdiGetTextMetricsW │ 0x0000006E, //110 │
│ 112 │ NtUserCreateWindowEx │ 0x0000006F, //111 │
│ 113 │ NtUserSetParent │ 0x00000070, //112 │
│ 114 │ NtUserGetKeyboardState │ 0x00000071, //113 │
│ 115 │ NtUserToUnicodeEx │ 0x00000072, //114 │
│ 116 │ NtUserGetControlBrush │ 0x00000073, //115 │
│ 117 │ NtUserGetClassName │ 0x00000074, //116 │
│ 118 │ NtGdiAlphaBlend │ 0x00000075, //117 │
│ 119 │ NtGdiOffsetRgn │ 0x00000076, //118 │
│ 120 │ NtUserDefSetText │ 0x00000077, //119 │
│ 121 │ NtGdiGetTextFaceW │ 0x00000078, //120 │
│ 122 │ NtGdiStretchDIBitsInternal │ 0x00000079, //121 │
│ 123 │ NtUserSendInput │ 0x0000007A, //122 │
│ 124 │ NtUserGetThreadDesktop │ 0x0000007B, //123 │
│ 125 │ NtGdiCreateRectRgn │ 0x0000007C, //124 │
│ 126 │ NtGdiGetDIBitsInternal │ 0x0000007D, //125 │
│ 127 │ NtUserGetUpdateRgn │ 0x0000007E, //126 │
│ 128 │ NtGdiDeleteClientObj │ 0x0000007F, //127 │
│ 129 │ NtUserGetIconSize │ 0x00000080, //128 │
│ 130 │ NtUserFillWindow │ 0x00000081, //129 │
│ 131 │ NtGdiExtCreateRegion │ 0x00000082, //130 │
│ 132 │ NtGdiComputeXformCoefficients │ 0x00000083, //131 │
│ 133 │ NtUserSetWindowsHookEx │ 0x00000084, //132 │
│ 134 │ NtUserNotifyProcessCreate │ 0x00000085, //133 │
│ 135 │ NtGdiUnrealizeObject │ 0x00000086, //134 │
│ 136 │ NtUserGetTitleBarInfo │ 0x00000087, //135 │
│ 137 │ NtGdiRectangle │ 0x00000088, //136 │
│ 138 │ NtUserSetThreadDesktop │ 0x00000089, //137 │
│ 139 │ NtUserGetDCEx │ 0x0000008A, //138 │
│ 140 │ NtUserGetScrollBarInfo │ 0x0000008B, //139 │
│ 141 │ NtGdiGetTextExtent │ 0x0000008C, //140 │
│ 142 │ NtUserSetWindowFNID │ 0x0000008D, //141 │
│ 143 │ NtGdiSetLayout │ 0x0000008E, //142 │
│ 144 │ NtUserCalcMenuBar │ 0x0000008F, //143 │
│ 145 │ NtUserThunkedMenuItemInfo │ 0x00000090, //144 │
│ 146 │ NtGdiExcludeClipRect │ 0x00000091, //145 │
│ 147 │ NtGdiCreateDIBSection │ 0x00000092, //146 │
│ 148 │ NtGdiGetDCforBitmap │ 0x00000093, //147 │
│ 149 │ NtUserDestroyCursor │ 0x00000094, //148 │
│ 150 │ NtUserDestroyWindow │ 0x00000095, //149 │
│ 151 │ NtGdiCreateDIBitmapInternal │ 0x00000096, //150 │
│ 152 │ NtUserOpenWindowStation │ 0x00000097, //151 │
│ 153 │ NtUserSetCursorIconData │ 0x00000098, //152 │
│ 154 │ NtUserCloseDesktop │ 0x00000099, //153 │
│ 155 │ NtUserOpenDesktop │ 0x0000009A, //154 │
│ 156 │ NtUserSetProcessWindowStation │ 0x0000009B, //155 │
│ 157 │ NtUserGetAtomName │ 0x0000009C, //156 │
│ 158 │ NtGdiExtCreatePen │ 0x0000009D, //157 │
│ 159 │ NtGdiCreatePaletteInternal │ 0x0000009E, //158 │
│ 160 │ NtGdiSetBrushOrg │ 0x0000009F, //159 │
│ 161 │ NtUserBuildNameList │ 0x000000A0, //160 │
│ 162 │ NtGdiSetPixel │ 0x000000A1, //161 │
│ 163 │ NtUserRegisterClassExWOW │ 0x000000A2, //162 │
│ 164 │ NtGdiCreatePatternBrushInternal │ 0x000000A3, //163 │
│ 165 │ NtUserGetAncestor │ 0x000000A4, //164 │
│ 166 │ NtGdiGetOutlineTextMetricsInternalW │ 0x000000A5, //165 │
│ 167 │ NtGdiSetBitmapBits │ 0x000000A6, //166 │
│ 168 │ NtUserCloseWindowStation │ 0x000000A7, //167 │
│ 169 │ NtUserGetDoubleClickTime │ 0x000000A8, //168 │
│ 170 │ NtUserEnableScrollBar │ 0x000000A9, //169 │
│ 171 │ NtGdiCreateSolidBrush │ 0x000000AA, //170 │
│ 172 │ NtUserGetClassInfoEx │ 0x000000AB, //171 │
│ 173 │ NtGdiCreateClientObj │ 0x000000AC, //172 │
│ 174 │ NtUserUnregisterClass │ 0x000000AD, //173 │
│ 175 │ NtUserDeleteMenu │ 0x000000AE, //174 │
│ 176 │ NtGdiRectInRegion │ 0x000000AF, //175 │
│ 177 │ NtUserScrollWindowEx │ 0x000000B0, //176 │
│ 178 │ NtGdiGetPixel │ 0x000000B1, //177 │
│ 179 │ NtUserSetClassLong │ 0x000000B2, //178 │
│ 180 │ NtUserGetMenuBarInfo │ 0x000000B3, //179 │
│ 181 │ NtGdiGetNearestPaletteIndex │ 0x000000B4, //180 │
│ 182 │ NtGdiGetCharWidthW │ 0x000000B5, //181 │
│ 183 │ NtUserInvalidateRgn │ 0x000000B6, //182 │
│ 184 │ NtUserGetClipboardOwner │ 0x000000B7, //183 │
│ 185 │ NtUserSetWindowRgn │ 0x000000B8, //184 │
│ 186 │ NtUserBitBltSysBmp │ 0x000000B9, //185 │
│ 187 │ NtGdiGetCharWidthInfo │ 0x000000BA, //186 │
│ 188 │ NtUserValidateRect │ 0x000000BB, //187 │
│ 189 │ NtUserCloseClipboard │ 0x000000BC, //188 │
│ 190 │ NtUserOpenClipboard │ 0x000000BD, //189 │
│ 191 │ NtUserSetClipboardData │ 0x000000BE, //190 │
│ 192 │ NtUserEnableMenuItem │ 0x000000BF, //191 │
│ 193 │ NtUserAlterWindowStyle │ 0x000000C0, //192 │
│ 194 │ NtGdiFillRgn │ 0x000000C1, //193 │
│ 195 │ NtUserGetWindowPlacement │ 0x000000C2, //194 │
│ 196 │ NtGdiModifyWorldTransform │ 0x000000C3, //195 │
│ 197 │ NtGdiGetFontData │ 0x000000C4, //196 │
│ 198 │ NtUserGetOpenClipboardWindow │ 0x000000C5, //197 │
│ 199 │ NtUserSetThreadState │ 0x000000C6, //198 │
│ 200 │ NtGdiOpenDCW │ 0x000000C7, //199 │
│ 201 │ NtUserTrackMouseEvent │ 0x000000C8, //200 │
│ 202 │ NtGdiGetTransform │ 0x000000C9, //201 │
│ 203 │ NtUserDestroyMenu │ 0x000000CA, //202 │
│ 204 │ NtGdiGetBitmapBits │ 0x000000CB, //203 │
│ 205 │ NtUserConsoleControl │ 0x000000CC, //204 │
│ 206 │ NtUserSetActiveWindow │ 0x000000CD, //205 │
│ 207 │ NtUserSetInformationThread │ 0x000000CE, //206 │
│ 208 │ NtUserSetWindowPlacement │ 0x000000CF, //207 │
│ 209 │ NtUserGetControlColor │ 0x000000D0, //208 │
│ 210 │ NtGdiSetMetaRgn │ 0x000000D1, //209 │
│ 211 │ NtGdiSetMiterLimit │ 0x000000D2, //210 │
│ 212 │ NtGdiSetVirtualResolution │ 0x000000D3, //211 │
│ 213 │ NtGdiGetRasterizerCaps │ 0x000000D4, //212 │
│ 214 │ NtUserSetWindowWord │ 0x000000D5, //213 │
│ 215 │ NtUserGetClipboardFormatName │ 0x000000D6, //214 │
│ 216 │ NtUserRealInternalGetMessage │ 0x000000D7, //215 │
│ 217 │ NtUserCreateLocalMemHandle │ 0x000000D8, //216 │
│ 218 │ NtUserAttachThreadInput │ 0x000000D9, //217 │
│ 219 │ NtGdiCreateHalftonePalette │ 0x000000DA, //218 │
│ 220 │ NtUserPaintMenuBar │ 0x000000DB, //219 │
│ 221 │ NtUserSetKeyboardState │ 0x000000DC, //220 │
│ 222 │ NtGdiCombineTransform │ 0x000000DD, //221 │
│ 223 │ NtUserCreateAcceleratorTable │ 0x000000DE, //222 │
│ 224 │ NtUserGetCursorFrameInfo │ 0x000000DF, //223 │
│ 225 │ NtUserGetAltTabInfo │ 0x000000E0, //224 │
│ 226 │ NtUserGetCaretBlinkTime │ 0x000000E1, //225 │
│ 227 │ NtGdiQueryFontAssocInfo │ 0x000000E2, //226 │
│ 228 │ NtUserProcessConnect │ 0x000000E3, //227 │
│ 229 │ NtUserEnumDisplayDevices │ 0x000000E4, //228 │
│ 230 │ NtUserEmptyClipboard │ 0x000000E5, //229 │
│ 231 │ NtUserGetClipboardData │ 0x000000E6, //230 │
│ 232 │ NtUserRemoveMenu │ 0x000000E7, //231 │
│ 233 │ NtGdiSetBoundsRect │ 0x000000E8, //232 │
│ 234 │ NtGdiGetBitmapDimension │ 0x000000E9, //233 │
│ 235 │ NtUserConvertMemHandle │ 0x000000EA, //234 │
│ 236 │ NtUserDestroyAcceleratorTable │ 0x000000EB, //235 │
│ 237 │ NtUserGetGUIThreadInfo │ 0x000000EC, //236 │
│ 238 │ NtGdiCloseFigure │ 0x000000ED, //237 │
│ 239 │ NtUserSetWindowsHookAW │ 0x000000EE, //238 │
│ 240 │ NtUserSetMenuDefaultItem │ 0x000000EF, //239 │
│ 241 │ NtUserCheckMenuItem │ 0x000000F0, //240 │
│ 242 │ NtUserSetWinEventHook │ 0x000000F1, //241 │
│ 243 │ NtUserUnhookWinEvent │ 0x000000F2, //242 │
│ 244 │ NtUserLockWindowUpdate │ 0x000000F3, //243 │
│ 245 │ NtUserSetSystemMenu │ 0x000000F4, //244 │
│ 246 │ NtUserThunkedMenuInfo │ 0x000000F5, //245 │
│ 247 │ NtGdiBeginPath │ 0x000000F6, //246 │
│ 248 │ NtGdiEndPath │ 0x000000F7, //247 │
│ 249 │ NtGdiFillPath │ 0x000000F8, //248 │
│ 250 │ NtUserDdeInitialize │ 0x000000F9, //249 │
│ 251 │ NtUserModifyUserStartupInfoFlags │ 0x000000FA, //250 │
│ 252 │ NtUserCountClipboardFormats │ 0x000000FB, //251 │
│ 253 │ NtGdiAddFontMemResourceEx │ 0x000000FC, //252 │
│ 254 │ NtGdiEqualRgn │ 0x000000FD, //253 │
│ 255 │ NtGdiGetSystemPaletteUse │ 0x000000FE, //254 │
│ 256 │ NtGdiRemoveFontMemResourceEx │ 0x000000FF, //255 │
│ 257 │ NtUserEnumDisplaySettings │ 0x00000100, //256 │
│ 258 │ NtUserPaintDesktop │ 0x00000101, //257 │
│ 259 │ NtGdiExtEscape │ 0x00000102, //258 │
│ 260 │ NtGdiSetBitmapDimension │ 0x00000103, //259 │
│ 261 │ NtGdiSetFontEnumeration │ 0x00000104, //260 │
│ 262 │ NtUserChangeClipboardChain │ 0x00000105, //261 │
│ 263 │ NtUserSetClipboardViewer │ 0x00000106, //262 │
│ 264 │ NtUserShowWindowAsync │ 0x00000107, //263 │
│ 265 │ NtGdiCreateColorSpace │ 0x00000108, //264 │
│ 266 │ NtGdiDeleteColorSpace │ 0x00000109, //265 │
│ 267 │ NtUserActivateKeyboardLayout │ 0x0000010A, //266 │
│ 268 │ NtBindCompositionSurface │ 0x0000010B, //267 │
│ 269 │ NtCloseCompositionInputSink │ 0x0000010C, //268 │
│ 270 │ NtCompositionInputThread │ 0x0000010D, //269 │
│ 271 │ NtCompositionSetDropTarget │ 0x0000010E, //270 │
│ 272 │ NtCompositorNotifyExitWindows │ 0x0000010F, //271 │
│ 273 │ NtConfigureInputSpace │ 0x00000110, //272 │
│ 274 │ NtCreateCompositionInputSink │ 0x00000111, //273 │
│ 275 │ NtCreateCompositionSurfaceHandle │ 0x00000112, //274 │
│ 276 │ NtCreateImplicitCompositionInputSink │ 0x00000113, //275 │
│ 277 │ NtDCompositionAddCrossDeviceVisualChild │ 0x00000114, //276 │
│ 278 │ NtDCompositionBeginFrame │ 0x00000115, //277 │
│ 279 │ NtDCompositionBoostCompositorClock │ 0x00000116, //278 │
│ 280 │ NtDCompositionCommitChannel │ 0x00000117, //279 │
│ 281 │ NtDCompositionCommitSynchronizationObject │ 0x00000118, //280 │
│ 282 │ NtDCompositionConfirmFrame │ 0x00000119, //281 │
│ 283 │ NtDCompositionConnectPipe │ 0x0000011A, //282 │
│ 284 │ NtDCompositionCreateAndBindSharedSection │ 0x0000011B, //283 │
│ 285 │ NtDCompositionCreateChannel │ 0x0000011C, //284 │
│ 286 │ NtDCompositionCreateConnection │ 0x0000011D, //285 │
│ 287 │ NtDCompositionCreateDwmChannel │ 0x0000011E, //286 │
│ 288 │ NtDCompositionCreateSharedResourceHandle │ 0x0000011F, //287 │
│ 289 │ NtDCompositionCreateSynchronizationObject │ 0x00000120, //288 │
│ 290 │ NtDCompositionDestroyChannel │ 0x00000121, //289 │
│ 291 │ NtDCompositionDestroyConnection │ 0x00000122, //290 │
│ 292 │ NtDCompositionDuplicateHandleToProcess │ 0x00000123, //291 │
│ 293 │ NtDCompositionDuplicateSwapchainHandleToDwm │ 0x00000124, //292 │
│ 294 │ NtDCompositionEnableMMCSS │ 0x00000125, //293 │
│ 295 │ NtDCompositionGetBatchId │ 0x00000126, //294 │
│ 296 │ NtDCompositionGetChannels │ 0x00000127, //295 │
│ 297 │ NtDCompositionGetConnectionBatch │ 0x00000128, //296 │
│ 298 │ NtDCompositionGetDeletedResources │ 0x00000129, //297 │
│ 299 │ NtDCompositionGetFrameId │ 0x0000012A, //298 │
│ 300 │ NtDCompositionGetFrameIdFromBatchId │ 0x0000012B, //299 │
│ 301 │ NtDCompositionGetFrameLegacyTokens │ 0x0000012C, //300 │
│ 302 │ NtDCompositionGetFrameStatistics │ 0x0000012D, //301 │
│ 303 │ NtDCompositionGetFrameSurfaceUpdates │ 0x0000012E, //302 │
│ 304 │ NtDCompositionGetMaterialProperty │ 0x0000012F, //303 │
│ 305 │ NtDCompositionGetStatistics │ 0x00000130, //304 │
│ 306 │ NtDCompositionGetTargetStatistics │ 0x00000131, //305 │
│ 307 │ NtDCompositionNotifySuperWetInkWork │ 0x00000132, //306 │
│ 308 │ NtDCompositionProcessChannelBatchBuffer │ 0x00000133, //307 │
│ 309 │ NtDCompositionReferenceSharedResourceOnDwmChannel │ 0x00000134, //308 │
│ 310 │ NtDCompositionRegisterThumbnailVisual │ 0x00000135, //309 │
│ 311 │ NtDCompositionRegisterVirtualDesktopVisual │ 0x00000136, //310 │
│ 312 │ NtDCompositionReleaseAllResources │ 0x00000137, //311 │
│ 313 │ NtDCompositionRemoveCrossDeviceVisualChild │ 0x00000138, //312 │
│ 314 │ NtDCompositionSetBlurredWallpaperSurface │ 0x00000139, //313 │
│ 315 │ NtDCompositionSetChannelCommitCompletionEvent │ 0x0000013A, //314 │
│ 316 │ NtDCompositionSetChannelConnectionId │ 0x0000013B, //315 │
│ 317 │ NtDCompositionSetChildRootVisual │ 0x0000013C, //316 │
│ 318 │ NtDCompositionSetDebugCounter │ 0x0000013D, //317 │
│ 319 │ NtDCompositionSetMaterialProperty │ 0x0000013E, //318 │
│ 320 │ NtDCompositionSubmitDWMBatch │ 0x0000013F, //319 │
│ 321 │ NtDCompositionSuspendAnimations │ 0x00000140, //320 │
│ 322 │ NtDCompositionSynchronize │ 0x00000141, //321 │
│ 323 │ NtDCompositionTelemetrySetApplicationId │ 0x00000142, //322 │
│ 324 │ NtDCompositionUpdatePointerCapture │ 0x00000143, //323 │
│ 325 │ NtDCompositionWaitForChannel │ 0x00000144, //324 │
│ 326 │ NtDCompositionWaitForCompositorClock │ 0x00000145, //325 │
│ 327 │ NtDesktopCaptureBits │ 0x00000146, //326 │
│ 328 │ NtDuplicateCompositionInputSink │ 0x00000147, //327 │
│ 329 │ NtDxgkCancelPresents │ 0x00000148, //328 │
│ 330 │ NtDxgkCheckSinglePlaneForMultiPlaneOverlaySupport │ 0x00000149, //329 │
│ 331 │ NtDxgkConnectDoorbell │ 0x0000014A, //330 │
│ 332 │ NtDxgkCreateDoorbell │ 0x0000014B, //331 │
│ 333 │ NtDxgkCreateNativeFence │ 0x0000014C, //332 │
│ 334 │ NtDxgkCreateTrackedWorkload │ 0x0000014D, //333 │
│ 335 │ NtDxgkDestroyDoorbell │ 0x0000014E, //334 │
│ 336 │ NtDxgkDestroyTrackedWorkload │ 0x0000014F, //335 │
│ 337 │ NtDxgkDispMgrOperation │ 0x00000150, //336 │
│ 338 │ NtDxgkDisplayPortOperation │ 0x00000151, //337 │
│ 339 │ NtDxgkDuplicateHandle │ 0x00000152, //338 │
│ 340 │ NtDxgkEnumAdapters3 │ 0x00000153, //339 │
│ 341 │ NtDxgkEnumProcesses │ 0x00000154, //340 │
│ 342 │ NtDxgkGetAvailableTrackedWorkloadIndex │ 0x00000155, //341 │
│ 343 │ NtDxgkGetProcessList │ 0x00000156, //342 │
│ 344 │ NtDxgkGetProperties │ 0x00000157, //343 │
│ 345 │ NtDxgkGetTrackedWorkloadStatistics │ 0x00000158, //344 │
│ 346 │ NtDxgkNotifyWorkSubmission │ 0x00000159, //345 │
│ 347 │ NtDxgkOpenNativeFenceFromNtHandle │ 0x0000015A, //346 │
│ 348 │ NtDxgkOutputDuplPresentToHwQueue │ 0x0000015B, //347 │
│ 349 │ NtDxgkPinResources │ 0x0000015C, //348 │
│ 350 │ NtDxgkRegisterVailProcess │ 0x0000015D, //349 │
│ 351 │ NtDxgkResetTrackedWorkloadStatistics │ 0x0000015E, //350 │
│ 352 │ NtDxgkSetProperties │ 0x0000015F, //351 │
│ 353 │ NtDxgkSubmitPresentBltToHwQueue │ 0x00000160, //352 │
│ 354 │ NtDxgkSubmitPresentToHwQueue │ 0x00000161, //353 │
│ 355 │ NtDxgkUnpinResources │ 0x00000162, //354 │
│ 356 │ NtDxgkUpdateTrackedWorkload │ 0x00000163, //355 │
│ 357 │ NtDxgkVailConnect │ 0x00000164, //356 │
│ 358 │ NtDxgkVailDisconnect │ 0x00000165, //357 │
│ 359 │ NtDxgkVailPromoteCompositionSurface │ 0x00000166, //358 │
│ 360 │ NtEnableOneCoreTransformMode │ 0x00000167, //359 │
│ 361 │ NtFlipObjectAddContent │ 0x00000168, //360 │
│ 362 │ NtFlipObjectAddPoolBuffer │ 0x00000169, //361 │
│ 363 │ NtFlipObjectConsumerAcquirePresent │ 0x0000016A, //362 │
│ 364 │ NtFlipObjectConsumerAdjustUsageReference │ 0x0000016B, //363 │
│ 365 │ NtFlipObjectConsumerBeginProcessPresent │ 0x0000016C, //364 │
│ 366 │ NtFlipObjectConsumerEndProcessPresent │ 0x0000016D, //365 │
│ 367 │ NtFlipObjectConsumerPostMessage │ 0x0000016E, //366 │
│ 368 │ NtFlipObjectConsumerQueryBufferInfo │ 0x0000016F, //367 │
│ 369 │ NtFlipObjectCreate │ 0x00000170, //368 │
│ 370 │ NtFlipObjectDisconnectEndpoint │ 0x00000171, //369 │
│ 371 │ NtFlipObjectEnablePresentStatisticsType │ 0x00000172, //370 │
│ 372 │ NtFlipObjectOpen │ 0x00000173, //371 │
│ 373 │ NtFlipObjectPresentCancel │ 0x00000174, //372 │
│ 374 │ NtFlipObjectQueryBufferAvailableEvent │ 0x00000175, //373 │
│ 375 │ NtFlipObjectQueryEndpointConnected │ 0x00000176, //374 │
│ 376 │ NtFlipObjectQueryLostEvent │ 0x00000177, //375 │
│ 377 │ NtFlipObjectQueryNextMessageToProducer │ 0x00000178, //376 │
│ 378 │ NtFlipObjectReadNextMessageToProducer │ 0x00000179, //377 │
│ 379 │ NtFlipObjectRemoveContent │ 0x0000017A, //378 │
│ 380 │ NtFlipObjectRemovePoolBuffer │ 0x0000017B, //379 │
│ 381 │ NtFlipObjectSetContent │ 0x0000017C, //380 │
│ 382 │ NtGdiAbortDoc │ 0x0000017D, //381 │
│ 383 │ NtGdiAbortPath │ 0x0000017E, //382 │
│ 384 │ NtGdiAddEmbFontToDC │ 0x0000017F, //383 │
│ 385 │ NtGdiAddFontResourceW │ 0x00000180, //384 │
│ 386 │ NtGdiAddInitialFonts │ 0x00000181, //385 │
│ 387 │ NtGdiAddRemoteFontToDC │ 0x00000182, //386 │
│ 388 │ NtGdiAddRemoteMMInstanceToDC │ 0x00000183, //387 │
│ 389 │ NtGdiAngleArc │ 0x00000184, //388 │
│ 390 │ NtGdiAnyLinkedFonts │ 0x00000185, //389 │
│ 391 │ NtGdiArcInternal │ 0x00000186, //390 │
│ 392 │ NtGdiBRUSHOBJ_DeleteRbrush │ 0x00000187, //391 │
│ 393 │ NtGdiBRUSHOBJ_hGetColorTransform │ 0x00000188, //392 │
│ 394 │ NtGdiBRUSHOBJ_pvAllocRbrush │ 0x00000189, //393 │
│ 395 │ NtGdiBRUSHOBJ_pvGetRbrush │ 0x0000018A, //394 │
│ 396 │ NtGdiBRUSHOBJ_ulGetBrushColor │ 0x0000018B, //395 │
│ 397 │ NtGdiBeginGdiRendering │ 0x0000018C, //396 │
│ 398 │ NtGdiCLIPOBJ_bEnum │ 0x0000018D, //397 │
│ 399 │ NtGdiCLIPOBJ_cEnumStart │ 0x0000018E, //398 │
│ 400 │ NtGdiCLIPOBJ_ppoGetPath │ 0x0000018F, //399 │
│ 401 │ NtGdiCancelDC │ 0x00000190, //400 │
│ 402 │ NtGdiChangeGhostFont │ 0x00000191, //401 │
│ 403 │ NtGdiCheckBitmapBits │ 0x00000192, //402 │
│ 404 │ NtGdiClearBitmapAttributes │ 0x00000193, //403 │
│ 405 │ NtGdiClearBrushAttributes │ 0x00000194, //404 │
│ 406 │ NtGdiColorCorrectPalette │ 0x00000195, //405 │
│ 407 │ NtGdiConfigureOPMProtectedOutput │ 0x00000196, //406 │
│ 408 │ NtGdiConvertMetafileRect │ 0x00000197, //407 │
│ 409 │ NtGdiCreateBitmapFromDxSurface │ 0x00000198, //408 │
│ 410 │ NtGdiCreateBitmapFromDxSurface2 │ 0x00000199, //409 │
│ 411 │ NtGdiCreateColorTransform │ 0x0000019A, //410 │
│ 412 │ NtGdiCreateEllipticRgn │ 0x0000019B, //411 │
│ 413 │ NtGdiCreateHatchBrushInternal │ 0x0000019C, //412 │
│ 414 │ NtGdiCreateMetafileDC │ 0x0000019D, //413 │
│ 415 │ NtGdiCreateOPMProtectedOutput │ 0x0000019E, //414 │
│ 416 │ NtGdiCreateOPMProtectedOutputs │ 0x0000019F, //415 │
│ 417 │ NtGdiCreateRoundRectRgn │ 0x000001A0, //416 │
│ 418 │ NtGdiCreateServerMetaFile │ 0x000001A1, //417 │
│ 419 │ NtGdiCreateSessionMappedDIBSection │ 0x000001A2, //418 │
│ 420 │ NtGdiDDCCIGetCapabilitiesString │ 0x000001A3, //419 │
│ 421 │ NtGdiDDCCIGetCapabilitiesStringLength │ 0x000001A4, //420 │
│ 422 │ NtGdiDDCCIGetTimingReport │ 0x000001A5, //421 │
│ 423 │ NtGdiDDCCIGetVCPFeature │ 0x000001A6, //422 │
│ 424 │ NtGdiDDCCISaveCurrentSettings │ 0x000001A7, //423 │
│ 425 │ NtGdiDDCCISetVCPFeature │ 0x000001A8, //424 │
│ 426 │ NtGdiDdCreateFullscreenSprite │ 0x000001A9, //425 │
│ 427 │ NtGdiDdDDIAbandonSwapChain │ 0x000001AA, //426 │
│ 428 │ NtGdiDdDDIAcquireKeyedMutex │ 0x000001AB, //427 │
│ 429 │ NtGdiDdDDIAcquireKeyedMutex2 │ 0x000001AC, //428 │
│ 430 │ NtGdiDdDDIAcquireSwapChain │ 0x000001AD, //429 │
│ 431 │ NtGdiDdDDIAddSurfaceToSwapChain │ 0x000001AE, //430 │
│ 432 │ NtGdiDdDDIAdjustFullscreenGamma │ 0x000001AF, //431 │
│ 433 │ NtGdiDdDDICacheHybridQueryValue │ 0x000001B0, //432 │
│ 434 │ NtGdiDdDDIChangeVideoMemoryReservation │ 0x000001B1, //433 │
│ 435 │ NtGdiDdDDICheckExclusiveOwnership │ 0x000001B2, //434 │
│ 436 │ NtGdiDdDDICheckMonitorPowerState │ 0x000001B3, //435 │
│ 437 │ NtGdiDdDDICheckMultiPlaneOverlaySupport │ 0x000001B4, //436 │
│ 438 │ NtGdiDdDDICheckMultiPlaneOverlaySupport2 │ 0x000001B5, //437 │
│ 439 │ NtGdiDdDDICheckMultiPlaneOverlaySupport3 │ 0x000001B6, //438 │
│ 440 │ NtGdiDdDDICheckOcclusion │ 0x000001B7, //439 │
│ 441 │ NtGdiDdDDICheckSharedResourceAccess │ 0x000001B8, //440 │
│ 442 │ NtGdiDdDDICheckVidPnExclusiveOwnership │ 0x000001B9, //441 │
│ 443 │ NtGdiDdDDICloseAdapter │ 0x000001BA, //442 │
│ 444 │ NtGdiDdDDIConfigureSharedResource │ 0x000001BB, //443 │
│ 445 │ NtGdiDdDDICreateAllocation │ 0x000001BC, //444 │
│ 446 │ NtGdiDdDDICreateBundleObject │ 0x000001BD, //445 │
│ 447 │ NtGdiDdDDICreateContext │ 0x000001BE, //446 │
│ 448 │ NtGdiDdDDICreateContextVirtual │ 0x000001BF, //447 │
│ 449 │ NtGdiDdDDICreateDCFromMemory │ 0x000001C0, //448 │
│ 450 │ NtGdiDdDDICreateDevice │ 0x000001C1, //449 │
│ 451 │ NtGdiDdDDICreateHwContext │ 0x000001C2, //450 │
│ 452 │ NtGdiDdDDICreateHwQueue │ 0x000001C3, //451 │
│ 453 │ NtGdiDdDDICreateKeyedMutex │ 0x000001C4, //452 │
│ 454 │ NtGdiDdDDICreateKeyedMutex2 │ 0x000001C5, //453 │
│ 455 │ NtGdiDdDDICreateOutputDupl │ 0x000001C6, //454 │
│ 456 │ NtGdiDdDDICreateOverlay │ 0x000001C7, //455 │
│ 457 │ NtGdiDdDDICreatePagingQueue │ 0x000001C8, //456 │
│ 458 │ NtGdiDdDDICreateProtectedSession │ 0x000001C9, //457 │
│ 459 │ NtGdiDdDDICreateSwapChain │ 0x000001CA, //458 │
│ 460 │ NtGdiDdDDICreateSynchronizationObject │ 0x000001CB, //459 │
│ 461 │ NtGdiDdDDIDDisplayEnum │ 0x000001CC, //460 │
│ 462 │ NtGdiDdDDIDestroyAllocation │ 0x000001CD, //461 │
│ 463 │ NtGdiDdDDIDestroyAllocation2 │ 0x000001CE, //462 │
│ 464 │ NtGdiDdDDIDestroyContext │ 0x000001CF, //463 │
│ 465 │ NtGdiDdDDIDestroyDCFromMemory │ 0x000001D0, //464 │
│ 466 │ NtGdiDdDDIDestroyDevice │ 0x000001D1, //465 │
│ 467 │ NtGdiDdDDIDestroyHwContext │ 0x000001D2, //466 │
│ 468 │ NtGdiDdDDIDestroyHwQueue │ 0x000001D3, //467 │
│ 469 │ NtGdiDdDDIDestroyKeyedMutex │ 0x000001D4, //468 │
│ 470 │ NtGdiDdDDIDestroyOutputDupl │ 0x000001D5, //469 │
│ 471 │ NtGdiDdDDIDestroyOverlay │ 0x000001D6, //470 │
│ 472 │ NtGdiDdDDIDestroyPagingQueue │ 0x000001D7, //471 │
│ 473 │ NtGdiDdDDIDestroyProtectedSession │ 0x000001D8, //472 │
│ 474 │ NtGdiDdDDIDestroySynchronizationObject │ 0x000001D9, //473 │
│ 475 │ NtGdiDdDDIDispMgrCreate │ 0x000001DA, //474 │
│ 476 │ NtGdiDdDDIDispMgrSourceOperation │ 0x000001DB, //475 │
│ 477 │ NtGdiDdDDIDispMgrTargetOperation │ 0x000001DC, //476 │
│ 478 │ NtGdiDdDDIEnumAdapters │ 0x000001DD, //477 │
│ 479 │ NtGdiDdDDIEnumAdapters2 │ 0x000001DE, //478 │
│ 480 │ NtGdiDdDDIEscape │ 0x000001DF, //479 │
│ 481 │ NtGdiDdDDIEvict │ 0x000001E0, //480 │
│ 482 │ NtGdiDdDDIExtractBundleObject │ 0x000001E1, //481 │
│ 483 │ NtGdiDdDDIFlipOverlay │ 0x000001E2, //482 │
│ 484 │ NtGdiDdDDIFlushHeapTransitions │ 0x000001E3, //483 │
│ 485 │ NtGdiDdDDIFreeGpuVirtualAddress │ 0x000001E4, //484 │
│ 486 │ NtGdiDdDDIGetAllocationPriority │ 0x000001E5, //485 │
│ 487 │ NtGdiDdDDIGetCachedHybridQueryValue │ 0x000001E6, //486 │
│ 488 │ NtGdiDdDDIGetContextInProcessSchedulingPriority │ 0x000001E7, //487 │
│ 489 │ NtGdiDdDDIGetContextSchedulingPriority │ 0x000001E8, //488 │
│ 490 │ NtGdiDdDDIGetDWMVerticalBlankEvent │ 0x000001E9, //489 │
│ 491 │ NtGdiDdDDIGetDeviceState │ 0x000001EA, //490 │
│ 492 │ NtGdiDdDDIGetDisplayModeList │ 0x000001EB, //491 │
│ 493 │ NtGdiDdDDIGetMemoryBudgetTarget │ 0x000001EC, //492 │
│ 494 │ NtGdiDdDDIGetMultiPlaneOverlayCaps │ 0x000001ED, //493 │
│ 495 │ NtGdiDdDDIGetMultisampleMethodList │ 0x000001EE, //494 │
│ 496 │ NtGdiDdDDIGetOverlayState │ 0x000001EF, //495 │
│ 497 │ NtGdiDdDDIGetPostCompositionCaps │ 0x000001F0, //496 │
│ 498 │ NtGdiDdDDIGetPresentHistory │ 0x000001F1, //497 │
│ 499 │ NtGdiDdDDIGetPresentQueueEvent │ 0x000001F2, //498 │
│ 500 │ NtGdiDdDDIGetProcessDeviceRemovalSupport │ 0x000001F3, //499 │
│ 501 │ NtGdiDdDDIGetProcessSchedulingPriorityBand │ 0x000001F4, //500 │
│ 502 │ NtGdiDdDDIGetProcessSchedulingPriorityClass │ 0x000001F5, //501 │
│ 503 │ NtGdiDdDDIGetResourcePresentPrivateDriverData │ 0x000001F6, //502 │
│ 504 │ NtGdiDdDDIGetRuntimeData │ 0x000001F7, //503 │
│ 505 │ NtGdiDdDDIGetScanLine │ 0x000001F8, //504 │
│ 506 │ NtGdiDdDDIGetSetSwapChainMetadata │ 0x000001F9, //505 │
│ 507 │ NtGdiDdDDIGetSharedPrimaryHandle │ 0x000001FA, //506 │
│ 508 │ NtGdiDdDDIGetSharedResourceAdapterLuid │ 0x000001FB, //507 │
│ 509 │ NtGdiDdDDIGetSharedResourceAdapterLuidFlipManager │ 0x000001FC, //508 │
│ 510 │ NtGdiDdDDIGetSwapChainSurfacePhysicalAddress │ 0x000001FD, //509 │
│ 511 │ NtGdiDdDDIGetYieldPercentage │ 0x000001FE, //510 │
│ 512 │ NtGdiDdDDIInvalidateActiveVidPn │ 0x000001FF, //511 │
│ 513 │ NtGdiDdDDIInvalidateCache │ 0x00000200, //512 │
│ 514 │ NtGdiDdDDILock │ 0x00000201, //513 │
│ 515 │ NtGdiDdDDILock2 │ 0x00000202, //514 │
│ 516 │ NtGdiDdDDIMakeResident │ 0x00000203, //515 │
│ 517 │ NtGdiDdDDIMapGpuVirtualAddress │ 0x00000204, //516 │
│ 518 │ NtGdiDdDDIMarkDeviceAsError │ 0x00000205, //517 │
│ 519 │ NtGdiDdDDINetDispGetNextChunkInfo │ 0x00000206, //518 │
│ 520 │ NtGdiDdDDINetDispQueryMiracastDisplayDeviceStatus │ 0x00000207, //519 │
│ 521 │ NtGdiDdDDINetDispQueryMiracastDisplayDeviceSupport │ 0x00000208, //520 │
│ 522 │ NtGdiDdDDINetDispStartMiracastDisplayDevice │ 0x00000209, //521 │
│ 523 │ NtGdiDdDDINetDispStopMiracastDisplayDevice │ 0x0000020A, //522 │
│ 524 │ NtGdiDdDDIOfferAllocations │ 0x0000020B, //523 │
│ 525 │ NtGdiDdDDIOpenAdapterFromDeviceName │ 0x0000020C, //524 │
│ 526 │ NtGdiDdDDIOpenAdapterFromHdc │ 0x0000020D, //525 │
│ 527 │ NtGdiDdDDIOpenAdapterFromLuid │ 0x0000020E, //526 │
│ 528 │ NtGdiDdDDIOpenBundleObjectNtHandleFromName │ 0x0000020F, //527 │
│ 529 │ NtGdiDdDDIOpenKeyedMutex │ 0x00000210, //528 │
│ 530 │ NtGdiDdDDIOpenKeyedMutex2 │ 0x00000211, //529 │
│ 531 │ NtGdiDdDDIOpenKeyedMutexFromNtHandle │ 0x00000212, //530 │
│ 532 │ NtGdiDdDDIOpenNtHandleFromName │ 0x00000213, //531 │
│ 533 │ NtGdiDdDDIOpenProtectedSessionFromNtHandle │ 0x00000214, //532 │
│ 534 │ NtGdiDdDDIOpenResource │ 0x00000215, //533 │
│ 535 │ NtGdiDdDDIOpenResourceFromNtHandle │ 0x00000216, //534 │
│ 536 │ NtGdiDdDDIOpenSwapChain │ 0x00000217, //535 │
│ 537 │ NtGdiDdDDIOpenSyncObjectFromNtHandle │ 0x00000218, //536 │
│ 538 │ NtGdiDdDDIOpenSyncObjectFromNtHandle2 │ 0x00000219, //537 │
│ 539 │ NtGdiDdDDIOpenSyncObjectNtHandleFromName │ 0x0000021A, //538 │
│ 540 │ NtGdiDdDDIOpenSynchronizationObject │ 0x0000021B, //539 │
│ 541 │ NtGdiDdDDIOutputDuplGetFrameInfo │ 0x0000021C, //540 │
│ 542 │ NtGdiDdDDIOutputDuplGetMetaData │ 0x0000021D, //541 │
│ 543 │ NtGdiDdDDIOutputDuplGetPointerShapeData │ 0x0000021E, //542 │
│ 544 │ NtGdiDdDDIOutputDuplPresent │ 0x0000021F, //543 │
│ 545 │ NtGdiDdDDIOutputDuplReleaseFrame │ 0x00000220, //544 │
│ 546 │ NtGdiDdDDIPollDisplayChildren │ 0x00000221, //545 │
│ 547 │ NtGdiDdDDIPresent │ 0x00000222, //546 │
│ 548 │ NtGdiDdDDIPresentMultiPlaneOverlay │ 0x00000223, //547 │
│ 549 │ NtGdiDdDDIPresentMultiPlaneOverlay2 │ 0x00000224, //548 │
│ 550 │ NtGdiDdDDIPresentMultiPlaneOverlay3 │ 0x00000225, //549 │
│ 551 │ NtGdiDdDDIPresentRedirected │ 0x00000226, //550 │
│ 552 │ NtGdiDdDDIQueryAdapterInfo │ 0x00000227, //551 │
│ 553 │ NtGdiDdDDIQueryAllocationResidency │ 0x00000228, //552 │
│ 554 │ NtGdiDdDDIQueryClockCalibration │ 0x00000229, //553 │
│ 555 │ NtGdiDdDDIQueryFSEBlock │ 0x0000022A, //554 │
│ 556 │ NtGdiDdDDIQueryProcessOfferInfo │ 0x0000022B, //555 │
│ 557 │ NtGdiDdDDIQueryProtectedSessionInfoFromNtHandle │ 0x0000022C, //556 │
│ 558 │ NtGdiDdDDIQueryProtectedSessionStatus │ 0x0000022D, //557 │
│ 559 │ NtGdiDdDDIQueryRemoteVidPnSourceFromGdiDisplayName │ 0x0000022E, //558 │
│ 560 │ NtGdiDdDDIQueryResourceInfo │ 0x0000022F, //559 │
│ 561 │ NtGdiDdDDIQueryResourceInfoFromNtHandle │ 0x00000230, //560 │
│ 562 │ NtGdiDdDDIQueryStatistics │ 0x00000231, //561 │
│ 563 │ NtGdiDdDDIQueryVidPnExclusiveOwnership │ 0x00000232, //562 │
│ 564 │ NtGdiDdDDIQueryVideoMemoryInfo │ 0x00000233, //563 │
│ 565 │ NtGdiDdDDIReclaimAllocations │ 0x00000234, //564 │
│ 566 │ NtGdiDdDDIReclaimAllocations2 │ 0x00000235, //565 │
│ 567 │ NtGdiDdDDIReleaseKeyedMutex │ 0x00000236, //566 │
│ 568 │ NtGdiDdDDIReleaseKeyedMutex2 │ 0x00000237, //567 │
│ 569 │ NtGdiDdDDIReleaseProcessVidPnSourceOwners │ 0x00000238, //568 │
│ 570 │ NtGdiDdDDIReleaseSwapChain │ 0x00000239, //569 │
│ 571 │ NtGdiDdDDIRemoveSurfaceFromSwapChain │ 0x0000023A, //570 │
│ 572 │ NtGdiDdDDIRender │ 0x0000023B, //571 │
│ 573 │ NtGdiDdDDIReserveGpuVirtualAddress │ 0x0000023C, //572 │
│ 574 │ NtGdiDdDDISetAllocationPriority │ 0x0000023D, //573 │
│ 575 │ NtGdiDdDDISetContextInProcessSchedulingPriority │ 0x0000023E, //574 │
│ 576 │ NtGdiDdDDISetContextSchedulingPriority │ 0x0000023F, //575 │
│ 577 │ NtGdiDdDDISetDisplayMode │ 0x00000240, //576 │
│ 578 │ NtGdiDdDDISetDodIndirectSwapchain │ 0x00000241, //577 │
│ 579 │ NtGdiDdDDISetFSEBlock │ 0x00000242, //578 │
│ 580 │ NtGdiDdDDISetGammaRamp │ 0x00000243, //579 │
│ 581 │ NtGdiDdDDISetHwProtectionTeardownRecovery │ 0x00000244, //580 │
│ 582 │ NtGdiDdDDISetMemoryBudgetTarget │ 0x00000245, //581 │
│ 583 │ NtGdiDdDDISetMonitorColorSpaceTransform │ 0x00000246, //582 │
│ 584 │ NtGdiDdDDISetProcessDeviceRemovalSupport │ 0x00000247, //583 │
│ 585 │ NtGdiDdDDISetProcessSchedulingPriorityBand │ 0x00000248, //584 │
│ 586 │ NtGdiDdDDISetProcessSchedulingPriorityClass │ 0x00000249, //585 │
│ 587 │ NtGdiDdDDISetQueuedLimit │ 0x0000024A, //586 │
│ 588 │ NtGdiDdDDISetStablePowerState │ 0x0000024B, //587 │
│ 589 │ NtGdiDdDDISetStereoEnabled │ 0x0000024C, //588 │
│ 590 │ NtGdiDdDDISetSyncRefreshCountWaitTarget │ 0x0000024D, //589 │
│ 591 │ NtGdiDdDDISetVidPnSourceHwProtection │ 0x0000024E, //590 │
│ 592 │ NtGdiDdDDISetVidPnSourceOwner │ 0x0000024F, //591 │
│ 593 │ NtGdiDdDDISetYieldPercentage │ 0x00000250, //592 │
│ 594 │ NtGdiDdDDIShareObjects │ 0x00000251, //593 │
│ 595 │ NtGdiDdDDISharedPrimaryLockNotification │ 0x00000252, //594 │
│ 596 │ NtGdiDdDDISharedPrimaryUnLockNotification │ 0x00000253, //595 │
│ 597 │ NtGdiDdDDISignalSynchronizationObject │ 0x00000254, //596 │
│ 598 │ NtGdiDdDDISignalSynchronizationObjectFromCpu │ 0x00000255, //597 │
│ 599 │ NtGdiDdDDISignalSynchronizationObjectFromGpu │ 0x00000256, //598 │
│ 600 │ NtGdiDdDDISignalSynchronizationObjectFromGpu2 │ 0x00000257, //599 │
│ 601 │ NtGdiDdDDISubmitCommand │ 0x00000258, //600 │
│ 602 │ NtGdiDdDDISubmitCommandToHwQueue │ 0x00000259, //601 │
│ 603 │ NtGdiDdDDISubmitSignalSyncObjectsToHwQueue │ 0x0000025A, //602 │
│ 604 │ NtGdiDdDDISubmitWaitForSyncObjectsToHwQueue │ 0x0000025B, //603 │
│ 605 │ NtGdiDdDDITrimProcessCommitment │ 0x0000025C, //604 │
│ 606 │ NtGdiDdDDIUnOrderedPresentSwapChain │ 0x0000025D, //605 │
│ 607 │ NtGdiDdDDIUnlock │ 0x0000025E, //606 │
│ 608 │ NtGdiDdDDIUnlock2 │ 0x0000025F, //607 │
│ 609 │ NtGdiDdDDIUpdateAllocationProperty │ 0x00000260, //608 │
│ 610 │ NtGdiDdDDIUpdateGpuVirtualAddress │ 0x00000261, //609 │
│ 611 │ NtGdiDdDDIUpdateOverlay │ 0x00000262, //610 │
│ 612 │ NtGdiDdDDIWaitForIdle │ 0x00000263, //611 │
│ 613 │ NtGdiDdDDIWaitForSynchronizationObject │ 0x00000264, //612 │
│ 614 │ NtGdiDdDDIWaitForSynchronizationObjectFromCpu │ 0x00000265, //613 │
│ 615 │ NtGdiDdDDIWaitForSynchronizationObjectFromGpu │ 0x00000266, //614 │
│ 616 │ NtGdiDdDDIWaitForVerticalBlankEvent │ 0x00000267, //615 │
│ 617 │ NtGdiDdDDIWaitForVerticalBlankEvent2 │ 0x00000268, //616 │
│ 618 │ NtGdiDdDestroyFullscreenSprite │ 0x00000269, //617 │
│ 619 │ NtGdiDdNotifyFullscreenSpriteUpdate │ 0x0000026A, //618 │
│ 620 │ NtGdiDdQueryVisRgnUniqueness │ 0x0000026B, //619 │
│ 621 │ NtGdiDeleteColorTransform │ 0x0000026C, //620 │
│ 622 │ NtGdiDescribePixelFormat │ 0x0000026D, //621 │
│ 623 │ NtGdiDestroyOPMProtectedOutput │ 0x0000026E, //622 │
│ 624 │ NtGdiDestroyPhysicalMonitor │ 0x0000026F, //623 │
│ 625 │ NtGdiDoBanding │ 0x00000270, //624 │
│ 626 │ NtGdiDrawEscape │ 0x00000271, //625 │
│ 627 │ NtGdiDwmCreatedBitmapRemotingOutput │ 0x00000272, //626 │
│ 628 │ NtGdiEllipse │ 0x00000273, //627 │
│ 629 │ NtGdiEnableEudc │ 0x00000274, //628 │
│ 630 │ NtGdiEndDoc │ 0x00000275, //629 │
│ 631 │ NtGdiEndGdiRendering │ 0x00000276, //630 │
│ 632 │ NtGdiEndPage │ 0x00000277, //631 │
│ 633 │ NtGdiEngAlphaBlend │ 0x00000278, //632 │
│ 634 │ NtGdiEngAssociateSurface │ 0x00000279, //633 │
│ 635 │ NtGdiEngBitBlt │ 0x0000027A, //634 │
│ 636 │ NtGdiEngCheckAbort │ 0x0000027B, //635 │
│ 637 │ NtGdiEngComputeGlyphSet │ 0x0000027C, //636 │
│ 638 │ NtGdiEngCopyBits │ 0x0000027D, //637 │
│ 639 │ NtGdiEngCreateBitmap │ 0x0000027E, //638 │
│ 640 │ NtGdiEngCreateClip │ 0x0000027F, //639 │
│ 641 │ NtGdiEngCreateDeviceBitmap │ 0x00000280, //640 │
│ 642 │ NtGdiEngCreateDeviceSurface │ 0x00000281, //641 │
│ 643 │ NtGdiEngCreatePalette │ 0x00000282, //642 │
│ 644 │ NtGdiEngDeleteClip │ 0x00000283, //643 │
│ 645 │ NtGdiEngDeletePalette │ 0x00000284, //644 │
│ 646 │ NtGdiEngDeletePath │ 0x00000285, //645 │
│ 647 │ NtGdiEngDeleteSurface │ 0x00000286, //646 │
│ 648 │ NtGdiEngEraseSurface │ 0x00000287, //647 │
│ 649 │ NtGdiEngFillPath │ 0x00000288, //648 │
│ 650 │ NtGdiEngGradientFill │ 0x00000289, //649 │
│ 651 │ NtGdiEngLineTo │ 0x0000028A, //650 │
│ 652 │ NtGdiEngLockSurface │ 0x0000028B, //651 │
│ 653 │ NtGdiEngMarkBandingSurface │ 0x0000028C, //652 │
│ 654 │ NtGdiEngPaint │ 0x0000028D, //653 │
│ 655 │ NtGdiEngPlgBlt │ 0x0000028E, //654 │
│ 656 │ NtGdiEngStretchBlt │ 0x0000028F, //655 │
│ 657 │ NtGdiEngStretchBltROP │ 0x00000290, //656 │
│ 658 │ NtGdiEngStrokeAndFillPath │ 0x00000291, //657 │
│ 659 │ NtGdiEngStrokePath │ 0x00000292, //658 │
│ 660 │ NtGdiEngTextOut │ 0x00000293, //659 │
│ 661 │ NtGdiEngTransparentBlt │ 0x00000294, //660 │
│ 662 │ NtGdiEngUnlockSurface │ 0x00000295, //661 │
│ 663 │ NtGdiEnsureDpiDepDefaultGuiFontForPlateau │ 0x00000296, //662 │
│ 664 │ NtGdiEnumFonts │ 0x00000297, //663 │
│ 665 │ NtGdiEnumObjects │ 0x00000298, //664 │
│ 666 │ NtGdiEudcLoadUnloadLink │ 0x00000299, //665 │
│ 667 │ NtGdiExtFloodFill │ 0x0000029A, //666 │
│ 668 │ NtGdiFONTOBJ_cGetAllGlyphHandles │ 0x0000029B, //667 │
│ 669 │ NtGdiFONTOBJ_cGetGlyphs │ 0x0000029C, //668 │
│ 670 │ NtGdiFONTOBJ_pQueryGlyphAttrs │ 0x0000029D, //669 │
│ 671 │ NtGdiFONTOBJ_pfdg │ 0x0000029E, //670 │
│ 672 │ NtGdiFONTOBJ_pifi │ 0x0000029F, //671 │
│ 673 │ NtGdiFONTOBJ_pvTrueTypeFontFile │ 0x000002A0, //672 │
│ 674 │ NtGdiFONTOBJ_pxoGetXform │ 0x000002A1, //673 │
│ 675 │ NtGdiFONTOBJ_vGetInfo │ 0x000002A2, //674 │
│ 676 │ NtGdiFlattenPath │ 0x000002A3, //675 │
│ 677 │ NtGdiFontIsLinked │ 0x000002A4, //676 │
│ 678 │ NtGdiForceUFIMapping │ 0x000002A5, //677 │
│ 679 │ NtGdiFrameRgn │ 0x000002A6, //678 │
│ 680 │ NtGdiFullscreenControl │ 0x000002A7, //679 │
│ 681 │ NtGdiGetBitmapDpiScaleValue │ 0x000002A8, //680 │
│ 682 │ NtGdiGetBoundsRect │ 0x000002A9, //681 │
│ 683 │ NtGdiGetCOPPCompatibleOPMInformation │ 0x000002AA, //682 │
│ 684 │ NtGdiGetCertificate │ 0x000002AB, //683 │
│ 685 │ NtGdiGetCertificateByHandle │ 0x000002AC, //684 │
│ 686 │ NtGdiGetCertificateSize │ 0x000002AD, //685 │
│ 687 │ NtGdiGetCertificateSizeByHandle │ 0x000002AE, //686 │
│ 688 │ NtGdiGetCharABCWidthsW │ 0x000002AF, //687 │
│ 689 │ NtGdiGetCharacterPlacementW │ 0x000002B0, //688 │
│ 690 │ NtGdiGetColorAdjustment │ 0x000002B1, //689 │
│ 691 │ NtGdiGetColorSpaceforBitmap │ 0x000002B2, //690 │
│ 692 │ NtGdiGetCurrentDpiInfo │ 0x000002B3, //691 │
│ 693 │ NtGdiGetDCDpiScaleValue │ 0x000002B4, //692 │
│ 694 │ NtGdiGetDeviceCaps │ 0x000002B5, //693 │
│ 695 │ NtGdiGetDeviceCapsAll │ 0x000002B6, //694 │
│ 696 │ NtGdiGetDeviceWidth │ 0x000002B7, //695 │
│ 697 │ NtGdiGetDhpdev │ 0x000002B8, //696 │
│ 698 │ NtGdiGetETM │ 0x000002B9, //697 │
│ 699 │ NtGdiGetEmbUFI │ 0x000002BA, //698 │
│ 700 │ NtGdiGetEmbedFonts │ 0x000002BB, //699 │
│ 701 │ NtGdiGetEntry │ 0x000002BC, //700 │
│ 702 │ NtGdiGetEudcTimeStampEx │ 0x000002BD, //701 │
│ 703 │ NtGdiGetFontFileData │ 0x000002BE, //702 │
│ 704 │ NtGdiGetFontFileInfo │ 0x000002BF, //703 │
│ 705 │ NtGdiGetFontResourceInfoInternalW │ 0x000002C0, //704 │
│ 706 │ NtGdiGetFontUnicodeRanges │ 0x000002C1, //705 │
│ 707 │ NtGdiGetGlyphIndicesW │ 0x000002C2, //706 │
│ 708 │ NtGdiGetGlyphIndicesWInternal │ 0x000002C3, //707 │
│ 709 │ NtGdiGetGlyphOutline │ 0x000002C4, //708 │
│ 710 │ NtGdiGetKerningPairs │ 0x000002C5, //709 │
│ 711 │ NtGdiGetLinkedUFIs │ 0x000002C6, //710 │
│ 712 │ NtGdiGetMiterLimit │ 0x000002C7, //711 │
│ 713 │ NtGdiGetMonitorID │ 0x000002C8, //712 │
│ 714 │ NtGdiGetNumberOfPhysicalMonitors │ 0x000002C9, //713 │
│ 715 │ NtGdiGetOPMInformation │ 0x000002CA, //714 │
│ 716 │ NtGdiGetOPMRandomNumber │ 0x000002CB, //715 │
│ 717 │ NtGdiGetObjectBitmapHandle │ 0x000002CC, //716 │
│ 718 │ NtGdiGetPath │ 0x000002CD, //717 │
│ 719 │ NtGdiGetPerBandInfo │ 0x000002CE, //718 │
│ 720 │ NtGdiGetPhysicalMonitorDescription │ 0x000002CF, //719 │
│ 721 │ NtGdiGetPhysicalMonitors │ 0x000002D0, //720 │
│ 722 │ NtGdiGetProcessSessionFonts │ 0x000002D1, //721 │
│ 723 │ NtGdiGetPublicFontTableChangeCookie │ 0x000002D2, //722 │
│ 724 │ NtGdiGetRealizationInfo │ 0x000002D3, //723 │
│ 725 │ NtGdiGetServerMetaFileBits │ 0x000002D4, //724 │
│ 726 │ NtGdiGetSpoolMessage │ 0x000002D5, //725 │
│ 727 │ NtGdiGetStats │ 0x000002D6, //726 │
│ 728 │ NtGdiGetStringBitmapW │ 0x000002D7, //727 │
│ 729 │ NtGdiGetSuggestedOPMProtectedOutputArraySize │ 0x000002D8, //728 │
│ 730 │ NtGdiGetTextExtentExW │ 0x000002D9, //729 │
│ 731 │ NtGdiGetUFI │ 0x000002DA, //730 │
│ 732 │ NtGdiGetUFIPathname │ 0x000002DB, //731 │
│ 733 │ NtGdiGradientFill │ 0x000002DC, //732 │
│ 734 │ NtGdiHLSurfGetInformation │ 0x000002DD, //733 │
│ 735 │ NtGdiHLSurfSetInformation │ 0x000002DE, //734 │
│ 736 │ NtGdiHT_Get8BPPFormatPalette │ 0x000002DF, //735 │
│ 737 │ NtGdiHT_Get8BPPMaskPalette │ 0x000002E0, //736 │
│ 738 │ NtGdiIcmBrushInfo │ 0x000002E1, //737 │
│ 739 │ NtGdiInit │ 0x000002E2, //738 │
│ 740 │ NtGdiInitSpool │ 0x000002E3, //739 │
│ 741 │ NtGdiMakeFontDir │ 0x000002E4, //740 │
│ 742 │ NtGdiMakeInfoDC │ 0x000002E5, //741 │
│ 743 │ NtGdiMakeObjectUnXferable │ 0x000002E6, //742 │
│ 744 │ NtGdiMakeObjectXferable │ 0x000002E7, //743 │
│ 745 │ NtGdiMirrorWindowOrg │ 0x000002E8, //744 │
│ 746 │ NtGdiMonoBitmap │ 0x000002E9, //745 │
│ 747 │ NtGdiMoveTo │ 0x000002EA, //746 │
│ 748 │ NtGdiOffsetClipRgn │ 0x000002EB, //747 │
│ 749 │ NtGdiPATHOBJ_bEnum │ 0x000002EC, //748 │
│ 750 │ NtGdiPATHOBJ_bEnumClipLines │ 0x000002ED, //749 │
│ 751 │ NtGdiPATHOBJ_vEnumStart │ 0x000002EE, //750 │
│ 752 │ NtGdiPATHOBJ_vEnumStartClipLines │ 0x000002EF, //751 │
│ 753 │ NtGdiPATHOBJ_vGetBounds │ 0x000002F0, //752 │
│ 754 │ NtGdiPathToRegion │ 0x000002F1, //753 │
│ 755 │ NtGdiPlgBlt │ 0x000002F2, //754 │
│ 756 │ NtGdiPolyDraw │ 0x000002F3, //755 │
│ 757 │ NtGdiPolyTextOutW │ 0x000002F4, //756 │
│ 758 │ NtGdiPtInRegion │ 0x000002F5, //757 │
│ 759 │ NtGdiPtVisible │ 0x000002F6, //758 │
│ 760 │ NtGdiQueryFonts │ 0x000002F7, //759 │
│ 761 │ NtGdiRemoveFontResourceW │ 0x000002F8, //760 │
│ 762 │ NtGdiRemoveMergeFont │ 0x000002F9, //761 │
│ 763 │ NtGdiResetDC │ 0x000002FA, //762 │
│ 764 │ NtGdiResizePalette │ 0x000002FB, //763 │
│ 765 │ NtGdiRoundRect │ 0x000002FC, //764 │
│ 766 │ NtGdiSTROBJ_bEnum │ 0x000002FD, //765 │
│ 767 │ NtGdiSTROBJ_bEnumPositionsOnly │ 0x000002FE, //766 │
│ 768 │ NtGdiSTROBJ_bGetAdvanceWidths │ 0x000002FF, //767 │
│ 769 │ NtGdiSTROBJ_dwGetCodePage │ 0x00000300, //768 │
│ 770 │ NtGdiSTROBJ_vEnumStart │ 0x00000301, //769 │
│ 771 │ NtGdiScaleRgn │ 0x00000302, //770 │
│ 772 │ NtGdiScaleValues │ 0x00000303, //771 │
│ 773 │ NtGdiScaleViewportExtEx │ 0x00000304, //772 │
│ 774 │ NtGdiScaleWindowExtEx │ 0x00000305, //773 │
│ 775 │ NtGdiSelectBrush │ 0x00000306, //774 │
│ 776 │ NtGdiSelectClipPath │ 0x00000307, //775 │
│ 777 │ NtGdiSelectPen │ 0x00000308, //776 │
│ 778 │ NtGdiSetBitmapAttributes │ 0x00000309, //777 │
│ 779 │ NtGdiSetBrushAttributes │ 0x0000030A, //778 │
│ 780 │ NtGdiSetColorAdjustment │ 0x0000030B, //779 │
│ 781 │ NtGdiSetColorSpace │ 0x0000030C, //780 │
│ 782 │ NtGdiSetFontXform │ 0x0000030D, //781 │
│ 783 │ NtGdiSetIcmMode │ 0x0000030E, //782 │
│ 784 │ NtGdiSetLinkedUFIs │ 0x0000030F, //783 │
│ 785 │ NtGdiSetMagicColors │ 0x00000310, //784 │
│ 786 │ NtGdiSetOPMSigningKeyAndSequenceNumbers │ 0x00000311, //785 │
│ 787 │ NtGdiSetPUMPDOBJ │ 0x00000312, //786 │
│ 788 │ NtGdiSetPixelFormat │ 0x00000313, //787 │
│ 789 │ NtGdiSetRectRgn │ 0x00000314, //788 │
│ 790 │ NtGdiSetSizeDevice │ 0x00000315, //789 │
│ 791 │ NtGdiSetSystemPaletteUse │ 0x00000316, //790 │
│ 792 │ NtGdiSetTextJustification │ 0x00000317, //791 │
│ 793 │ NtGdiSetUMPDSandboxState │ 0x00000318, //792 │
│ 794 │ NtGdiStartDoc │ 0x00000319, //793 │
│ 795 │ NtGdiStartPage │ 0x0000031A, //794 │
│ 796 │ NtGdiStrokeAndFillPath │ 0x0000031B, //795 │
│ 797 │ NtGdiStrokePath │ 0x0000031C, //796 │
│ 798 │ NtGdiSwapBuffers │ 0x0000031D, //797 │
│ 799 │ NtGdiTransparentBlt │ 0x0000031E, //798 │
│ 800 │ NtGdiUMPDEngFreeUserMem │ 0x0000031F, //799 │
│ 801 │ NtGdiUnloadPrinterDriver │ 0x00000320, //800 │
│ 802 │ NtGdiUnmapMemFont │ 0x00000321, //801 │
│ 803 │ NtGdiUpdateColors │ 0x00000322, //802 │
│ 804 │ NtGdiUpdateTransform │ 0x00000323, //803 │
│ 805 │ NtGdiWaitForTextReady │ 0x00000324, //804 │
│ 806 │ NtGdiWidenPath │ 0x00000325, //805 │
│ 807 │ NtGdiXFORMOBJ_bApplyXform │ 0x00000326, //806 │
│ 808 │ NtGdiXFORMOBJ_iGetXform │ 0x00000327, //807 │
│ 809 │ NtGdiXLATEOBJ_cGetPalette │ 0x00000328, //808 │
│ 810 │ NtGdiXLATEOBJ_hGetColorTransform │ 0x00000329, //809 │
│ 811 │ NtGdiXLATEOBJ_iXlate │ 0x0000032A, //810 │
│ 812 │ NtUserGetOwnerTransformedMonitorRect │ 0x0000032B, //811 │
│ 813 │ NtHWCursorUpdatePointer │ 0x0000032C, //812 │
│ 814 │ NtInputSpaceRegionFromPoint │ 0x0000032D, //813 │
│ 815 │ NtIsOneCoreTransformMode │ 0x0000032E, //814 │
│ 816 │ NtKSTInitialize │ 0x0000032F, //815 │
│ 817 │ NtKSTWait │ 0x00000330, //816 │
│ 818 │ NtMITAccessibilityTimerNotification │ 0x00000331, //817 │
│ 819 │ NtMITActivateInputProcessing │ 0x00000332, //818 │
│ 820 │ NtMITConfigureVirtualTouchpad │ 0x00000333, //819 │
│ 821 │ NtMITCoreMsgKOpenConnectionTo │ 0x00000334, //820 │
│ 822 │ NtMITDeactivateInputProcessing │ 0x00000335, //821 │
│ 823 │ NtMITDisableMouseIntercept │ 0x00000336, //822 │
│ 824 │ NtMITDispatchCompletion │ 0x00000337, //823 │
│ 825 │ NtMITEnableMouseIntercept │ 0x00000338, //824 │
│ 826 │ NtMITGetCursorUpdateHandle │ 0x00000339, //825 │
│ 827 │ NtMITInitMinuserThread │ 0x0000033A, //826 │
│ 828 │ NtMITMinuserSetInputTransformOffset │ 0x0000033B, //827 │
│ 829 │ NtMITMinuserWindowDestroyed │ 0x0000033C, //828 │
│ 830 │ NtMITPostMouseInputMessage │ 0x0000033D, //829 │
│ 831 │ NtMITPostThreadEventMessage │ 0x0000033E, //830 │
│ 832 │ NtMITPostWindowEventMessage │ 0x0000033F, //831 │
│ 833 │ NtMITPrepareReceiveInputMessage │ 0x00000340, //832 │
│ 834 │ NtMITPrepareSendInputMessage │ 0x00000341, //833 │
│ 835 │ NtMITProcessDelegateCapturedPointers │ 0x00000342, //834 │
│ 836 │ NtMITSetInputCallbacks │ 0x00000343, //835 │
│ 837 │ NtMITSetInputDelegationMode │ 0x00000344, //836 │
│ 838 │ NtMITSetInputObservationState │ 0x00000345, //837 │
│ 839 │ NtMITSetKeyboardInputRoutingPolicy │ 0x00000346, //838 │
│ 840 │ NtMITSetKeyboardOverriderState │ 0x00000347, //839 │
│ 841 │ NtMITSetLastInputRecipient │ 0x00000348, //840 │
│ 842 │ NtMITSynthesizeKeyboardInput │ 0x00000349, //841 │
│ 843 │ NtMITSynthesizeMouseInput │ 0x0000034A, //842 │
│ 844 │ NtMITSynthesizeTouchInput │ 0x0000034B, //843 │
│ 845 │ NtMITUninitMinuserThread │ 0x0000034C, //844 │
│ 846 │ NtMITUpdateInputGlobals │ 0x0000034D, //845 │
│ 847 │ NtMapVisualRelativePoints │ 0x0000034E, //846 │
│ 848 │ NtMinGetInputTransform │ 0x0000034F, //847 │
│ 849 │ NtMinInteropCoreMessagingWithInput │ 0x00000350, //848 │
│ 850 │ NtMinQPeekForInput │ 0x00000351, //849 │
│ 851 │ NtMinQSuspendInputProcessing │ 0x00000352, //850 │
│ 852 │ NtMinQUpdateWakeMask │ 0x00000353, //851 │
│ 853 │ NtModerncoreBeginLayoutUpdate │ 0x00000354, //852 │
│ 854 │ NtModerncoreCreateDCompositionHwndTarget │ 0x00000355, //853 │
│ 855 │ NtModerncoreCreateGDIHwndTarget │ 0x00000356, //854 │
│ 856 │ NtModerncoreDestroyDCompositionHwndTarget │ 0x00000357, //855 │
│ 857 │ NtModerncoreDestroyGDIHwndTarget │ 0x00000358, //856 │
│ 858 │ NtModerncoreEnableResizeLayoutSynchronization │ 0x00000359, //857 │
│ 859 │ NtModerncoreGetNavigationWindowVisual │ 0x0000035A, //858 │
│ 860 │ NtModerncoreGetResizeDCompositionSynchronizationObject │ 0x0000035B, //859 │
│ 861 │ NtModerncoreGetWindowContentVisual │ 0x0000035C, //860 │
│ 862 │ NtModerncoreIdleTimerThread │ 0x0000035D, //861 │
│ 863 │ NtModerncoreIsResizeLayoutSynchronizationEnabled │ 0x0000035E, //862 │
│ 864 │ NtModerncoreProcessConnect │ 0x0000035F, //863 │
│ 865 │ NtModerncoreRegisterEnhancedNavigationWindowHandle │ 0x00000360, //864 │
│ 866 │ NtModerncoreRegisterNavigationWindowHandle │ 0x00000361, //865 │
│ 867 │ NtModerncoreSetNavigationServiceSid │ 0x00000362, //866 │
│ 868 │ NtModerncoreUnregisterNavigationWindowHandle │ 0x00000363, //867 │
│ 869 │ NtNotifyPresentToCompositionSurface │ 0x00000364, //868 │
│ 870 │ NtOpenCompositionSurfaceDirtyRegion │ 0x00000365, //869 │
│ 871 │ NtOpenCompositionSurfaceRealizationInfo │ 0x00000366, //870 │
│ 872 │ NtOpenCompositionSurfaceSectionInfo │ 0x00000367, //871 │
│ 873 │ NtQueryCompositionInputIsImplicit │ 0x00000368, //872 │
│ 874 │ NtQueryCompositionInputQueueAndTransform │ 0x00000369, //873 │
│ 875 │ NtQueryCompositionInputSink │ 0x0000036A, //874 │
│ 876 │ NtQueryCompositionInputSinkLuid │ 0x0000036B, //875 │
│ 877 │ NtQueryCompositionInputSinkViewId │ 0x0000036C, //876 │
│ 878 │ NtQueryCompositionSurfaceBinding │ 0x0000036D, //877 │
│ 879 │ NtQueryCompositionSurfaceFrameRate │ 0x0000036E, //878 │
│ 880 │ NtQueryCompositionSurfaceHDRMetaData │ 0x0000036F, //879 │
│ 881 │ NtQueryCompositionSurfaceRenderingRealization │ 0x00000370, //880 │
│ 882 │ NtQueryCompositionSurfaceStatistics │ 0x00000371, //881 │
│ 883 │ NtRIMAddInputObserver │ 0x00000372, //882 │
│ 884 │ NtRIMAreSiblingDevices │ 0x00000373, //883 │
│ 885 │ NtRIMDeviceIoControl │ 0x00000374, //884 │
│ 886 │ NtRIMEnableMonitorMappingForDevice │ 0x00000375, //885 │
│ 887 │ NtRIMFreeInputBuffer │ 0x00000376, //886 │
│ 888 │ NtRIMGetDevicePreparsedData │ 0x00000377, //887 │
│ 889 │ NtRIMGetDevicePreparsedDataLockfree │ 0x00000378, //888 │
│ 890 │ NtRIMGetDeviceProperties │ 0x00000379, //889 │
│ 891 │ NtRIMGetDevicePropertiesLockfree │ 0x0000037A, //890 │
│ 892 │ NtRIMGetPhysicalDeviceRect │ 0x0000037B, //891 │
│ 893 │ NtRIMGetSourceProcessId │ 0x0000037C, //892 │
│ 894 │ NtRIMObserveNextInput │ 0x0000037D, //893 │
│ 895 │ NtRIMOnAsyncPnpWorkNotification │ 0x0000037E, //894 │
│ 896 │ NtRIMOnPnpNotification │ 0x0000037F, //895 │
│ 897 │ NtRIMOnTimerNotification │ 0x00000380, //896 │
│ 898 │ NtRIMQueryDevicePath │ 0x00000381, //897 │
│ 899 │ NtRIMReadInput │ 0x00000382, //898 │
│ 900 │ NtRIMRegisterForInputEx │ 0x00000383, //899 │
│ 901 │ NtRIMRemoveInputObserver │ 0x00000384, //900 │
│ 902 │ NtRIMSetDeadzoneRotation │ 0x00000385, //901 │
│ 903 │ NtRIMSetExtendedDeviceProperty │ 0x00000386, //902 │
│ 904 │ NtRIMSetTestModeStatus │ 0x00000387, //903 │
│ 905 │ NtRIMUnregisterForInput │ 0x00000388, //904 │
│ 906 │ NtRIMUpdateInputObserverRegistration │ 0x00000389, //905 │
│ 907 │ NtSetCompositionSurfaceAnalogExclusive │ 0x0000038A, //906 │
│ 908 │ NtSetCompositionSurfaceBufferUsage │ 0x0000038B, //907 │
│ 909 │ NtSetCompositionSurfaceDirectFlipState │ 0x0000038C, //908 │
│ 910 │ NtSetCompositionSurfaceIndependentFlipInfo │ 0x0000038D, //909 │
│ 911 │ NtSetCompositionSurfaceStatistics │ 0x0000038E, //910 │
│ 912 │ NtSetCursorInputSpace │ 0x0000038F, //911 │
│ 913 │ NtSetPointerDeviceInputSpace │ 0x00000390, //912 │
│ 914 │ NtSetShellCursorState │ 0x00000391, //913 │
│ 915 │ NtTokenManagerConfirmOutstandingAnalogToken │ 0x00000392, //914 │
│ 916 │ NtTokenManagerCreateCompositionTokenHandle │ 0x00000393, //915 │
│ 917 │ NtTokenManagerCreateFlipObjectReturnTokenHandle │ 0x00000394, //916 │
│ 918 │ NtTokenManagerCreateFlipObjectTokenHandle │ 0x00000395, //917 │
│ 919 │ NtTokenManagerGetAnalogExclusiveSurfaceUpdates │ 0x00000396, //918 │
│ 920 │ NtTokenManagerGetAnalogExclusiveTokenEvent │ 0x00000397, //919 │
│ 921 │ NtTokenManagerOpenSectionAndEvents │ 0x00000398, //920 │
│ 922 │ NtTokenManagerThread │ 0x00000399, //921 │
│ 923 │ NtUnBindCompositionSurface │ 0x0000039A, //922 │
│ 924 │ NtUpdateInputSinkTransforms │ 0x0000039B, //923 │
│ 925 │ NtUserAcquireIAMKey │ 0x0000039C, //924 │
│ 926 │ NtUserAcquireInteractiveControlBackgroundAccess │ 0x0000039D, //925 │
│ 927 │ NtUserAddClipboardFormatListener │ 0x0000039E, //926 │
│ 928 │ NtUserAddVisualIdentifier │ 0x0000039F, //927 │
│ 929 │ NtUserAllowSetForegroundWindow │ 0x000003A0, //928 │
│ 930 │ NtUserArrangeIconicWindows │ 0x000003A1, //929 │
│ 931 │ NtUserAssociateInputContext │ 0x000003A2, //930 │
│ 932 │ NtUserAutoPromoteMouseInPointer │ 0x000003A3, //931 │
│ 933 │ NtUserAutoRotateScreen │ 0x000003A4, //932 │
│ 934 │ NtUserBeginDeferWindowPos │ 0x000003A5, //933 │
│ 935 │ NtUserBeginLayoutUpdate │ 0x000003A6, //934 │
│ 936 │ NtUserBlockInput │ 0x000003A7, //935 │
│ 937 │ NtUserBroadcastImeShowStatusChange │ 0x000003A8, //936 │
│ 938 │ NtUserBroadcastThemeChangeEvent │ 0x000003A9, //937 │
│ 939 │ NtUserBuildHimcList │ 0x000003AA, //938 │
│ 940 │ NtUserBuildPropList │ 0x000003AB, //939 │
│ 941 │ NtUserCalculatePopupWindowPosition │ 0x000003AC, //940 │
│ 942 │ NtUserCanBrokerForceForeground │ 0x000003AD, //941 │
│ 943 │ NtUserCancelQueueEventCompletionPacket │ 0x000003AE, //942 │
│ 944 │ NtUserChangeDisplaySettings │ 0x000003AF, //943 │
│ 945 │ NtUserChangeWindowMessageFilter │ 0x000003B0, //944 │
│ 946 │ NtUserChangeWindowMessageFilterEx │ 0x000003B1, //945 │
│ 947 │ NtUserCheckAccessForIntegrityLevel │ 0x000003B2, //946 │
│ 948 │ NtUserCheckImeShowStatusInThread │ 0x000003B3, //947 │
│ 949 │ NtUserCheckProcessForClipboardAccess │ 0x000003B4, //948 │
│ 950 │ NtUserCheckProcessSession │ 0x000003B5, //949 │
│ 951 │ NtUserCheckWindowThreadDesktop │ 0x000003B6, //950 │
│ 952 │ NtUserChildWindowFromPointEx │ 0x000003B7, //951 │
│ 953 │ NtUserCitSetInfo │ 0x000003B8, //952 │
│ 954 │ NtUserClearForeground │ 0x000003B9, //953 │
│ 955 │ NtUserClearRunWakeBit │ 0x000003BA, //954 │
│ 956 │ NtUserClearWakeMask │ 0x000003BB, //955 │
│ 957 │ NtUserClearWindowState │ 0x000003BC, //956 │
│ 958 │ NtUserClipCursor │ 0x000003BD, //957 │
│ 959 │ NtUserCompositionInputSinkLuidFromPoint │ 0x000003BE, //958 │
│ 960 │ NtUserCompositionInputSinkViewInstanceIdFromPoint │ 0x000003BF, //959 │
│ 961 │ NtUserConfigureActivationObject │ 0x000003C0, //960 │
│ 962 │ NtUserConfirmResizeCommit │ 0x000003C1, //961 │
│ 963 │ NtUserCreateActivationObject │ 0x000003C2, //962 │
│ 964 │ NtUserCreateBaseWindow │ 0x000003C3, //963 │
│ 965 │ NtUserCreateDCompositionHwndTarget │ 0x000003C4, //964 │
│ 966 │ NtUserCreateDesktopEx │ 0x000003C5, //965 │
│ 967 │ NtUserCreateEmptyCursorObject │ 0x000003C6, //966 │
│ 968 │ NtUserCreateInputContext │ 0x000003C7, //967 │
│ 969 │ NtUserCreateMenu │ 0x000003C8, //968 │
│ 970 │ NtUserCreatePalmRejectionDelayZone │ 0x000003C9, //969 │
│ 971 │ NtUserCreatePopupMenu │ 0x000003CA, //970 │
│ 972 │ NtUserCreateSystemThreads │ 0x000003CB, //971 │
│ 973 │ NtUserCreateWindowStation │ 0x000003CC, //972 │
│ 974 │ NtUserCsDdeUninitialize │ 0x000003CD, //973 │
│ 975 │ NtUserCtxDisplayIOCtl │ 0x000003CE, //974 │
│ 976 │ NtUserDWP_GetEnabledPopupOffset │ 0x000003CF, //975 │
│ 977 │ NtUserDeferWindowDpiChanges │ 0x000003D0, //976 │
│ 978 │ NtUserDeferWindowPosAndBand │ 0x000003D1, //977 │
│ 979 │ NtUserDeferredDesktopRotation │ 0x000003D2, //978 │
│ 980 │ NtUserDelegateCapturePointers │ 0x000003D3, //979 │
│ 981 │ NtUserDelegateInput │ 0x000003D4, //980 │
│ 982 │ NtUserDeregisterShellHookWindow │ 0x000003D5, //981 │
│ 983 │ NtUserDestroyActivationObject │ 0x000003D6, //982 │
│ 984 │ NtUserDestroyCaret │ 0x000003D7, //983 │
│ 985 │ NtUserDestroyDCompositionHwndTarget │ 0x000003D8, //984 │
│ 986 │ NtUserDestroyInputContext │ 0x000003D9, //985 │
│ 987 │ NtUserDestroyPalmRejectionDelayZone │ 0x000003DA, //986 │
│ 988 │ NtUserDisableImmersiveOwner │ 0x000003DB, //987 │
│ 989 │ NtUserDisableProcessWindowFiltering │ 0x000003DC, //988 │
│ 990 │ NtUserDisableProcessWindowsGhosting │ 0x000003DD, //989 │
│ 991 │ NtUserDisableThreadIme │ 0x000003DE, //990 │
│ 992 │ NtUserDiscardPointerFrameMessages │ 0x000003DF, //991 │
│ 993 │ NtUserDisplayConfigGetDeviceInfo │ 0x000003E0, //992 │
│ 994 │ NtUserDisplayConfigSetDeviceInfo │ 0x000003E1, //993 │
│ 995 │ NtUserDoInitMessagePumpHook │ 0x000003E2, //994 │
│ 996 │ NtUserDoSoundConnect │ 0x000003E3, //995 │