-
Notifications
You must be signed in to change notification settings - Fork 9
/
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 │ IndexHex │
├──────┼─────────────────────────────────────────────────────────┼───────┼──────────┤
│ 1 │ NtUserGetThreadState │ 0 │ 0x0 │
│ 2 │ NtUserPeekMessage │ 1 │ 0x1 │
│ 3 │ NtUserGetKeyState │ 2 │ 0x2 │
│ 4 │ NtUserInvalidateRect │ 3 │ 0x3 │
│ 5 │ NtUserGetMessage │ 4 │ 0x4 │
│ 6 │ NtUserMessageCall │ 5 │ 0x5 │
│ 7 │ NtGdiBitBlt │ 6 │ 0x6 │
│ 8 │ NtGdiGetCharSet │ 7 │ 0x7 │
│ 9 │ NtUserGetDC │ 8 │ 0x8 │
│ 10 │ NtGdiSelectBitmap │ 9 │ 0x9 │
│ 11 │ NtUserWaitMessage │ 10 │ 0xa │
│ 12 │ NtUserTranslateMessage │ 11 │ 0xb │
│ 13 │ NtUserGetProp │ 12 │ 0xc │
│ 14 │ NtUserPostMessage │ 13 │ 0xd │
│ 15 │ NtUserQueryWindow │ 14 │ 0xe │
│ 16 │ NtUserTranslateAccelerator │ 15 │ 0xf │
│ 17 │ NtGdiFlush │ 16 │ 0x10 │
│ 18 │ NtUserRedrawWindow │ 17 │ 0x11 │
│ 19 │ NtUserWindowFromPoint │ 18 │ 0x12 │
│ 20 │ NtUserCallMsgFilter │ 19 │ 0x13 │
│ 21 │ NtUserValidateTimerCallback │ 20 │ 0x14 │
│ 22 │ NtUserBeginPaint │ 21 │ 0x15 │
│ 23 │ NtUserSetTimer │ 22 │ 0x16 │
│ 24 │ NtUserEndPaint │ 23 │ 0x17 │
│ 25 │ NtUserSetCursor │ 24 │ 0x18 │
│ 26 │ NtUserKillTimer │ 25 │ 0x19 │
│ 27 │ NtUserBuildHwndList │ 26 │ 0x1a │
│ 28 │ NtUserSelectPalette │ 27 │ 0x1b │
│ 29 │ NtUserCallNextHookEx │ 28 │ 0x1c │
│ 30 │ NtUserHideCaret │ 29 │ 0x1d │
│ 31 │ NtGdiIntersectClipRect │ 30 │ 0x1e │
│ 32 │ NtUserGetProcessWindowStation │ 31 │ 0x1f │
│ 33 │ NtGdiDeleteObjectApp │ 32 │ 0x20 │
│ 34 │ NtUserSetWindowPos │ 33 │ 0x21 │
│ 35 │ NtUserShowCaret │ 34 │ 0x22 │
│ 36 │ NtUserEndDeferWindowPosEx │ 35 │ 0x23 │
│ 37 │ NtUserVkKeyScanEx │ 36 │ 0x24 │
│ 38 │ NtGdiSetDIBitsToDeviceInternal │ 37 │ 0x25 │
│ 39 │ NtGdiGetRandomRgn │ 38 │ 0x26 │
│ 40 │ NtUserCopyAcceleratorTable │ 39 │ 0x27 │
│ 41 │ NtUserNotifyWinEvent │ 40 │ 0x28 │
│ 42 │ NtGdiExtSelectClipRgn │ 41 │ 0x29 │
│ 43 │ NtUserIsClipboardFormatAvailable │ 42 │ 0x2a │
│ 44 │ NtUserSetScrollInfo │ 43 │ 0x2b │
│ 45 │ NtGdiStretchBlt │ 44 │ 0x2c │
│ 46 │ NtUserCreateCaret │ 45 │ 0x2d │
│ 47 │ NtGdiRectVisible │ 46 │ 0x2e │
│ 48 │ NtGdiCombineRgn │ 47 │ 0x2f │
│ 49 │ NtGdiGetDCObject │ 48 │ 0x30 │
│ 50 │ NtUserDispatchMessage │ 49 │ 0x31 │
│ 51 │ NtUserRegisterWindowMessage │ 50 │ 0x32 │
│ 52 │ NtGdiExtTextOutW │ 51 │ 0x33 │
│ 53 │ NtGdiSelectFont │ 52 │ 0x34 │
│ 54 │ NtGdiRestoreDC │ 53 │ 0x35 │
│ 55 │ NtGdiSaveDC │ 54 │ 0x36 │
│ 56 │ NtUserGetForegroundWindow │ 55 │ 0x37 │
│ 57 │ NtUserShowScrollBar │ 56 │ 0x38 │
│ 58 │ NtUserFindExistingCursorIcon │ 57 │ 0x39 │
│ 59 │ NtGdiGetDCDword │ 58 │ 0x3a │
│ 60 │ NtGdiGetRegionData │ 59 │ 0x3b │
│ 61 │ NtGdiLineTo │ 60 │ 0x3c │
│ 62 │ NtUserSystemParametersInfo │ 61 │ 0x3d │
│ 63 │ NtGdiGetAppClipBox │ 62 │ 0x3e │
│ 64 │ NtUserGetAsyncKeyState │ 63 │ 0x3f │
│ 65 │ NtUserGetCPD │ 64 │ 0x40 │
│ 66 │ NtUserRemoveProp │ 65 │ 0x41 │
│ 67 │ NtGdiDoPalette │ 66 │ 0x42 │
│ 68 │ NtGdiPolyPolyDraw │ 67 │ 0x43 │
│ 69 │ NtUserSetCapture │ 68 │ 0x44 │
│ 70 │ NtUserEnumDisplayMonitors │ 69 │ 0x45 │
│ 71 │ NtGdiCreateCompatibleBitmap │ 70 │ 0x46 │
│ 72 │ NtUserSetProp │ 71 │ 0x47 │
│ 73 │ NtGdiGetTextCharsetInfo │ 72 │ 0x48 │
│ 74 │ NtUserSBGetParms │ 73 │ 0x49 │
│ 75 │ NtUserGetIconInfo │ 74 │ 0x4a │
│ 76 │ NtUserExcludeUpdateRgn │ 75 │ 0x4b │
│ 77 │ NtUserSetFocus │ 76 │ 0x4c │
│ 78 │ NtGdiExtGetObjectW │ 77 │ 0x4d │
│ 79 │ NtUserGetUpdateRect │ 78 │ 0x4e │
│ 80 │ NtGdiCreateCompatibleDC │ 79 │ 0x4f │
│ 81 │ NtUserGetClipboardSequenceNumber │ 80 │ 0x50 │
│ 82 │ NtGdiCreatePen │ 81 │ 0x51 │
│ 83 │ NtUserShowWindow │ 82 │ 0x52 │
│ 84 │ NtUserGetKeyboardLayoutList │ 83 │ 0x53 │
│ 85 │ NtGdiPatBlt │ 84 │ 0x54 │
│ 86 │ NtUserMapVirtualKeyEx │ 85 │ 0x55 │
│ 87 │ NtUserSetWindowLong │ 86 │ 0x56 │
│ 88 │ NtGdiHfontCreate │ 87 │ 0x57 │
│ 89 │ NtUserMoveWindow │ 88 │ 0x58 │
│ 90 │ NtUserPostThreadMessage │ 89 │ 0x59 │
│ 91 │ NtUserDrawIconEx │ 90 │ 0x5a │
│ 92 │ NtUserGetSystemMenu │ 91 │ 0x5b │
│ 93 │ NtGdiDrawStream │ 92 │ 0x5c │
│ 94 │ NtUserInternalGetWindowText │ 93 │ 0x5d │
│ 95 │ NtUserGetWindowDC │ 94 │ 0x5e │
│ 96 │ NtGdiInvertRgn │ 95 │ 0x5f │
│ 97 │ NtGdiGetRgnBox │ 96 │ 0x60 │
│ 98 │ NtGdiGetAndSetDCDword │ 97 │ 0x61 │
│ 99 │ NtGdiMaskBlt │ 98 │ 0x62 │
│ 100 │ NtGdiGetWidthTable │ 99 │ 0x63 │
│ 101 │ NtUserScrollDC │ 100 │ 0x64 │
│ 102 │ NtUserGetObjectInformation │ 101 │ 0x65 │
│ 103 │ NtGdiCreateBitmap │ 102 │ 0x66 │
│ 104 │ NtUserFindWindowEx │ 103 │ 0x67 │
│ 105 │ NtGdiPolyPatBlt │ 104 │ 0x68 │
│ 106 │ NtUserUnhookWindowsHookEx │ 105 │ 0x69 │
│ 107 │ NtGdiGetNearestColor │ 106 │ 0x6a │
│ 108 │ NtGdiTransformPoints │ 107 │ 0x6b │
│ 109 │ NtGdiGetDCPoint │ 108 │ 0x6c │
│ 110 │ NtGdiCreateDIBBrush │ 109 │ 0x6d │
│ 111 │ NtGdiGetTextMetricsW │ 110 │ 0x6e │
│ 112 │ NtUserCreateWindowEx │ 111 │ 0x6f │
│ 113 │ NtUserSetParent │ 112 │ 0x70 │
│ 114 │ NtUserGetKeyboardState │ 113 │ 0x71 │
│ 115 │ NtUserToUnicodeEx │ 114 │ 0x72 │
│ 116 │ NtUserGetControlBrush │ 115 │ 0x73 │
│ 117 │ NtUserGetClassName │ 116 │ 0x74 │
│ 118 │ NtGdiAlphaBlend │ 117 │ 0x75 │
│ 119 │ NtGdiOffsetRgn │ 118 │ 0x76 │
│ 120 │ NtUserDefSetText │ 119 │ 0x77 │
│ 121 │ NtGdiGetTextFaceW │ 120 │ 0x78 │
│ 122 │ NtGdiStretchDIBitsInternal │ 121 │ 0x79 │
│ 123 │ NtUserSendInput │ 122 │ 0x7a │
│ 124 │ NtUserGetThreadDesktop │ 123 │ 0x7b │
│ 125 │ NtGdiCreateRectRgn │ 124 │ 0x7c │
│ 126 │ NtGdiGetDIBitsInternal │ 125 │ 0x7d │
│ 127 │ NtUserGetUpdateRgn │ 126 │ 0x7e │
│ 128 │ NtGdiDeleteClientObj │ 127 │ 0x7f │
│ 129 │ NtUserGetIconSize │ 128 │ 0x80 │
│ 130 │ NtUserFillWindow │ 129 │ 0x81 │
│ 131 │ NtGdiExtCreateRegion │ 130 │ 0x82 │
│ 132 │ NtGdiComputeXformCoefficients │ 131 │ 0x83 │
│ 133 │ NtUserSetWindowsHookEx │ 132 │ 0x84 │
│ 134 │ NtUserNotifyProcessCreate │ 133 │ 0x85 │
│ 135 │ NtGdiUnrealizeObject │ 134 │ 0x86 │
│ 136 │ NtUserGetTitleBarInfo │ 135 │ 0x87 │
│ 137 │ NtGdiRectangle │ 136 │ 0x88 │
│ 138 │ NtUserSetThreadDesktop │ 137 │ 0x89 │
│ 139 │ NtUserGetDCEx │ 138 │ 0x8a │
│ 140 │ NtUserGetScrollBarInfo │ 139 │ 0x8b │
│ 141 │ NtGdiGetTextExtent │ 140 │ 0x8c │
│ 142 │ NtUserSetWindowFNID │ 141 │ 0x8d │
│ 143 │ NtGdiSetLayout │ 142 │ 0x8e │
│ 144 │ NtUserCalcMenuBar │ 143 │ 0x8f │
│ 145 │ NtUserThunkedMenuItemInfo │ 144 │ 0x90 │
│ 146 │ NtGdiExcludeClipRect │ 145 │ 0x91 │
│ 147 │ NtGdiCreateDIBSection │ 146 │ 0x92 │
│ 148 │ NtGdiGetDCforBitmap │ 147 │ 0x93 │
│ 149 │ NtUserDestroyCursor │ 148 │ 0x94 │
│ 150 │ NtUserDestroyWindow │ 149 │ 0x95 │
│ 151 │ NtGdiCreateDIBitmapInternal │ 150 │ 0x96 │
│ 152 │ NtUserOpenWindowStation │ 151 │ 0x97 │
│ 153 │ NtUserSetCursorIconData │ 152 │ 0x98 │
│ 154 │ NtUserCloseDesktop │ 153 │ 0x99 │
│ 155 │ NtUserOpenDesktop │ 154 │ 0x9a │
│ 156 │ NtUserSetProcessWindowStation │ 155 │ 0x9b │
│ 157 │ NtUserGetAtomName │ 156 │ 0x9c │
│ 158 │ NtGdiExtCreatePen │ 157 │ 0x9d │
│ 159 │ NtGdiCreatePaletteInternal │ 158 │ 0x9e │
│ 160 │ NtGdiSetBrushOrg │ 159 │ 0x9f │
│ 161 │ NtUserBuildNameList │ 160 │ 0xa0 │
│ 162 │ NtGdiSetPixel │ 161 │ 0xa1 │
│ 163 │ NtUserRegisterClassExWOW │ 162 │ 0xa2 │
│ 164 │ NtGdiCreatePatternBrushInternal │ 163 │ 0xa3 │
│ 165 │ NtUserGetAncestor │ 164 │ 0xa4 │
│ 166 │ NtGdiGetOutlineTextMetricsInternalW │ 165 │ 0xa5 │
│ 167 │ NtGdiSetBitmapBits │ 166 │ 0xa6 │
│ 168 │ NtUserCloseWindowStation │ 167 │ 0xa7 │
│ 169 │ NtUserGetDoubleClickTime │ 168 │ 0xa8 │
│ 170 │ NtUserEnableScrollBar │ 169 │ 0xa9 │
│ 171 │ NtGdiCreateSolidBrush │ 170 │ 0xaa │
│ 172 │ NtUserGetClassInfoEx │ 171 │ 0xab │
│ 173 │ NtGdiCreateClientObj │ 172 │ 0xac │
│ 174 │ NtUserUnregisterClass │ 173 │ 0xad │
│ 175 │ NtUserDeleteMenu │ 174 │ 0xae │
│ 176 │ NtGdiRectInRegion │ 175 │ 0xaf │
│ 177 │ NtUserScrollWindowEx │ 176 │ 0xb0 │
│ 178 │ NtGdiGetPixel │ 177 │ 0xb1 │
│ 179 │ NtUserSetClassLong │ 178 │ 0xb2 │
│ 180 │ NtUserGetMenuBarInfo │ 179 │ 0xb3 │
│ 181 │ NtGdiGetNearestPaletteIndex │ 180 │ 0xb4 │
│ 182 │ NtGdiGetCharWidthW │ 181 │ 0xb5 │
│ 183 │ NtUserInvalidateRgn │ 182 │ 0xb6 │
│ 184 │ NtUserGetClipboardOwner │ 183 │ 0xb7 │
│ 185 │ NtUserSetWindowRgn │ 184 │ 0xb8 │
│ 186 │ NtUserBitBltSysBmp │ 185 │ 0xb9 │
│ 187 │ NtGdiGetCharWidthInfo │ 186 │ 0xba │
│ 188 │ NtUserValidateRect │ 187 │ 0xbb │
│ 189 │ NtUserCloseClipboard │ 188 │ 0xbc │
│ 190 │ NtUserOpenClipboard │ 189 │ 0xbd │
│ 191 │ NtUserSetClipboardData │ 190 │ 0xbe │
│ 192 │ NtUserEnableMenuItem │ 191 │ 0xbf │
│ 193 │ NtUserAlterWindowStyle │ 192 │ 0xc0 │
│ 194 │ NtGdiFillRgn │ 193 │ 0xc1 │
│ 195 │ NtUserGetWindowPlacement │ 194 │ 0xc2 │
│ 196 │ NtGdiModifyWorldTransform │ 195 │ 0xc3 │
│ 197 │ NtGdiGetFontData │ 196 │ 0xc4 │
│ 198 │ NtUserGetOpenClipboardWindow │ 197 │ 0xc5 │
│ 199 │ NtUserSetThreadState │ 198 │ 0xc6 │
│ 200 │ NtGdiOpenDCW │ 199 │ 0xc7 │
│ 201 │ NtUserTrackMouseEvent │ 200 │ 0xc8 │
│ 202 │ NtGdiGetTransform │ 201 │ 0xc9 │
│ 203 │ NtUserDestroyMenu │ 202 │ 0xca │
│ 204 │ NtGdiGetBitmapBits │ 203 │ 0xcb │
│ 205 │ NtUserConsoleControl │ 204 │ 0xcc │
│ 206 │ NtUserSetActiveWindow │ 205 │ 0xcd │
│ 207 │ NtUserSetInformationThread │ 206 │ 0xce │
│ 208 │ NtUserSetWindowPlacement │ 207 │ 0xcf │
│ 209 │ NtUserGetControlColor │ 208 │ 0xd0 │
│ 210 │ NtGdiSetMetaRgn │ 209 │ 0xd1 │
│ 211 │ NtGdiSetMiterLimit │ 210 │ 0xd2 │
│ 212 │ NtGdiSetVirtualResolution │ 211 │ 0xd3 │
│ 213 │ NtGdiGetRasterizerCaps │ 212 │ 0xd4 │
│ 214 │ NtUserSetWindowWord │ 213 │ 0xd5 │
│ 215 │ NtUserGetClipboardFormatName │ 214 │ 0xd6 │
│ 216 │ NtUserRealInternalGetMessage │ 215 │ 0xd7 │
│ 217 │ NtUserCreateLocalMemHandle │ 216 │ 0xd8 │
│ 218 │ NtUserAttachThreadInput │ 217 │ 0xd9 │
│ 219 │ NtGdiCreateHalftonePalette │ 218 │ 0xda │
│ 220 │ NtUserPaintMenuBar │ 219 │ 0xdb │
│ 221 │ NtUserSetKeyboardState │ 220 │ 0xdc │
│ 222 │ NtGdiCombineTransform │ 221 │ 0xdd │
│ 223 │ NtUserCreateAcceleratorTable │ 222 │ 0xde │
│ 224 │ NtUserGetCursorFrameInfo │ 223 │ 0xdf │
│ 225 │ NtUserGetAltTabInfo │ 224 │ 0xe0 │
│ 226 │ NtUserGetCaretBlinkTime │ 225 │ 0xe1 │
│ 227 │ NtGdiQueryFontAssocInfo │ 226 │ 0xe2 │
│ 228 │ NtUserProcessConnect │ 227 │ 0xe3 │
│ 229 │ NtUserEnumDisplayDevices │ 228 │ 0xe4 │
│ 230 │ NtUserEmptyClipboard │ 229 │ 0xe5 │
│ 231 │ NtUserGetClipboardData │ 230 │ 0xe6 │
│ 232 │ NtUserRemoveMenu │ 231 │ 0xe7 │
│ 233 │ NtGdiSetBoundsRect │ 232 │ 0xe8 │
│ 234 │ NtGdiGetBitmapDimension │ 233 │ 0xe9 │
│ 235 │ NtUserConvertMemHandle │ 234 │ 0xea │
│ 236 │ NtUserDestroyAcceleratorTable │ 235 │ 0xeb │
│ 237 │ NtUserGetGUIThreadInfo │ 236 │ 0xec │
│ 238 │ NtGdiCloseFigure │ 237 │ 0xed │
│ 239 │ NtUserSetWindowsHookAW │ 238 │ 0xee │
│ 240 │ NtUserSetMenuDefaultItem │ 239 │ 0xef │
│ 241 │ NtUserCheckMenuItem │ 240 │ 0xf0 │
│ 242 │ NtUserSetWinEventHook │ 241 │ 0xf1 │
│ 243 │ NtUserUnhookWinEvent │ 242 │ 0xf2 │
│ 244 │ NtUserLockWindowUpdate │ 243 │ 0xf3 │
│ 245 │ NtUserSetSystemMenu │ 244 │ 0xf4 │
│ 246 │ NtUserThunkedMenuInfo │ 245 │ 0xf5 │
│ 247 │ NtGdiBeginPath │ 246 │ 0xf6 │
│ 248 │ NtGdiEndPath │ 247 │ 0xf7 │
│ 249 │ NtGdiFillPath │ 248 │ 0xf8 │
│ 250 │ NtUserDdeInitialize │ 249 │ 0xf9 │
│ 251 │ NtUserModifyUserStartupInfoFlags │ 250 │ 0xfa │
│ 252 │ NtUserCountClipboardFormats │ 251 │ 0xfb │
│ 253 │ NtGdiAddFontMemResourceEx │ 252 │ 0xfc │
│ 254 │ NtGdiEqualRgn │ 253 │ 0xfd │
│ 255 │ NtGdiGetSystemPaletteUse │ 254 │ 0xfe │
│ 256 │ NtGdiRemoveFontMemResourceEx │ 255 │ 0xff │
│ 257 │ NtUserEnumDisplaySettings │ 256 │ 0x100 │
│ 258 │ NtUserPaintDesktop │ 257 │ 0x101 │
│ 259 │ NtGdiExtEscape │ 258 │ 0x102 │
│ 260 │ NtGdiSetBitmapDimension │ 259 │ 0x103 │
│ 261 │ NtGdiSetFontEnumeration │ 260 │ 0x104 │
│ 262 │ NtUserChangeClipboardChain │ 261 │ 0x105 │
│ 263 │ NtUserSetClipboardViewer │ 262 │ 0x106 │
│ 264 │ NtUserShowWindowAsync │ 263 │ 0x107 │
│ 265 │ NtGdiCreateColorSpace │ 264 │ 0x108 │
│ 266 │ NtGdiDeleteColorSpace │ 265 │ 0x109 │
│ 267 │ NtUserActivateKeyboardLayout │ 266 │ 0x10a │
│ 268 │ NtBindCompositionSurface │ 267 │ 0x10b │
│ 269 │ NtCloseCompositionInputSink │ 268 │ 0x10c │
│ 270 │ NtCompositionInputThread │ 269 │ 0x10d │
│ 271 │ NtCompositionSetDropTarget │ 270 │ 0x10e │
│ 272 │ NtCompositorNotifyExitWindows │ 271 │ 0x10f │
│ 273 │ NtConfigureInputSpace │ 272 │ 0x110 │
│ 274 │ NtCreateCompositionInputSink │ 273 │ 0x111 │
│ 275 │ NtCreateCompositionSurfaceHandle │ 274 │ 0x112 │
│ 276 │ NtCreateImplicitCompositionInputSink │ 275 │ 0x113 │
│ 277 │ NtDCompositionAddCrossDeviceVisualChild │ 276 │ 0x114 │
│ 278 │ NtDCompositionBeginFrame │ 277 │ 0x115 │
│ 279 │ NtDCompositionBoostCompositorClock │ 278 │ 0x116 │
│ 280 │ NtDCompositionCommitChannel │ 279 │ 0x117 │
│ 281 │ NtDCompositionCommitSynchronizationObject │ 280 │ 0x118 │
│ 282 │ NtDCompositionConfirmFrame │ 281 │ 0x119 │
│ 283 │ NtDCompositionConnectPipe │ 282 │ 0x11a │
│ 284 │ NtDCompositionCreateAndBindSharedSection │ 283 │ 0x11b │
│ 285 │ NtDCompositionCreateChannel │ 284 │ 0x11c │
│ 286 │ NtDCompositionCreateConnection │ 285 │ 0x11d │
│ 287 │ NtDCompositionCreateDwmChannel │ 286 │ 0x11e │
│ 288 │ NtDCompositionCreateSharedResourceHandle │ 287 │ 0x11f │
│ 289 │ NtDCompositionCreateSynchronizationObject │ 288 │ 0x120 │
│ 290 │ NtDCompositionDestroyChannel │ 289 │ 0x121 │
│ 291 │ NtDCompositionDestroyConnection │ 290 │ 0x122 │
│ 292 │ NtDCompositionDuplicateHandleToProcess │ 291 │ 0x123 │
│ 293 │ NtDCompositionDuplicateSwapchainHandleToDwm │ 292 │ 0x124 │
│ 294 │ NtDCompositionEnableMMCSS │ 293 │ 0x125 │
│ 295 │ NtDCompositionGetBatchId │ 294 │ 0x126 │
│ 296 │ NtDCompositionGetChannels │ 295 │ 0x127 │
│ 297 │ NtDCompositionGetConnectionBatch │ 296 │ 0x128 │
│ 298 │ NtDCompositionGetDeletedResources │ 297 │ 0x129 │
│ 299 │ NtDCompositionGetFrameId │ 298 │ 0x12a │
│ 300 │ NtDCompositionGetFrameIdFromBatchId │ 299 │ 0x12b │
│ 301 │ NtDCompositionGetFrameLegacyTokens │ 300 │ 0x12c │
│ 302 │ NtDCompositionGetFrameStatistics │ 301 │ 0x12d │
│ 303 │ NtDCompositionGetFrameSurfaceUpdates │ 302 │ 0x12e │
│ 304 │ NtDCompositionGetMaterialProperty │ 303 │ 0x12f │
│ 305 │ NtDCompositionGetStatistics │ 304 │ 0x130 │
│ 306 │ NtDCompositionGetTargetStatistics │ 305 │ 0x131 │
│ 307 │ NtDCompositionNotifySuperWetInkWork │ 306 │ 0x132 │
│ 308 │ NtDCompositionProcessChannelBatchBuffer │ 307 │ 0x133 │
│ 309 │ NtDCompositionReferenceSharedResourceOnDwmChannel │ 308 │ 0x134 │
│ 310 │ NtDCompositionRegisterThumbnailVisual │ 309 │ 0x135 │
│ 311 │ NtDCompositionRegisterVirtualDesktopVisual │ 310 │ 0x136 │
│ 312 │ NtDCompositionReleaseAllResources │ 311 │ 0x137 │
│ 313 │ NtDCompositionRemoveCrossDeviceVisualChild │ 312 │ 0x138 │
│ 314 │ NtDCompositionSetBlurredWallpaperSurface │ 313 │ 0x139 │
│ 315 │ NtDCompositionSetChannelCommitCompletionEvent │ 314 │ 0x13a │
│ 316 │ NtDCompositionSetChannelConnectionId │ 315 │ 0x13b │
│ 317 │ NtDCompositionSetChildRootVisual │ 316 │ 0x13c │
│ 318 │ NtDCompositionSetDebugCounter │ 317 │ 0x13d │
│ 319 │ NtDCompositionSetMaterialProperty │ 318 │ 0x13e │
│ 320 │ NtDCompositionSubmitDWMBatch │ 319 │ 0x13f │
│ 321 │ NtDCompositionSuspendAnimations │ 320 │ 0x140 │
│ 322 │ NtDCompositionSynchronize │ 321 │ 0x141 │
│ 323 │ NtDCompositionTelemetrySetApplicationId │ 322 │ 0x142 │
│ 324 │ NtDCompositionUpdatePointerCapture │ 323 │ 0x143 │
│ 325 │ NtDCompositionWaitForChannel │ 324 │ 0x144 │
│ 326 │ NtDCompositionWaitForCompositorClock │ 325 │ 0x145 │
│ 327 │ NtDesktopCaptureBits │ 326 │ 0x146 │
│ 328 │ NtDuplicateCompositionInputSink │ 327 │ 0x147 │
│ 329 │ NtDxgkCancelPresents │ 328 │ 0x148 │
│ 330 │ NtDxgkCheckSinglePlaneForMultiPlaneOverlaySupport │ 329 │ 0x149 │
│ 331 │ NtDxgkConnectDoorbell │ 330 │ 0x14a │
│ 332 │ NtDxgkCreateDoorbell │ 331 │ 0x14b │
│ 333 │ NtDxgkCreateNativeFence │ 332 │ 0x14c │
│ 334 │ NtDxgkCreateTrackedWorkload │ 333 │ 0x14d │
│ 335 │ NtDxgkDestroyDoorbell │ 334 │ 0x14e │
│ 336 │ NtDxgkDestroyTrackedWorkload │ 335 │ 0x14f │
│ 337 │ NtDxgkDispMgrOperation │ 336 │ 0x150 │
│ 338 │ NtDxgkDisplayPortOperation │ 337 │ 0x151 │
│ 339 │ NtDxgkDuplicateHandle │ 338 │ 0x152 │
│ 340 │ NtDxgkEnumAdapters3 │ 339 │ 0x153 │
│ 341 │ NtDxgkEnumProcesses │ 340 │ 0x154 │
│ 342 │ NtDxgkGetAvailableTrackedWorkloadIndex │ 341 │ 0x155 │
│ 343 │ NtDxgkGetProcessList │ 342 │ 0x156 │
│ 344 │ NtDxgkGetProperties │ 343 │ 0x157 │
│ 345 │ NtDxgkGetTrackedWorkloadStatistics │ 344 │ 0x158 │
│ 346 │ NtDxgkNotifyWorkSubmission │ 345 │ 0x159 │
│ 347 │ NtDxgkOpenNativeFenceFromNtHandle │ 346 │ 0x15a │
│ 348 │ NtDxgkOutputDuplPresentToHwQueue │ 347 │ 0x15b │
│ 349 │ NtDxgkPinResources │ 348 │ 0x15c │
│ 350 │ NtDxgkRegisterVailProcess │ 349 │ 0x15d │
│ 351 │ NtDxgkResetTrackedWorkloadStatistics │ 350 │ 0x15e │
│ 352 │ NtDxgkSetProperties │ 351 │ 0x15f │
│ 353 │ NtDxgkSubmitPresentBltToHwQueue │ 352 │ 0x160 │
│ 354 │ NtDxgkSubmitPresentToHwQueue │ 353 │ 0x161 │
│ 355 │ NtDxgkUnpinResources │ 354 │ 0x162 │
│ 356 │ NtDxgkUpdateTrackedWorkload │ 355 │ 0x163 │
│ 357 │ NtDxgkVailConnect │ 356 │ 0x164 │
│ 358 │ NtDxgkVailDisconnect │ 357 │ 0x165 │
│ 359 │ NtDxgkVailPromoteCompositionSurface │ 358 │ 0x166 │
│ 360 │ NtEnableOneCoreTransformMode │ 359 │ 0x167 │
│ 361 │ NtFlipObjectAddContent │ 360 │ 0x168 │
│ 362 │ NtFlipObjectAddPoolBuffer │ 361 │ 0x169 │
│ 363 │ NtFlipObjectConsumerAcquirePresent │ 362 │ 0x16a │
│ 364 │ NtFlipObjectConsumerAdjustUsageReference │ 363 │ 0x16b │
│ 365 │ NtFlipObjectConsumerBeginProcessPresent │ 364 │ 0x16c │
│ 366 │ NtFlipObjectConsumerEndProcessPresent │ 365 │ 0x16d │
│ 367 │ NtFlipObjectConsumerPostMessage │ 366 │ 0x16e │
│ 368 │ NtFlipObjectConsumerQueryBufferInfo │ 367 │ 0x16f │
│ 369 │ NtFlipObjectCreate │ 368 │ 0x170 │
│ 370 │ NtFlipObjectDisconnectEndpoint │ 369 │ 0x171 │
│ 371 │ NtFlipObjectEnablePresentStatisticsType │ 370 │ 0x172 │
│ 372 │ NtFlipObjectOpen │ 371 │ 0x173 │
│ 373 │ NtFlipObjectPresentCancel │ 372 │ 0x174 │
│ 374 │ NtFlipObjectQueryBufferAvailableEvent │ 373 │ 0x175 │
│ 375 │ NtFlipObjectQueryEndpointConnected │ 374 │ 0x176 │
│ 376 │ NtFlipObjectQueryLostEvent │ 375 │ 0x177 │
│ 377 │ NtFlipObjectQueryNextMessageToProducer │ 376 │ 0x178 │
│ 378 │ NtFlipObjectReadNextMessageToProducer │ 377 │ 0x179 │
│ 379 │ NtFlipObjectRemoveContent │ 378 │ 0x17a │
│ 380 │ NtFlipObjectRemovePoolBuffer │ 379 │ 0x17b │
│ 381 │ NtFlipObjectSetContent │ 380 │ 0x17c │
│ 382 │ NtGdiAbortDoc │ 381 │ 0x17d │
│ 383 │ NtGdiAbortPath │ 382 │ 0x17e │
│ 384 │ NtGdiAddEmbFontToDC │ 383 │ 0x17f │
│ 385 │ NtGdiAddFontResourceW │ 384 │ 0x180 │
│ 386 │ NtGdiAddInitialFonts │ 385 │ 0x181 │
│ 387 │ NtGdiAddRemoteFontToDC │ 386 │ 0x182 │
│ 388 │ NtGdiAddRemoteMMInstanceToDC │ 387 │ 0x183 │
│ 389 │ NtGdiAngleArc │ 388 │ 0x184 │
│ 390 │ NtGdiAnyLinkedFonts │ 389 │ 0x185 │
│ 391 │ NtGdiArcInternal │ 390 │ 0x186 │
│ 392 │ NtGdiBRUSHOBJ_DeleteRbrush │ 391 │ 0x187 │
│ 393 │ NtGdiBRUSHOBJ_hGetColorTransform │ 392 │ 0x188 │
│ 394 │ NtGdiBRUSHOBJ_pvAllocRbrush │ 393 │ 0x189 │
│ 395 │ NtGdiBRUSHOBJ_pvGetRbrush │ 394 │ 0x18a │
│ 396 │ NtGdiBRUSHOBJ_ulGetBrushColor │ 395 │ 0x18b │
│ 397 │ NtGdiBeginGdiRendering │ 396 │ 0x18c │
│ 398 │ NtGdiCLIPOBJ_bEnum │ 397 │ 0x18d │
│ 399 │ NtGdiCLIPOBJ_cEnumStart │ 398 │ 0x18e │
│ 400 │ NtGdiCLIPOBJ_ppoGetPath │ 399 │ 0x18f │
│ 401 │ NtGdiCancelDC │ 400 │ 0x190 │
│ 402 │ NtGdiChangeGhostFont │ 401 │ 0x191 │
│ 403 │ NtGdiCheckBitmapBits │ 402 │ 0x192 │
│ 404 │ NtGdiClearBitmapAttributes │ 403 │ 0x193 │
│ 405 │ NtGdiClearBrushAttributes │ 404 │ 0x194 │
│ 406 │ NtGdiColorCorrectPalette │ 405 │ 0x195 │
│ 407 │ NtGdiConfigureOPMProtectedOutput │ 406 │ 0x196 │
│ 408 │ NtGdiConvertMetafileRect │ 407 │ 0x197 │
│ 409 │ NtGdiCreateBitmapFromDxSurface │ 408 │ 0x198 │
│ 410 │ NtGdiCreateBitmapFromDxSurface2 │ 409 │ 0x199 │
│ 411 │ NtGdiCreateColorTransform │ 410 │ 0x19a │
│ 412 │ NtGdiCreateEllipticRgn │ 411 │ 0x19b │
│ 413 │ NtGdiCreateHatchBrushInternal │ 412 │ 0x19c │
│ 414 │ NtGdiCreateMetafileDC │ 413 │ 0x19d │
│ 415 │ NtGdiCreateOPMProtectedOutput │ 414 │ 0x19e │
│ 416 │ NtGdiCreateOPMProtectedOutputs │ 415 │ 0x19f │
│ 417 │ NtGdiCreateRoundRectRgn │ 416 │ 0x1a0 │
│ 418 │ NtGdiCreateServerMetaFile │ 417 │ 0x1a1 │
│ 419 │ NtGdiCreateSessionMappedDIBSection │ 418 │ 0x1a2 │
│ 420 │ NtGdiDDCCIGetCapabilitiesString │ 419 │ 0x1a3 │
│ 421 │ NtGdiDDCCIGetCapabilitiesStringLength │ 420 │ 0x1a4 │
│ 422 │ NtGdiDDCCIGetTimingReport │ 421 │ 0x1a5 │
│ 423 │ NtGdiDDCCIGetVCPFeature │ 422 │ 0x1a6 │
│ 424 │ NtGdiDDCCISaveCurrentSettings │ 423 │ 0x1a7 │
│ 425 │ NtGdiDDCCISetVCPFeature │ 424 │ 0x1a8 │
│ 426 │ NtGdiDdCreateFullscreenSprite │ 425 │ 0x1a9 │
│ 427 │ NtGdiDdDDIAbandonSwapChain │ 426 │ 0x1aa │
│ 428 │ NtGdiDdDDIAcquireKeyedMutex │ 427 │ 0x1ab │
│ 429 │ NtGdiDdDDIAcquireKeyedMutex2 │ 428 │ 0x1ac │
│ 430 │ NtGdiDdDDIAcquireSwapChain │ 429 │ 0x1ad │
│ 431 │ NtGdiDdDDIAddSurfaceToSwapChain │ 430 │ 0x1ae │
│ 432 │ NtGdiDdDDIAdjustFullscreenGamma │ 431 │ 0x1af │
│ 433 │ NtGdiDdDDICacheHybridQueryValue │ 432 │ 0x1b0 │
│ 434 │ NtGdiDdDDIChangeVideoMemoryReservation │ 433 │ 0x1b1 │
│ 435 │ NtGdiDdDDICheckExclusiveOwnership │ 434 │ 0x1b2 │
│ 436 │ NtGdiDdDDICheckMonitorPowerState │ 435 │ 0x1b3 │
│ 437 │ NtGdiDdDDICheckMultiPlaneOverlaySupport │ 436 │ 0x1b4 │
│ 438 │ NtGdiDdDDICheckMultiPlaneOverlaySupport2 │ 437 │ 0x1b5 │
│ 439 │ NtGdiDdDDICheckMultiPlaneOverlaySupport3 │ 438 │ 0x1b6 │
│ 440 │ NtGdiDdDDICheckOcclusion │ 439 │ 0x1b7 │
│ 441 │ NtGdiDdDDICheckSharedResourceAccess │ 440 │ 0x1b8 │
│ 442 │ NtGdiDdDDICheckVidPnExclusiveOwnership │ 441 │ 0x1b9 │
│ 443 │ NtGdiDdDDICloseAdapter │ 442 │ 0x1ba │
│ 444 │ NtGdiDdDDIConfigureSharedResource │ 443 │ 0x1bb │
│ 445 │ NtGdiDdDDICreateAllocation │ 444 │ 0x1bc │
│ 446 │ NtGdiDdDDICreateBundleObject │ 445 │ 0x1bd │
│ 447 │ NtGdiDdDDICreateContext │ 446 │ 0x1be │
│ 448 │ NtGdiDdDDICreateContextVirtual │ 447 │ 0x1bf │
│ 449 │ NtGdiDdDDICreateDCFromMemory │ 448 │ 0x1c0 │
│ 450 │ NtGdiDdDDICreateDevice │ 449 │ 0x1c1 │
│ 451 │ NtGdiDdDDICreateHwContext │ 450 │ 0x1c2 │
│ 452 │ NtGdiDdDDICreateHwQueue │ 451 │ 0x1c3 │
│ 453 │ NtGdiDdDDICreateKeyedMutex │ 452 │ 0x1c4 │
│ 454 │ NtGdiDdDDICreateKeyedMutex2 │ 453 │ 0x1c5 │
│ 455 │ NtGdiDdDDICreateOutputDupl │ 454 │ 0x1c6 │
│ 456 │ NtGdiDdDDICreateOverlay │ 455 │ 0x1c7 │
│ 457 │ NtGdiDdDDICreatePagingQueue │ 456 │ 0x1c8 │
│ 458 │ NtGdiDdDDICreateProtectedSession │ 457 │ 0x1c9 │
│ 459 │ NtGdiDdDDICreateSwapChain │ 458 │ 0x1ca │
│ 460 │ NtGdiDdDDICreateSynchronizationObject │ 459 │ 0x1cb │
│ 461 │ NtGdiDdDDIDDisplayEnum │ 460 │ 0x1cc │
│ 462 │ NtGdiDdDDIDestroyAllocation │ 461 │ 0x1cd │
│ 463 │ NtGdiDdDDIDestroyAllocation2 │ 462 │ 0x1ce │
│ 464 │ NtGdiDdDDIDestroyContext │ 463 │ 0x1cf │
│ 465 │ NtGdiDdDDIDestroyDCFromMemory │ 464 │ 0x1d0 │
│ 466 │ NtGdiDdDDIDestroyDevice │ 465 │ 0x1d1 │
│ 467 │ NtGdiDdDDIDestroyHwContext │ 466 │ 0x1d2 │
│ 468 │ NtGdiDdDDIDestroyHwQueue │ 467 │ 0x1d3 │
│ 469 │ NtGdiDdDDIDestroyKeyedMutex │ 468 │ 0x1d4 │
│ 470 │ NtGdiDdDDIDestroyOutputDupl │ 469 │ 0x1d5 │
│ 471 │ NtGdiDdDDIDestroyOverlay │ 470 │ 0x1d6 │
│ 472 │ NtGdiDdDDIDestroyPagingQueue │ 471 │ 0x1d7 │
│ 473 │ NtGdiDdDDIDestroyProtectedSession │ 472 │ 0x1d8 │
│ 474 │ NtGdiDdDDIDestroySynchronizationObject │ 473 │ 0x1d9 │
│ 475 │ NtGdiDdDDIDispMgrCreate │ 474 │ 0x1da │
│ 476 │ NtGdiDdDDIDispMgrSourceOperation │ 475 │ 0x1db │
│ 477 │ NtGdiDdDDIDispMgrTargetOperation │ 476 │ 0x1dc │
│ 478 │ NtGdiDdDDIEnumAdapters │ 477 │ 0x1dd │
│ 479 │ NtGdiDdDDIEnumAdapters2 │ 478 │ 0x1de │
│ 480 │ NtGdiDdDDIEscape │ 479 │ 0x1df │
│ 481 │ NtGdiDdDDIEvict │ 480 │ 0x1e0 │
│ 482 │ NtGdiDdDDIExtractBundleObject │ 481 │ 0x1e1 │
│ 483 │ NtGdiDdDDIFlipOverlay │ 482 │ 0x1e2 │
│ 484 │ NtGdiDdDDIFlushHeapTransitions │ 483 │ 0x1e3 │
│ 485 │ NtGdiDdDDIFreeGpuVirtualAddress │ 484 │ 0x1e4 │
│ 486 │ NtGdiDdDDIGetAllocationPriority │ 485 │ 0x1e5 │
│ 487 │ NtGdiDdDDIGetCachedHybridQueryValue │ 486 │ 0x1e6 │
│ 488 │ NtGdiDdDDIGetContextInProcessSchedulingPriority │ 487 │ 0x1e7 │
│ 489 │ NtGdiDdDDIGetContextSchedulingPriority │ 488 │ 0x1e8 │
│ 490 │ NtGdiDdDDIGetDWMVerticalBlankEvent │ 489 │ 0x1e9 │
│ 491 │ NtGdiDdDDIGetDeviceState │ 490 │ 0x1ea │
│ 492 │ NtGdiDdDDIGetDisplayModeList │ 491 │ 0x1eb │
│ 493 │ NtGdiDdDDIGetMemoryBudgetTarget │ 492 │ 0x1ec │
│ 494 │ NtGdiDdDDIGetMultiPlaneOverlayCaps │ 493 │ 0x1ed │
│ 495 │ NtGdiDdDDIGetMultisampleMethodList │ 494 │ 0x1ee │
│ 496 │ NtGdiDdDDIGetOverlayState │ 495 │ 0x1ef │
│ 497 │ NtGdiDdDDIGetPostCompositionCaps │ 496 │ 0x1f0 │
│ 498 │ NtGdiDdDDIGetPresentHistory │ 497 │ 0x1f1 │
│ 499 │ NtGdiDdDDIGetPresentQueueEvent │ 498 │ 0x1f2 │
│ 500 │ NtGdiDdDDIGetProcessDeviceRemovalSupport │ 499 │ 0x1f3 │
│ 501 │ NtGdiDdDDIGetProcessSchedulingPriorityBand │ 500 │ 0x1f4 │
│ 502 │ NtGdiDdDDIGetProcessSchedulingPriorityClass │ 501 │ 0x1f5 │
│ 503 │ NtGdiDdDDIGetResourcePresentPrivateDriverData │ 502 │ 0x1f6 │
│ 504 │ NtGdiDdDDIGetRuntimeData │ 503 │ 0x1f7 │
│ 505 │ NtGdiDdDDIGetScanLine │ 504 │ 0x1f8 │
│ 506 │ NtGdiDdDDIGetSetSwapChainMetadata │ 505 │ 0x1f9 │
│ 507 │ NtGdiDdDDIGetSharedPrimaryHandle │ 506 │ 0x1fa │
│ 508 │ NtGdiDdDDIGetSharedResourceAdapterLuid │ 507 │ 0x1fb │
│ 509 │ NtGdiDdDDIGetSharedResourceAdapterLuidFlipManager │ 508 │ 0x1fc │
│ 510 │ NtGdiDdDDIGetSwapChainSurfacePhysicalAddress │ 509 │ 0x1fd │
│ 511 │ NtGdiDdDDIGetYieldPercentage │ 510 │ 0x1fe │
│ 512 │ NtGdiDdDDIInvalidateActiveVidPn │ 511 │ 0x1ff │
│ 513 │ NtGdiDdDDIInvalidateCache │ 512 │ 0x200 │
│ 514 │ NtGdiDdDDILock │ 513 │ 0x201 │
│ 515 │ NtGdiDdDDILock2 │ 514 │ 0x202 │
│ 516 │ NtGdiDdDDIMakeResident │ 515 │ 0x203 │
│ 517 │ NtGdiDdDDIMapGpuVirtualAddress │ 516 │ 0x204 │
│ 518 │ NtGdiDdDDIMarkDeviceAsError │ 517 │ 0x205 │
│ 519 │ NtGdiDdDDINetDispGetNextChunkInfo │ 518 │ 0x206 │
│ 520 │ NtGdiDdDDINetDispQueryMiracastDisplayDeviceStatus │ 519 │ 0x207 │
│ 521 │ NtGdiDdDDINetDispQueryMiracastDisplayDeviceSupport │ 520 │ 0x208 │
│ 522 │ NtGdiDdDDINetDispStartMiracastDisplayDevice │ 521 │ 0x209 │
│ 523 │ NtGdiDdDDINetDispStopMiracastDisplayDevice │ 522 │ 0x20a │
│ 524 │ NtGdiDdDDIOfferAllocations │ 523 │ 0x20b │
│ 525 │ NtGdiDdDDIOpenAdapterFromDeviceName │ 524 │ 0x20c │
│ 526 │ NtGdiDdDDIOpenAdapterFromHdc │ 525 │ 0x20d │
│ 527 │ NtGdiDdDDIOpenAdapterFromLuid │ 526 │ 0x20e │
│ 528 │ NtGdiDdDDIOpenBundleObjectNtHandleFromName │ 527 │ 0x20f │
│ 529 │ NtGdiDdDDIOpenKeyedMutex │ 528 │ 0x210 │
│ 530 │ NtGdiDdDDIOpenKeyedMutex2 │ 529 │ 0x211 │
│ 531 │ NtGdiDdDDIOpenKeyedMutexFromNtHandle │ 530 │ 0x212 │
│ 532 │ NtGdiDdDDIOpenNtHandleFromName │ 531 │ 0x213 │
│ 533 │ NtGdiDdDDIOpenProtectedSessionFromNtHandle │ 532 │ 0x214 │
│ 534 │ NtGdiDdDDIOpenResource │ 533 │ 0x215 │
│ 535 │ NtGdiDdDDIOpenResourceFromNtHandle │ 534 │ 0x216 │
│ 536 │ NtGdiDdDDIOpenSwapChain │ 535 │ 0x217 │
│ 537 │ NtGdiDdDDIOpenSyncObjectFromNtHandle │ 536 │ 0x218 │
│ 538 │ NtGdiDdDDIOpenSyncObjectFromNtHandle2 │ 537 │ 0x219 │
│ 539 │ NtGdiDdDDIOpenSyncObjectNtHandleFromName │ 538 │ 0x21a │
│ 540 │ NtGdiDdDDIOpenSynchronizationObject │ 539 │ 0x21b │
│ 541 │ NtGdiDdDDIOutputDuplGetFrameInfo │ 540 │ 0x21c │
│ 542 │ NtGdiDdDDIOutputDuplGetMetaData │ 541 │ 0x21d │
│ 543 │ NtGdiDdDDIOutputDuplGetPointerShapeData │ 542 │ 0x21e │
│ 544 │ NtGdiDdDDIOutputDuplPresent │ 543 │ 0x21f │
│ 545 │ NtGdiDdDDIOutputDuplReleaseFrame │ 544 │ 0x220 │
│ 546 │ NtGdiDdDDIPollDisplayChildren │ 545 │ 0x221 │
│ 547 │ NtGdiDdDDIPresent │ 546 │ 0x222 │
│ 548 │ NtGdiDdDDIPresentMultiPlaneOverlay │ 547 │ 0x223 │
│ 549 │ NtGdiDdDDIPresentMultiPlaneOverlay2 │ 548 │ 0x224 │
│ 550 │ NtGdiDdDDIPresentMultiPlaneOverlay3 │ 549 │ 0x225 │
│ 551 │ NtGdiDdDDIPresentRedirected │ 550 │ 0x226 │
│ 552 │ NtGdiDdDDIQueryAdapterInfo │ 551 │ 0x227 │
│ 553 │ NtGdiDdDDIQueryAllocationResidency │ 552 │ 0x228 │
│ 554 │ NtGdiDdDDIQueryClockCalibration │ 553 │ 0x229 │
│ 555 │ NtGdiDdDDIQueryFSEBlock │ 554 │ 0x22a │
│ 556 │ NtGdiDdDDIQueryProcessOfferInfo │ 555 │ 0x22b │
│ 557 │ NtGdiDdDDIQueryProtectedSessionInfoFromNtHandle │ 556 │ 0x22c │
│ 558 │ NtGdiDdDDIQueryProtectedSessionStatus │ 557 │ 0x22d │
│ 559 │ NtGdiDdDDIQueryRemoteVidPnSourceFromGdiDisplayName │ 558 │ 0x22e │
│ 560 │ NtGdiDdDDIQueryResourceInfo │ 559 │ 0x22f │
│ 561 │ NtGdiDdDDIQueryResourceInfoFromNtHandle │ 560 │ 0x230 │
│ 562 │ NtGdiDdDDIQueryStatistics │ 561 │ 0x231 │
│ 563 │ NtGdiDdDDIQueryVidPnExclusiveOwnership │ 562 │ 0x232 │
│ 564 │ NtGdiDdDDIQueryVideoMemoryInfo │ 563 │ 0x233 │
│ 565 │ NtGdiDdDDIReclaimAllocations │ 564 │ 0x234 │
│ 566 │ NtGdiDdDDIReclaimAllocations2 │ 565 │ 0x235 │
│ 567 │ NtGdiDdDDIReleaseKeyedMutex │ 566 │ 0x236 │
│ 568 │ NtGdiDdDDIReleaseKeyedMutex2 │ 567 │ 0x237 │
│ 569 │ NtGdiDdDDIReleaseProcessVidPnSourceOwners │ 568 │ 0x238 │
│ 570 │ NtGdiDdDDIReleaseSwapChain │ 569 │ 0x239 │
│ 571 │ NtGdiDdDDIRemoveSurfaceFromSwapChain │ 570 │ 0x23a │
│ 572 │ NtGdiDdDDIRender │ 571 │ 0x23b │
│ 573 │ NtGdiDdDDIReserveGpuVirtualAddress │ 572 │ 0x23c │
│ 574 │ NtGdiDdDDISetAllocationPriority │ 573 │ 0x23d │
│ 575 │ NtGdiDdDDISetContextInProcessSchedulingPriority │ 574 │ 0x23e │
│ 576 │ NtGdiDdDDISetContextSchedulingPriority │ 575 │ 0x23f │
│ 577 │ NtGdiDdDDISetDisplayMode │ 576 │ 0x240 │
│ 578 │ NtGdiDdDDISetDodIndirectSwapchain │ 577 │ 0x241 │
│ 579 │ NtGdiDdDDISetFSEBlock │ 578 │ 0x242 │
│ 580 │ NtGdiDdDDISetGammaRamp │ 579 │ 0x243 │
│ 581 │ NtGdiDdDDISetHwProtectionTeardownRecovery │ 580 │ 0x244 │
│ 582 │ NtGdiDdDDISetMemoryBudgetTarget │ 581 │ 0x245 │
│ 583 │ NtGdiDdDDISetMonitorColorSpaceTransform │ 582 │ 0x246 │
│ 584 │ NtGdiDdDDISetProcessDeviceRemovalSupport │ 583 │ 0x247 │
│ 585 │ NtGdiDdDDISetProcessSchedulingPriorityBand │ 584 │ 0x248 │
│ 586 │ NtGdiDdDDISetProcessSchedulingPriorityClass │ 585 │ 0x249 │
│ 587 │ NtGdiDdDDISetQueuedLimit │ 586 │ 0x24a │
│ 588 │ NtGdiDdDDISetStablePowerState │ 587 │ 0x24b │
│ 589 │ NtGdiDdDDISetStereoEnabled │ 588 │ 0x24c │
│ 590 │ NtGdiDdDDISetSyncRefreshCountWaitTarget │ 589 │ 0x24d │
│ 591 │ NtGdiDdDDISetVidPnSourceHwProtection │ 590 │ 0x24e │
│ 592 │ NtGdiDdDDISetVidPnSourceOwner │ 591 │ 0x24f │
│ 593 │ NtGdiDdDDISetYieldPercentage │ 592 │ 0x250 │
│ 594 │ NtGdiDdDDIShareObjects │ 593 │ 0x251 │
│ 595 │ NtGdiDdDDISharedPrimaryLockNotification │ 594 │ 0x252 │
│ 596 │ NtGdiDdDDISharedPrimaryUnLockNotification │ 595 │ 0x253 │
│ 597 │ NtGdiDdDDISignalSynchronizationObject │ 596 │ 0x254 │
│ 598 │ NtGdiDdDDISignalSynchronizationObjectFromCpu │ 597 │ 0x255 │
│ 599 │ NtGdiDdDDISignalSynchronizationObjectFromGpu │ 598 │ 0x256 │
│ 600 │ NtGdiDdDDISignalSynchronizationObjectFromGpu2 │ 599 │ 0x257 │
│ 601 │ NtGdiDdDDISubmitCommand │ 600 │ 0x258 │
│ 602 │ NtGdiDdDDISubmitCommandToHwQueue │ 601 │ 0x259 │
│ 603 │ NtGdiDdDDISubmitSignalSyncObjectsToHwQueue │ 602 │ 0x25a │
│ 604 │ NtGdiDdDDISubmitWaitForSyncObjectsToHwQueue │ 603 │ 0x25b │
│ 605 │ NtGdiDdDDITrimProcessCommitment │ 604 │ 0x25c │
│ 606 │ NtGdiDdDDIUnOrderedPresentSwapChain │ 605 │ 0x25d │
│ 607 │ NtGdiDdDDIUnlock │ 606 │ 0x25e │
│ 608 │ NtGdiDdDDIUnlock2 │ 607 │ 0x25f │
│ 609 │ NtGdiDdDDIUpdateAllocationProperty │ 608 │ 0x260 │
│ 610 │ NtGdiDdDDIUpdateGpuVirtualAddress │ 609 │ 0x261 │
│ 611 │ NtGdiDdDDIUpdateOverlay │ 610 │ 0x262 │
│ 612 │ NtGdiDdDDIWaitForIdle │ 611 │ 0x263 │
│ 613 │ NtGdiDdDDIWaitForSynchronizationObject │ 612 │ 0x264 │
│ 614 │ NtGdiDdDDIWaitForSynchronizationObjectFromCpu │ 613 │ 0x265 │
│ 615 │ NtGdiDdDDIWaitForSynchronizationObjectFromGpu │ 614 │ 0x266 │
│ 616 │ NtGdiDdDDIWaitForVerticalBlankEvent │ 615 │ 0x267 │
│ 617 │ NtGdiDdDDIWaitForVerticalBlankEvent2 │ 616 │ 0x268 │
│ 618 │ NtGdiDdDestroyFullscreenSprite │ 617 │ 0x269 │
│ 619 │ NtGdiDdNotifyFullscreenSpriteUpdate │ 618 │ 0x26a │
│ 620 │ NtGdiDdQueryVisRgnUniqueness │ 619 │ 0x26b │
│ 621 │ NtGdiDeleteColorTransform │ 620 │ 0x26c │
│ 622 │ NtGdiDescribePixelFormat │ 621 │ 0x26d │
│ 623 │ NtGdiDestroyOPMProtectedOutput │ 622 │ 0x26e │
│ 624 │ NtGdiDestroyPhysicalMonitor │ 623 │ 0x26f │
│ 625 │ NtGdiDoBanding │ 624 │ 0x270 │
│ 626 │ NtGdiDrawEscape │ 625 │ 0x271 │
│ 627 │ NtGdiDwmCreatedBitmapRemotingOutput │ 626 │ 0x272 │
│ 628 │ NtGdiEllipse │ 627 │ 0x273 │
│ 629 │ NtGdiEnableEudc │ 628 │ 0x274 │
│ 630 │ NtGdiEndDoc │ 629 │ 0x275 │
│ 631 │ NtGdiEndGdiRendering │ 630 │ 0x276 │
│ 632 │ NtGdiEndPage │ 631 │ 0x277 │
│ 633 │ NtGdiEngAlphaBlend │ 632 │ 0x278 │
│ 634 │ NtGdiEngAssociateSurface │ 633 │ 0x279 │
│ 635 │ NtGdiEngBitBlt │ 634 │ 0x27a │
│ 636 │ NtGdiEngCheckAbort │ 635 │ 0x27b │
│ 637 │ NtGdiEngComputeGlyphSet │ 636 │ 0x27c │
│ 638 │ NtGdiEngCopyBits │ 637 │ 0x27d │
│ 639 │ NtGdiEngCreateBitmap │ 638 │ 0x27e │
│ 640 │ NtGdiEngCreateClip │ 639 │ 0x27f │
│ 641 │ NtGdiEngCreateDeviceBitmap │ 640 │ 0x280 │
│ 642 │ NtGdiEngCreateDeviceSurface │ 641 │ 0x281 │
│ 643 │ NtGdiEngCreatePalette │ 642 │ 0x282 │
│ 644 │ NtGdiEngDeleteClip │ 643 │ 0x283 │
│ 645 │ NtGdiEngDeletePalette │ 644 │ 0x284 │
│ 646 │ NtGdiEngDeletePath │ 645 │ 0x285 │
│ 647 │ NtGdiEngDeleteSurface │ 646 │ 0x286 │
│ 648 │ NtGdiEngEraseSurface │ 647 │ 0x287 │
│ 649 │ NtGdiEngFillPath │ 648 │ 0x288 │
│ 650 │ NtGdiEngGradientFill │ 649 │ 0x289 │
│ 651 │ NtGdiEngLineTo │ 650 │ 0x28a │
│ 652 │ NtGdiEngLockSurface │ 651 │ 0x28b │
│ 653 │ NtGdiEngMarkBandingSurface │ 652 │ 0x28c │
│ 654 │ NtGdiEngPaint │ 653 │ 0x28d │
│ 655 │ NtGdiEngPlgBlt │ 654 │ 0x28e │
│ 656 │ NtGdiEngStretchBlt │ 655 │ 0x28f │
│ 657 │ NtGdiEngStretchBltROP │ 656 │ 0x290 │
│ 658 │ NtGdiEngStrokeAndFillPath │ 657 │ 0x291 │
│ 659 │ NtGdiEngStrokePath │ 658 │ 0x292 │
│ 660 │ NtGdiEngTextOut │ 659 │ 0x293 │
│ 661 │ NtGdiEngTransparentBlt │ 660 │ 0x294 │
│ 662 │ NtGdiEngUnlockSurface │ 661 │ 0x295 │
│ 663 │ NtGdiEnsureDpiDepDefaultGuiFontForPlateau │ 662 │ 0x296 │
│ 664 │ NtGdiEnumFonts │ 663 │ 0x297 │
│ 665 │ NtGdiEnumObjects │ 664 │ 0x298 │
│ 666 │ NtGdiEudcLoadUnloadLink │ 665 │ 0x299 │
│ 667 │ NtGdiExtFloodFill │ 666 │ 0x29a │
│ 668 │ NtGdiFONTOBJ_cGetAllGlyphHandles │ 667 │ 0x29b │
│ 669 │ NtGdiFONTOBJ_cGetGlyphs │ 668 │ 0x29c │
│ 670 │ NtGdiFONTOBJ_pQueryGlyphAttrs │ 669 │ 0x29d │
│ 671 │ NtGdiFONTOBJ_pfdg │ 670 │ 0x29e │
│ 672 │ NtGdiFONTOBJ_pifi │ 671 │ 0x29f │
│ 673 │ NtGdiFONTOBJ_pvTrueTypeFontFile │ 672 │ 0x2a0 │
│ 674 │ NtGdiFONTOBJ_pxoGetXform │ 673 │ 0x2a1 │
│ 675 │ NtGdiFONTOBJ_vGetInfo │ 674 │ 0x2a2 │
│ 676 │ NtGdiFlattenPath │ 675 │ 0x2a3 │
│ 677 │ NtGdiFontIsLinked │ 676 │ 0x2a4 │
│ 678 │ NtGdiForceUFIMapping │ 677 │ 0x2a5 │
│ 679 │ NtGdiFrameRgn │ 678 │ 0x2a6 │
│ 680 │ NtGdiFullscreenControl │ 679 │ 0x2a7 │
│ 681 │ NtGdiGetBitmapDpiScaleValue │ 680 │ 0x2a8 │
│ 682 │ NtGdiGetBoundsRect │ 681 │ 0x2a9 │
│ 683 │ NtGdiGetCOPPCompatibleOPMInformation │ 682 │ 0x2aa │
│ 684 │ NtGdiGetCertificate │ 683 │ 0x2ab │
│ 685 │ NtGdiGetCertificateByHandle │ 684 │ 0x2ac │
│ 686 │ NtGdiGetCertificateSize │ 685 │ 0x2ad │
│ 687 │ NtGdiGetCertificateSizeByHandle │ 686 │ 0x2ae │
│ 688 │ NtGdiGetCharABCWidthsW │ 687 │ 0x2af │
│ 689 │ NtGdiGetCharacterPlacementW │ 688 │ 0x2b0 │
│ 690 │ NtGdiGetColorAdjustment │ 689 │ 0x2b1 │
│ 691 │ NtGdiGetColorSpaceforBitmap │ 690 │ 0x2b2 │
│ 692 │ NtGdiGetCurrentDpiInfo │ 691 │ 0x2b3 │
│ 693 │ NtGdiGetDCDpiScaleValue │ 692 │ 0x2b4 │
│ 694 │ NtGdiGetDeviceCaps │ 693 │ 0x2b5 │
│ 695 │ NtGdiGetDeviceCapsAll │ 694 │ 0x2b6 │
│ 696 │ NtGdiGetDeviceWidth │ 695 │ 0x2b7 │
│ 697 │ NtGdiGetDhpdev │ 696 │ 0x2b8 │
│ 698 │ NtGdiGetETM │ 697 │ 0x2b9 │
│ 699 │ NtGdiGetEmbUFI │ 698 │ 0x2ba │
│ 700 │ NtGdiGetEmbedFonts │ 699 │ 0x2bb │
│ 701 │ NtGdiGetEntry │ 700 │ 0x2bc │
│ 702 │ NtGdiGetEudcTimeStampEx │ 701 │ 0x2bd │
│ 703 │ NtGdiGetFontFileData │ 702 │ 0x2be │
│ 704 │ NtGdiGetFontFileInfo │ 703 │ 0x2bf │
│ 705 │ NtGdiGetFontResourceInfoInternalW │ 704 │ 0x2c0 │
│ 706 │ NtGdiGetFontUnicodeRanges │ 705 │ 0x2c1 │
│ 707 │ NtGdiGetGlyphIndicesW │ 706 │ 0x2c2 │
│ 708 │ NtGdiGetGlyphIndicesWInternal │ 707 │ 0x2c3 │
│ 709 │ NtGdiGetGlyphOutline │ 708 │ 0x2c4 │
│ 710 │ NtGdiGetKerningPairs │ 709 │ 0x2c5 │
│ 711 │ NtGdiGetLinkedUFIs │ 710 │ 0x2c6 │
│ 712 │ NtGdiGetMiterLimit │ 711 │ 0x2c7 │
│ 713 │ NtGdiGetMonitorID │ 712 │ 0x2c8 │
│ 714 │ NtGdiGetNumberOfPhysicalMonitors │ 713 │ 0x2c9 │
│ 715 │ NtGdiGetOPMInformation │ 714 │ 0x2ca │
│ 716 │ NtGdiGetOPMRandomNumber │ 715 │ 0x2cb │
│ 717 │ NtGdiGetObjectBitmapHandle │ 716 │ 0x2cc │
│ 718 │ NtGdiGetPath │ 717 │ 0x2cd │
│ 719 │ NtGdiGetPerBandInfo │ 718 │ 0x2ce │
│ 720 │ NtGdiGetPhysicalMonitorDescription │ 719 │ 0x2cf │
│ 721 │ NtGdiGetPhysicalMonitors │ 720 │ 0x2d0 │
│ 722 │ NtGdiGetProcessSessionFonts │ 721 │ 0x2d1 │
│ 723 │ NtGdiGetPublicFontTableChangeCookie │ 722 │ 0x2d2 │
│ 724 │ NtGdiGetRealizationInfo │ 723 │ 0x2d3 │
│ 725 │ NtGdiGetServerMetaFileBits │ 724 │ 0x2d4 │
│ 726 │ NtGdiGetSpoolMessage │ 725 │ 0x2d5 │
│ 727 │ NtGdiGetStats │ 726 │ 0x2d6 │
│ 728 │ NtGdiGetStringBitmapW │ 727 │ 0x2d7 │
│ 729 │ NtGdiGetSuggestedOPMProtectedOutputArraySize │ 728 │ 0x2d8 │
│ 730 │ NtGdiGetTextExtentExW │ 729 │ 0x2d9 │
│ 731 │ NtGdiGetUFI │ 730 │ 0x2da │
│ 732 │ NtGdiGetUFIPathname │ 731 │ 0x2db │
│ 733 │ NtGdiGradientFill │ 732 │ 0x2dc │
│ 734 │ NtGdiHLSurfGetInformation │ 733 │ 0x2dd │
│ 735 │ NtGdiHLSurfSetInformation │ 734 │ 0x2de │
│ 736 │ NtGdiHT_Get8BPPFormatPalette │ 735 │ 0x2df │
│ 737 │ NtGdiHT_Get8BPPMaskPalette │ 736 │ 0x2e0 │
│ 738 │ NtGdiIcmBrushInfo │ 737 │ 0x2e1 │
│ 739 │ NtGdiInit │ 738 │ 0x2e2 │
│ 740 │ NtGdiInitSpool │ 739 │ 0x2e3 │
│ 741 │ NtGdiMakeFontDir │ 740 │ 0x2e4 │
│ 742 │ NtGdiMakeInfoDC │ 741 │ 0x2e5 │
│ 743 │ NtGdiMakeObjectUnXferable │ 742 │ 0x2e6 │
│ 744 │ NtGdiMakeObjectXferable │ 743 │ 0x2e7 │
│ 745 │ NtGdiMirrorWindowOrg │ 744 │ 0x2e8 │
│ 746 │ NtGdiMonoBitmap │ 745 │ 0x2e9 │
│ 747 │ NtGdiMoveTo │ 746 │ 0x2ea │
│ 748 │ NtGdiOffsetClipRgn │ 747 │ 0x2eb │
│ 749 │ NtGdiPATHOBJ_bEnum │ 748 │ 0x2ec │
│ 750 │ NtGdiPATHOBJ_bEnumClipLines │ 749 │ 0x2ed │
│ 751 │ NtGdiPATHOBJ_vEnumStart │ 750 │ 0x2ee │
│ 752 │ NtGdiPATHOBJ_vEnumStartClipLines │ 751 │ 0x2ef │
│ 753 │ NtGdiPATHOBJ_vGetBounds │ 752 │ 0x2f0 │
│ 754 │ NtGdiPathToRegion │ 753 │ 0x2f1 │
│ 755 │ NtGdiPlgBlt │ 754 │ 0x2f2 │
│ 756 │ NtGdiPolyDraw │ 755 │ 0x2f3 │
│ 757 │ NtGdiPolyTextOutW │ 756 │ 0x2f4 │
│ 758 │ NtGdiPtInRegion │ 757 │ 0x2f5 │
│ 759 │ NtGdiPtVisible │ 758 │ 0x2f6 │
│ 760 │ NtGdiQueryFonts │ 759 │ 0x2f7 │
│ 761 │ NtGdiRemoveFontResourceW │ 760 │ 0x2f8 │
│ 762 │ NtGdiRemoveMergeFont │ 761 │ 0x2f9 │
│ 763 │ NtGdiResetDC │ 762 │ 0x2fa │
│ 764 │ NtGdiResizePalette │ 763 │ 0x2fb │
│ 765 │ NtGdiRoundRect │ 764 │ 0x2fc │
│ 766 │ NtGdiSTROBJ_bEnum │ 765 │ 0x2fd │
│ 767 │ NtGdiSTROBJ_bEnumPositionsOnly │ 766 │ 0x2fe │
│ 768 │ NtGdiSTROBJ_bGetAdvanceWidths │ 767 │ 0x2ff │
│ 769 │ NtGdiSTROBJ_dwGetCodePage │ 768 │ 0x300 │
│ 770 │ NtGdiSTROBJ_vEnumStart │ 769 │ 0x301 │
│ 771 │ NtGdiScaleRgn │ 770 │ 0x302 │
│ 772 │ NtGdiScaleValues │ 771 │ 0x303 │
│ 773 │ NtGdiScaleViewportExtEx │ 772 │ 0x304 │
│ 774 │ NtGdiScaleWindowExtEx │ 773 │ 0x305 │
│ 775 │ NtGdiSelectBrush │ 774 │ 0x306 │
│ 776 │ NtGdiSelectClipPath │ 775 │ 0x307 │
│ 777 │ NtGdiSelectPen │ 776 │ 0x308 │
│ 778 │ NtGdiSetBitmapAttributes │ 777 │ 0x309 │
│ 779 │ NtGdiSetBrushAttributes │ 778 │ 0x30a │
│ 780 │ NtGdiSetColorAdjustment │ 779 │ 0x30b │
│ 781 │ NtGdiSetColorSpace │ 780 │ 0x30c │
│ 782 │ NtGdiSetFontXform │ 781 │ 0x30d │
│ 783 │ NtGdiSetIcmMode │ 782 │ 0x30e │
│ 784 │ NtGdiSetLinkedUFIs │ 783 │ 0x30f │
│ 785 │ NtGdiSetMagicColors │ 784 │ 0x310 │
│ 786 │ NtGdiSetOPMSigningKeyAndSequenceNumbers │ 785 │ 0x311 │
│ 787 │ NtGdiSetPUMPDOBJ │ 786 │ 0x312 │
│ 788 │ NtGdiSetPixelFormat │ 787 │ 0x313 │
│ 789 │ NtGdiSetRectRgn │ 788 │ 0x314 │
│ 790 │ NtGdiSetSizeDevice │ 789 │ 0x315 │
│ 791 │ NtGdiSetSystemPaletteUse │ 790 │ 0x316 │
│ 792 │ NtGdiSetTextJustification │ 791 │ 0x317 │
│ 793 │ NtGdiSetUMPDSandboxState │ 792 │ 0x318 │
│ 794 │ NtGdiStartDoc │ 793 │ 0x319 │
│ 795 │ NtGdiStartPage │ 794 │ 0x31a │
│ 796 │ NtGdiStrokeAndFillPath │ 795 │ 0x31b │
│ 797 │ NtGdiStrokePath │ 796 │ 0x31c │
│ 798 │ NtGdiSwapBuffers │ 797 │ 0x31d │
│ 799 │ NtGdiTransparentBlt │ 798 │ 0x31e │
│ 800 │ NtGdiUMPDEngFreeUserMem │ 799 │ 0x31f │
│ 801 │ NtGdiUnloadPrinterDriver │ 800 │ 0x320 │
│ 802 │ NtGdiUnmapMemFont │ 801 │ 0x321 │
│ 803 │ NtGdiUpdateColors │ 802 │ 0x322 │
│ 804 │ NtGdiUpdateTransform │ 803 │ 0x323 │
│ 805 │ NtGdiWaitForTextReady │ 804 │ 0x324 │
│ 806 │ NtGdiWidenPath │ 805 │ 0x325 │
│ 807 │ NtGdiXFORMOBJ_bApplyXform │ 806 │ 0x326 │
│ 808 │ NtGdiXFORMOBJ_iGetXform │ 807 │ 0x327 │
│ 809 │ NtGdiXLATEOBJ_cGetPalette │ 808 │ 0x328 │
│ 810 │ NtGdiXLATEOBJ_hGetColorTransform │ 809 │ 0x329 │
│ 811 │ NtGdiXLATEOBJ_iXlate │ 810 │ 0x32a │
│ 812 │ NtUserGetOwnerTransformedMonitorRect │ 811 │ 0x32b │
│ 813 │ NtHWCursorUpdatePointer │ 812 │ 0x32c │
│ 814 │ NtInputSpaceRegionFromPoint │ 813 │ 0x32d │
│ 815 │ NtIsOneCoreTransformMode │ 814 │ 0x32e │
│ 816 │ NtKSTInitialize │ 815 │ 0x32f │
│ 817 │ NtKSTWait │ 816 │ 0x330 │
│ 818 │ NtMITAccessibilityTimerNotification │ 817 │ 0x331 │
│ 819 │ NtMITActivateInputProcessing │ 818 │ 0x332 │
│ 820 │ NtMITConfigureVirtualTouchpad │ 819 │ 0x333 │
│ 821 │ NtMITCoreMsgKOpenConnectionTo │ 820 │ 0x334 │
│ 822 │ NtMITDeactivateInputProcessing │ 821 │ 0x335 │
│ 823 │ NtMITDisableMouseIntercept │ 822 │ 0x336 │
│ 824 │ NtMITDispatchCompletion │ 823 │ 0x337 │
│ 825 │ NtMITEnableMouseIntercept │ 824 │ 0x338 │
│ 826 │ NtMITGetCursorUpdateHandle │ 825 │ 0x339 │
│ 827 │ NtMITInitMinuserThread │ 826 │ 0x33a │
│ 828 │ NtMITMinuserSetInputTransformOffset │ 827 │ 0x33b │
│ 829 │ NtMITMinuserWindowDestroyed │ 828 │ 0x33c │
│ 830 │ NtMITPostMouseInputMessage │ 829 │ 0x33d │
│ 831 │ NtMITPostThreadEventMessage │ 830 │ 0x33e │
│ 832 │ NtMITPostWindowEventMessage │ 831 │ 0x33f │
│ 833 │ NtMITPrepareReceiveInputMessage │ 832 │ 0x340 │
│ 834 │ NtMITPrepareSendInputMessage │ 833 │ 0x341 │
│ 835 │ NtMITProcessDelegateCapturedPointers │ 834 │ 0x342 │
│ 836 │ NtMITSetInputCallbacks │ 835 │ 0x343 │
│ 837 │ NtMITSetInputDelegationMode │ 836 │ 0x344 │
│ 838 │ NtMITSetInputObservationState │ 837 │ 0x345 │
│ 839 │ NtMITSetKeyboardInputRoutingPolicy │ 838 │ 0x346 │
│ 840 │ NtMITSetKeyboardOverriderState │ 839 │ 0x347 │
│ 841 │ NtMITSetLastInputRecipient │ 840 │ 0x348 │
│ 842 │ NtMITSynthesizeKeyboardInput │ 841 │ 0x349 │
│ 843 │ NtMITSynthesizeMouseInput │ 842 │ 0x34a │
│ 844 │ NtMITSynthesizeTouchInput │ 843 │ 0x34b │
│ 845 │ NtMITUninitMinuserThread │ 844 │ 0x34c │
│ 846 │ NtMITUpdateInputGlobals │ 845 │ 0x34d │
│ 847 │ NtMapVisualRelativePoints │ 846 │ 0x34e │
│ 848 │ NtMinGetInputTransform │ 847 │ 0x34f │
│ 849 │ NtMinInteropCoreMessagingWithInput │ 848 │ 0x350 │
│ 850 │ NtMinQPeekForInput │ 849 │ 0x351 │
│ 851 │ NtMinQSuspendInputProcessing │ 850 │ 0x352 │
│ 852 │ NtMinQUpdateWakeMask │ 851 │ 0x353 │
│ 853 │ NtModerncoreBeginLayoutUpdate │ 852 │ 0x354 │
│ 854 │ NtModerncoreCreateDCompositionHwndTarget │ 853 │ 0x355 │
│ 855 │ NtModerncoreCreateGDIHwndTarget │ 854 │ 0x356 │
│ 856 │ NtModerncoreDestroyDCompositionHwndTarget │ 855 │ 0x357 │
│ 857 │ NtModerncoreDestroyGDIHwndTarget │ 856 │ 0x358 │
│ 858 │ NtModerncoreEnableResizeLayoutSynchronization │ 857 │ 0x359 │
│ 859 │ NtModerncoreGetNavigationWindowVisual │ 858 │ 0x35a │
│ 860 │ NtModerncoreGetResizeDCompositionSynchronizationObject │ 859 │ 0x35b │
│ 861 │ NtModerncoreGetWindowContentVisual │ 860 │ 0x35c │
│ 862 │ NtModerncoreIdleTimerThread │ 861 │ 0x35d │
│ 863 │ NtModerncoreIsResizeLayoutSynchronizationEnabled │ 862 │ 0x35e │
│ 864 │ NtModerncoreProcessConnect │ 863 │ 0x35f │
│ 865 │ NtModerncoreRegisterEnhancedNavigationWindowHandle │ 864 │ 0x360 │
│ 866 │ NtModerncoreRegisterNavigationWindowHandle │ 865 │ 0x361 │
│ 867 │ NtModerncoreSetNavigationServiceSid │ 866 │ 0x362 │
│ 868 │ NtModerncoreUnregisterNavigationWindowHandle │ 867 │ 0x363 │
│ 869 │ NtNotifyPresentToCompositionSurface │ 868 │ 0x364 │
│ 870 │ NtOpenCompositionSurfaceDirtyRegion │ 869 │ 0x365 │
│ 871 │ NtOpenCompositionSurfaceRealizationInfo │ 870 │ 0x366 │
│ 872 │ NtOpenCompositionSurfaceSectionInfo │ 871 │ 0x367 │
│ 873 │ NtQueryCompositionInputIsImplicit │ 872 │ 0x368 │
│ 874 │ NtQueryCompositionInputQueueAndTransform │ 873 │ 0x369 │
│ 875 │ NtQueryCompositionInputSink │ 874 │ 0x36a │
│ 876 │ NtQueryCompositionInputSinkLuid │ 875 │ 0x36b │
│ 877 │ NtQueryCompositionInputSinkViewId │ 876 │ 0x36c │
│ 878 │ NtQueryCompositionSurfaceBinding │ 877 │ 0x36d │
│ 879 │ NtQueryCompositionSurfaceFrameRate │ 878 │ 0x36e │
│ 880 │ NtQueryCompositionSurfaceHDRMetaData │ 879 │ 0x36f │
│ 881 │ NtQueryCompositionSurfaceRenderingRealization │ 880 │ 0x370 │
│ 882 │ NtQueryCompositionSurfaceStatistics │ 881 │ 0x371 │
│ 883 │ NtRIMAddInputObserver │ 882 │ 0x372 │
│ 884 │ NtRIMAreSiblingDevices │ 883 │ 0x373 │
│ 885 │ NtRIMDeviceIoControl │ 884 │ 0x374 │
│ 886 │ NtRIMEnableMonitorMappingForDevice │ 885 │ 0x375 │
│ 887 │ NtRIMFreeInputBuffer │ 886 │ 0x376 │
│ 888 │ NtRIMGetDevicePreparsedData │ 887 │ 0x377 │
│ 889 │ NtRIMGetDevicePreparsedDataLockfree │ 888 │ 0x378 │
│ 890 │ NtRIMGetDeviceProperties │ 889 │ 0x379 │
│ 891 │ NtRIMGetDevicePropertiesLockfree │ 890 │ 0x37a │
│ 892 │ NtRIMGetPhysicalDeviceRect │ 891 │ 0x37b │
│ 893 │ NtRIMGetSourceProcessId │ 892 │ 0x37c │
│ 894 │ NtRIMObserveNextInput │ 893 │ 0x37d │
│ 895 │ NtRIMOnAsyncPnpWorkNotification │ 894 │ 0x37e │
│ 896 │ NtRIMOnPnpNotification │ 895 │ 0x37f │
│ 897 │ NtRIMOnTimerNotification │ 896 │ 0x380 │
│ 898 │ NtRIMQueryDevicePath │ 897 │ 0x381 │
│ 899 │ NtRIMReadInput │ 898 │ 0x382 │
│ 900 │ NtRIMRegisterForInputEx │ 899 │ 0x383 │
│ 901 │ NtRIMRemoveInputObserver │ 900 │ 0x384 │
│ 902 │ NtRIMSetDeadzoneRotation │ 901 │ 0x385 │
│ 903 │ NtRIMSetExtendedDeviceProperty │ 902 │ 0x386 │
│ 904 │ NtRIMSetTestModeStatus │ 903 │ 0x387 │
│ 905 │ NtRIMUnregisterForInput │ 904 │ 0x388 │
│ 906 │ NtRIMUpdateInputObserverRegistration │ 905 │ 0x389 │
│ 907 │ NtSetCompositionSurfaceAnalogExclusive │ 906 │ 0x38a │
│ 908 │ NtSetCompositionSurfaceBufferUsage │ 907 │ 0x38b │
│ 909 │ NtSetCompositionSurfaceDirectFlipState │ 908 │ 0x38c │
│ 910 │ NtSetCompositionSurfaceIndependentFlipInfo │ 909 │ 0x38d │
│ 911 │ NtSetCompositionSurfaceStatistics │ 910 │ 0x38e │
│ 912 │ NtSetCursorInputSpace │ 911 │ 0x38f │
│ 913 │ NtSetPointerDeviceInputSpace │ 912 │ 0x390 │
│ 914 │ NtSetShellCursorState │ 913 │ 0x391 │
│ 915 │ NtTokenManagerConfirmOutstandingAnalogToken │ 914 │ 0x392 │
│ 916 │ NtTokenManagerCreateCompositionTokenHandle │ 915 │ 0x393 │
│ 917 │ NtTokenManagerCreateFlipObjectReturnTokenHandle │ 916 │ 0x394 │
│ 918 │ NtTokenManagerCreateFlipObjectTokenHandle │ 917 │ 0x395 │
│ 919 │ NtTokenManagerGetAnalogExclusiveSurfaceUpdates │ 918 │ 0x396 │
│ 920 │ NtTokenManagerGetAnalogExclusiveTokenEvent │ 919 │ 0x397 │
│ 921 │ NtTokenManagerOpenSectionAndEvents │ 920 │ 0x398 │
│ 922 │ NtTokenManagerThread │ 921 │ 0x399 │
│ 923 │ NtUnBindCompositionSurface │ 922 │ 0x39a │
│ 924 │ NtUpdateInputSinkTransforms │ 923 │ 0x39b │
│ 925 │ NtUserAcquireIAMKey │ 924 │ 0x39c │
│ 926 │ NtUserAcquireInteractiveControlBackgroundAccess │ 925 │ 0x39d │
│ 927 │ NtUserAddClipboardFormatListener │ 926 │ 0x39e │
│ 928 │ NtUserAddVisualIdentifier │ 927 │ 0x39f │
│ 929 │ NtUserAllowSetForegroundWindow │ 928 │ 0x3a0 │
│ 930 │ NtUserArrangeIconicWindows │ 929 │ 0x3a1 │
│ 931 │ NtUserAssociateInputContext │ 930 │ 0x3a2 │
│ 932 │ NtUserAutoPromoteMouseInPointer │ 931 │ 0x3a3 │
│ 933 │ NtUserAutoRotateScreen │ 932 │ 0x3a4 │
│ 934 │ NtUserBeginDeferWindowPos │ 933 │ 0x3a5 │
│ 935 │ NtUserBeginLayoutUpdate │ 934 │ 0x3a6 │
│ 936 │ NtUserBlockInput │ 935 │ 0x3a7 │
│ 937 │ NtUserBroadcastImeShowStatusChange │ 936 │ 0x3a8 │
│ 938 │ NtUserBroadcastThemeChangeEvent │ 937 │ 0x3a9 │
│ 939 │ NtUserBuildHimcList │ 938 │ 0x3aa │
│ 940 │ NtUserBuildPropList │ 939 │ 0x3ab │
│ 941 │ NtUserCalculatePopupWindowPosition │ 940 │ 0x3ac │
│ 942 │ NtUserCanBrokerForceForeground │ 941 │ 0x3ad │
│ 943 │ NtUserCancelQueueEventCompletionPacket │ 942 │ 0x3ae │
│ 944 │ NtUserChangeDisplaySettings │ 943 │ 0x3af │
│ 945 │ NtUserChangeWindowMessageFilter │ 944 │ 0x3b0 │
│ 946 │ NtUserChangeWindowMessageFilterEx │ 945 │ 0x3b1 │
│ 947 │ NtUserCheckAccessForIntegrityLevel │ 946 │ 0x3b2 │
│ 948 │ NtUserCheckImeShowStatusInThread │ 947 │ 0x3b3 │
│ 949 │ NtUserCheckProcessForClipboardAccess │ 948 │ 0x3b4 │
│ 950 │ NtUserCheckProcessSession │ 949 │ 0x3b5 │
│ 951 │ NtUserCheckWindowThreadDesktop │ 950 │ 0x3b6 │
│ 952 │ NtUserChildWindowFromPointEx │ 951 │ 0x3b7 │
│ 953 │ NtUserCitSetInfo │ 952 │ 0x3b8 │
│ 954 │ NtUserClearForeground │ 953 │ 0x3b9 │
│ 955 │ NtUserClearRunWakeBit │ 954 │ 0x3ba │
│ 956 │ NtUserClearWakeMask │ 955 │ 0x3bb │
│ 957 │ NtUserClearWindowState │ 956 │ 0x3bc │
│ 958 │ NtUserClipCursor │ 957 │ 0x3bd │
│ 959 │ NtUserCompositionInputSinkLuidFromPoint │ 958 │ 0x3be │
│ 960 │ NtUserCompositionInputSinkViewInstanceIdFromPoint │ 959 │ 0x3bf │
│ 961 │ NtUserConfigureActivationObject │ 960 │ 0x3c0 │
│ 962 │ NtUserConfirmResizeCommit │ 961 │ 0x3c1 │
│ 963 │ NtUserCreateActivationObject │ 962 │ 0x3c2 │
│ 964 │ NtUserCreateBaseWindow │ 963 │ 0x3c3 │
│ 965 │ NtUserCreateDCompositionHwndTarget │ 964 │ 0x3c4 │
│ 966 │ NtUserCreateDesktopEx │ 965 │ 0x3c5 │
│ 967 │ NtUserCreateEmptyCursorObject │ 966 │ 0x3c6 │
│ 968 │ NtUserCreateInputContext │ 967 │ 0x3c7 │
│ 969 │ NtUserCreateMenu │ 968 │ 0x3c8 │
│ 970 │ NtUserCreatePalmRejectionDelayZone │ 969 │ 0x3c9 │
│ 971 │ NtUserCreatePopupMenu │ 970 │ 0x3ca │
│ 972 │ NtUserCreateSystemThreads │ 971 │ 0x3cb │
│ 973 │ NtUserCreateWindowStation │ 972 │ 0x3cc │
│ 974 │ NtUserCsDdeUninitialize │ 973 │ 0x3cd │
│ 975 │ NtUserCtxDisplayIOCtl │ 974 │ 0x3ce │
│ 976 │ NtUserDWP_GetEnabledPopupOffset │ 975 │ 0x3cf │
│ 977 │ NtUserDeferWindowDpiChanges │ 976 │ 0x3d0 │
│ 978 │ NtUserDeferWindowPosAndBand │ 977 │ 0x3d1 │
│ 979 │ NtUserDeferredDesktopRotation │ 978 │ 0x3d2 │
│ 980 │ NtUserDelegateCapturePointers │ 979 │ 0x3d3 │
│ 981 │ NtUserDelegateInput │ 980 │ 0x3d4 │
│ 982 │ NtUserDeregisterShellHookWindow │ 981 │ 0x3d5 │
│ 983 │ NtUserDestroyActivationObject │ 982 │ 0x3d6 │
│ 984 │ NtUserDestroyCaret │ 983 │ 0x3d7 │
│ 985 │ NtUserDestroyDCompositionHwndTarget │ 984 │ 0x3d8 │
│ 986 │ NtUserDestroyInputContext │ 985 │ 0x3d9 │
│ 987 │ NtUserDestroyPalmRejectionDelayZone │ 986 │ 0x3da │
│ 988 │ NtUserDisableImmersiveOwner │ 987 │ 0x3db │
│ 989 │ NtUserDisableProcessWindowFiltering │ 988 │ 0x3dc │
│ 990 │ NtUserDisableProcessWindowsGhosting │ 989 │ 0x3dd │
│ 991 │ NtUserDisableThreadIme │ 990 │ 0x3de │
│ 992 │ NtUserDiscardPointerFrameMessages │ 991 │ 0x3df │
│ 993 │ NtUserDisplayConfigGetDeviceInfo │ 992 │ 0x3e0 │
│ 994 │ NtUserDisplayConfigSetDeviceInfo │ 993 │ 0x3e1 │
│ 995 │ NtUserDoInitMessagePumpHook │ 994 │ 0x3e2 │
│ 996 │ NtUserDoSoundConnect │ 995 │ 0x3e3 │