-
Notifications
You must be signed in to change notification settings - Fork 1
/
win32k-symbols-win2k3.txt
8312 lines (8312 loc) · 675 KB
/
win32k-symbols-win2k3.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
kd> x win32k!*
bf92b5ad win32k!EngQueryLocalTime (_EngQueryLocalTime@4)
bf92ffaf win32k!NtGdiCreateEllipticRgn (_NtGdiCreateEllipticRgn@16)
bf9b5dd0 win32k!ghwndSwitch = <no type information>
bf91a2ae win32k!SearchAndSetKbdTbl (_SearchAndSetKbdTbl@12)
bf91b99d win32k!xxxUnlatchStickyKeys (_xxxUnlatchStickyKeys@0)
bf8a466b win32k!NtUserInvalidateRect (_NtUserInvalidateRect@12)
bf995460 win32k!_imp__IoGetStackLimits = <no type information>
bf93f63c win32k!vTransparentCopyS32D8 (void __stdcall vTransparentCopyS32D8(struct BLTINFO *))
bf8f8ba3 win32k!xxxMoveThumb (_xxxMoveThumb@12)
bf85f3ea win32k!KillTooltipTimer (_KillTooltipTimer@4)
bf8fca98 win32k!fsg_CompositeInnerGridFit (@fsg_CompositeInnerGridFit@104)
bf9952c0 win32k!_imp__RtlSetOwnerSecurityDescriptor = <no type information>
bf8912a7 win32k!bCalcMeshExtent (int __stdcall bCalcMeshExtent(struct _TRIVERTEX *,unsigned long,void *,unsigned long,unsigned long,struct _RECTL *))
bf8324a6 win32k!xxxClientLoadMenu (_xxxClientLoadMenu@8)
bf82fe2f win32k!ParkIcon (_ParkIcon@8)
bf90edfa win32k!Win32kNtUserCleanup (_Win32kNtUserCleanup@0)
bf8f3779 win32k!NtUserMapVirtualKeyEx (_NtUserMapVirtualKeyEx@16)
bf995110 win32k!_imp__ExDesktopObjectType = <no type information>
bf89f857 win32k!EBRUSHOBJ::vInitBrush (public: void __thiscall EBRUSHOBJ::vInitBrush(class DC *,class BRUSH *,class XEPALOBJ,class XEPALOBJ,class SURFACE *,int))
bf81823d win32k!xxxInitTerminal (_xxxInitTerminal@4)
bf92a034 win32k!GDIEngUserMemAllocNodeAlloc (void * __stdcall GDIEngUserMemAllocNodeAlloc(struct _RTL_AVL_TABLE *,unsigned long))
bf9951bc win32k!_imp___allmul = <no type information>
bf8e4c8b win32k!EFSMEMOBJ::vXerox (public: void __thiscall EFSMEMOBJ::vXerox(class EFSTATE *))
bf87de35 win32k!AddVertSimpleScan (@AddVertSimpleScan@8)
bf96d087 win32k!WIDEPENOBJ::cptAddRound (public: unsigned long __thiscall WIDEPENOBJ::cptAddRound(class WIDENER &,class LINEDATA &,class LINEDATA &,int,int,int))
bf811700 win32k!BmfdQueryFontFile (_BmfdQueryFontFile@16)
bf88d1a8 win32k!RFONTTMPOBJ::~RFONTTMPOBJ (public: __thiscall RFONTTMPOBJ::~RFONTTMPOBJ(void))
bf8391bd win32k!pDCIAdjClr (_pDCIAdjClr)
bf97d05c win32k!UMPDDrvPaint (int __stdcall UMPDDrvPaint(struct _SURFOBJ *,struct _CLIPOBJ *,struct _BRUSHOBJ *,struct _POINTL *,unsigned long))
bf8bb3d8 win32k!xxxSetProcessInitState (_xxxSetProcessInitState@8)
bf86f1dc win32k!NtUserSetInformationThread (_NtUserSetInformationThread@16)
bf928b49 win32k!CleanupShadow (_CleanupShadow@4)
bf92a53f win32k!NtGdiDdGetBltStatus (_NtGdiDdGetBltStatus@8)
bf977a98 win32k!vDirectStretchError (void __stdcall vDirectStretchError(struct _STR_BLT *))
bf99547c win32k!_imp__IoRegisterPlugPlayNotification = <no type information>
bf92a439 win32k!DxEngLoadImage (_DxEngLoadImage@8)
bf8b3316 win32k!_GetProcessWindowStation (__GetProcessWindowStation@4)
bf87fb05 win32k!bIntersect (int __fastcall bIntersect(struct _RECTL const *,struct _RECTL const *))
bf927164 win32k!xxxShowTooltip (_xxxShowTooltip@4)
bf94df86 win32k!GrePolyTextOutW (_GrePolyTextOutW@16)
bf8c6dd8 win32k!IsTimeFromLastInput (_IsTimeFromLastInput@4)
bf9aaf20 win32k!WIDEPENOBJ::ahob = <no type information>
bf8d8017 win32k!RGNOBJ::xMyGet (public: long __thiscall RGNOBJ::xMyGet(class SCAN *,long,long))
bf995418 win32k!_imp__RtlLookupAtomInAtomTable = <no type information>
bf916e46 win32k!IsObjectPublic (_IsObjectPublic@4)
bf80e140 win32k!_RegisterLogonProcess (__RegisterLogonProcess@8)
bf981104 win32k!vFill_RotateGLYPHDATA (_vFill_RotateGLYPHDATA@16)
bf8847ae win32k!xxxWrapRealDefWindowProc (_xxxWrapRealDefWindowProc@20)
bf9b4850 win32k!gbDesktopLocked = <no type information>
bf8d38d5 win32k!PATHOBJ_bMoveTo (_PATHOBJ_bMoveTo@12)
bf9a1950 win32k!MonoPatRatio = <no type information>
bf9b5e78 win32k!gspklBaseLayout = <no type information>
bf995168 win32k!_imp__ExWindowStationObjectType = <no type information>
bf9954bc win32k!_imp___allshr = <no type information>
bf99650c win32k!szCONTEXTHELPIDPROP = <no type information>
bf8f6267 win32k!itrp_RoundToGridSP (@itrp_RoundToGridSP@8)
bf8976a6 win32k!PostUpdateKeyStateEvent (_PostUpdateKeyStateEvent@4)
bf995344 win32k!_imp__RtlAppendUnicodeStringToString = <no type information>
bf9799fa win32k!UMPDOBJ::bThunkLargeBitmap (public: int __thiscall UMPDOBJ::bThunkLargeBitmap(struct _SURFOBJ *,void * *,void * *,int *,int *,unsigned long *))
bf8fa60e win32k!UnlinkAndFreeGhost (_UnlinkAndFreeGhost@8)
bf822778 win32k!NtUserLockWindowStation (_NtUserLockWindowStation@4)
bf83071d win32k!vFindTAndB (_vFindTAndB@20)
bf8d2768 win32k!xxxSendMessageFF (_xxxSendMessageFF@20)
bf904593 win32k!ptransMatchAPal (struct _TRANSLATE * __stdcall ptransMatchAPal(class DC *,class XEPALOBJ,class XEPALOBJ,int,unsigned long *,unsigned long *))
bf948621 win32k!GrePolylineTo (_GrePolylineTo@12)
bf9a5310 win32k!Modifiers_NLSKBD = <no type information>
bf9b5bb4 win32k!gpScancodeMap = <no type information>
bf8b9dbc win32k!vCleanupBrushes (void __stdcall vCleanupBrushes(unsigned long))
bf979a7f win32k!UMPDOBJ::bThunkLargeBitmaps (public: int __thiscall UMPDOBJ::bThunkLargeBitmaps(struct _SURFOBJ *,struct _SURFOBJ *,struct _SURFOBJ *,void * *,void * *,void * *,void * *,void * *,void * *,int *,int *,int *,int *,int *,int *,unsigned long *))
bf8df946 win32k!vSrcCopyS32D8 (void __stdcall vSrcCopyS32D8(struct BLTINFO *))
bf8e46f4 win32k!xxxEndMenu (_xxxEndMenu@4)
bf922a3e win32k!GetLangIdMatchLevel (_GetLangIdMatchLevel@8)
bf945baf win32k!NtGdiGetDeviceGammaRamp (_NtGdiGetDeviceGammaRamp@8)
bf9991f0 win32k!ausMouseVKey = <no type information>
bf857bf2 win32k!NtUserSetWindowsHookEx (_NtUserSetWindowsHookEx@24)
bf92826f win32k!NlsHiraganaModeProc (_NlsHiraganaModeProc@12)
bf9b56a8 win32k!gHardErrorHandler = <no type information>
bf8fd327 win32k!NtUserfnINSTRING (_NtUserfnINSTRING@28)
bf90363c win32k!SBCtlSetup (_SBCtlSetup@4)
bf90ae3d win32k!NtUserMNDragLeave (_NtUserMNDragLeave@0)
bf9b47cc win32k!ghDisconnectDesk = <no type information>
bf97b44a win32k!UMPDDrvGetGlyphMode (unsigned long __stdcall UMPDDrvGetGlyphMode(struct DHPDEV__ *,struct _FONTOBJ *))
bf84568f win32k!ShortFracMul (@ShortFracMul@8)
bf8e4a16 win32k!NtUserGetCaretPos (_NtUserGetCaretPos@4)
bf90ccb1 win32k!NtUserGetImeHotKey (_NtUserGetImeHotKey@16)
bf89f282 win32k!XEBRUSHOBJ::bSaveAttributes (protected: int __thiscall XEBRUSHOBJ::bSaveAttributes(void))
bf8d7790 win32k!EPOINTFL::bToPOINTL (public: int __thiscall EPOINTFL::bToPOINTL(struct _POINTL &))
bf9600f7 win32k!WatchdogUnlockD3DBuffer (unsigned long __stdcall WatchdogUnlockD3DBuffer(struct _DD_UNLOCKDATA *))
bf904aad win32k!vIntersectVertical (void __stdcall vIntersectVertical(class DDA_CLIPLINE *,long,struct _POINTL *,struct _POINTL *,long *))
bf960d58 win32k!WatchdogDrvRealizeBrush (int __stdcall WatchdogDrvRealizeBrush(struct _BRUSHOBJ *,struct _SURFOBJ *,struct _SURFOBJ *,struct _SURFOBJ *,struct _XLATEOBJ *,unsigned long))
bf9b5e40 win32k!grcCursorClip = <no type information>
bf9b5e34 win32k!gdwMouseMoveTimeStamp = <no type information>
bf9b6190 win32k!gToggleKeys = <no type information>
bf957fa2 win32k!MULTISURF::bLoadSource (public: int __thiscall MULTISURF::bLoadSource(struct _DISPSURF *))
bf9625e5 win32k!vPatternCopyLoopRow (void __stdcall vPatternCopyLoopRow(long,unsigned long *,struct _PATBLTFRAME *,int,unsigned long,unsigned long,unsigned long,unsigned long,long,unsigned long *))
bf854710 win32k!DxDdGetSurfaceLock (_DxDdGetSurfaceLock@4)
bf9a8fa8 win32k!ajGammaInvCT_13 = <no type information>
bf9af534 win32k!ghDxGraphics = <no type information>
bf913dea win32k!UpdateMonitorRectsSnapShot (_UpdateMonitorRectsSnapShot@4)
bf8954f7 win32k!ToggleKeys (_ToggleKeys@12)
bf8d8775 win32k!itrp_WPV (@itrp_WPV@8)
bf820ee1 win32k!SetAccessEnabledFlag (_SetAccessEnabledFlag@0)
bf995254 win32k!_imp__ZwQueryDefaultUILanguage = <no type information>
bf99649c win32k!szDDETRACK_PROP_NAME = <no type information>
bf82526c win32k!PFEOBJ::bCheckFamilyName (public: int __thiscall PFEOBJ::bCheckFamilyName(unsigned short const *,int,int *))
bf835879 win32k!xxxSetClassData (_xxxSetClassData@16)
bf952c4a win32k!NtGdiSTROBJ_dwGetCodePage (_NtGdiSTROBJ_dwGetCodePage@4)
bf97ee8f win32k!lGetGlyphBitmapVertical (_lGetGlyphBitmapVertical@20)
bf80878f win32k!vIFIMetricsToEnumLogFontExDvW (_vIFIMetricsToEnumLogFontExDvW@8)
bf8adb8f win32k!PhkFirstGlobalValid (_PhkFirstGlobalValid@8)
bf84182c win32k!IncrementRedirectedCount (_IncrementRedirectedCount@4)
bf8f629c win32k!scl_ScaleDownFromSubPixelOverscale (@scl_ScaleDownFromSubPixelOverscale@4)
bf92f20d win32k!GrePtInSprite (_GrePtInSprite@16)
bf94d0b8 win32k!RESETFCOBJ::~RESETFCOBJ (public: __thiscall RESETFCOBJ::~RESETFCOBJ(void))
bf8a4dfc win32k!XEPALOBJ::ulTime (public: void __thiscall XEPALOBJ::ulTime(unsigned long))
bf9b57c0 win32k!gpresMouseEventQueue = <no type information>
bf80d1bd win32k!EngMultiByteToUnicodeN (_EngMultiByteToUnicodeN@20)
bf929a95 win32k!BRUSHOBJ_ulGetBrushColor (_BRUSHOBJ_ulGetBrushColor@4)
bf90ddd8 win32k!NtUserResolveDesktopForWOW (_NtUserResolveDesktopForWOW@4)
bf8f2ee0 win32k!FreeDdeConv (_FreeDdeConv@4)
bf8d3587 win32k!efCos (class EFLOAT __stdcall efCos(class EFLOAT))
bf94bbf3 win32k!RGNMEMOBJ::bMergeScanline (public: int __thiscall RGNMEMOBJ::bMergeScanline(class STACKOBJ &))
bf877056 win32k!AddHorizOff (@AddHorizOff@4)
bf995204 win32k!_imp__ZwQueryInformationProcess = <no type information>
bf8934aa win32k!LockCaptureWindow (_LockCaptureWindow@8)
bf92f67a win32k!vSpHideSprites (void __stdcall vSpHideSprites(struct HDEV__ *,int))
bf8408d0 win32k!_KillSystemTimer (__KillSystemTimer@8)
bf802051 win32k!atmfdEnablePDEV (_atmfdEnablePDEV@44)
bf8eabf8 win32k!NtGdiGetTextExtentExW (_NtGdiGetTextExtentExW@32)
bf933c8a win32k!GetMonitorCapability2 (unsigned long __stdcall GetMonitorCapability2(struct _EDID2 *,struct tagModeCap *,struct _FREQUENCY_RAGE *))
bf995560 win32k!_imp__strncmp = <no type information>
bf8d7328 win32k!NtUserSBGetParms (_NtUserSBGetParms@16)
bf94342a win32k!NtGdiGetColorAdjustment (_NtGdiGetColorAdjustment@8)
bf93334f win32k!GetFontPathName (int __stdcall GetFontPathName(unsigned short *,unsigned short *))
bf8a6893 win32k!NtUserValidateTimerCallback (_NtUserValidateTimerCallback@4)
bf944b6b win32k!EBOX::EBOX (public: __thiscall EBOX::EBOX(class EXFORMOBJ &,struct _RECTL &))
bf9bb030 win32k!QueryRegistryFontSubstituteListRoutine (_QueryRegistryFontSubstituteListRoutine@24)
bf8dfc6b win32k!NtUserfnINWPARAMCHAR (_NtUserfnINWPARAMCHAR@28)
bf8d0553 win32k!vVecRound (void __stdcall vVecRound(class EVECTORFX *))
bf91f8bc win32k!xxxClientWOWTask16SchedNotify (_xxxClientWOWTask16SchedNotify@8)
bf90a8b2 win32k!NtUserRealChildWindowFromPoint (_NtUserRealChildWindowFromPoint@12)
bf956dbe win32k!MULTIFONT::MULTIFONT (public: __thiscall MULTIFONT::MULTIFONT(struct _FONTOBJ *,long,struct _VDEV *))
bf8b6bb7 win32k!NtGdiFlush (_NtGdiFlush@0)
bf9b08e0 win32k!gawcSystemDBCSFontPath = <no type information>
bf979331 win32k!atmfdQueryGlyphAttrs (_atmfdQueryGlyphAttrs@8)
bf863bce win32k!xxxSetTrayWindow (_xxxSetTrayWindow@12)
bf92a605 win32k!NtGdiDdSetOverlayPosition (_NtGdiDdSetOverlayPosition@12)
bf89b1a5 win32k!IsVisible (_IsVisible@4)
bf8765d4 win32k!itrp_RoundOff (@itrp_RoundOff@8)
bf8316a7 win32k!itrp_FDEF (@itrp_FDEF@8)
bf9b633c win32k!gpwpCalcFirst = <no type information>
bf92a28d win32k!EngMapSection (_EngMapSection@16)
bf94f7fc win32k!UMPDOBJ::GetSURFOBJ (public: struct _SURFOBJ * __thiscall UMPDOBJ::GetSURFOBJ(struct _SURFOBJ *))
bf9934e6 win32k!itrp_LSW (@itrp_LSW@8)
bf9b3250 win32k!engineVersion = <no type information>
bf866c7a win32k!CalcHorizLineSubpix (@CalcHorizLineSubpix@12)
bf9b4c84 win32k!gpEventScanGhosts = <no type information>
bf9b4248 win32k!gpPublicObjectList = <no type information>
bf8ebbe9 win32k!WIDENER::vVecSquareCompute (private: void __thiscall WIDENER::vVecSquareCompute(class LINEDATA &))
bf8b829e win32k!RemoveThreadSwitchWindowInfo (_RemoveThreadSwitchWindowInfo@4)
bf923aa9 win32k!FreeHidDesc (_FreeHidDesc@4)
bf9b6324 win32k!bPermanentFontsLoaded = <no type information>
bf8eaa0d win32k!WIDENER::vecInDraw (protected: class EVECTORFX __thiscall WIDENER::vecInDraw(void))
bf9b4860 win32k!gSessionId = <no type information>
bf954ae9 win32k!vSrcTranCopyS4D16 (_vSrcTranCopyS4D16@44)
bf8f285b win32k!xxxUnexpectedClientPost (_xxxUnexpectedClientPost@12)
bf8eb4c6 win32k!GreSetFontXform (_GreSetFontXform@12)
bf8fec7f win32k!CheckClipboardAccess (_CheckClipboardAccess@0)
bf8c3161 win32k!AlphaScanLineBlend (int __stdcall AlphaScanLineBlend(unsigned char *,struct _RECTL *,long,unsigned char *,long,struct _POINTL *,struct _XLATEOBJ *,struct _XLATEOBJ *,struct _XLATEOBJ *,class XEPALOBJ,class XEPALOBJ,struct _ALPHA_DISPATCH_FORMAT *))
bf9b5bdc win32k!gcSysExpunge = <no type information>
bf8b7adb win32k!MapDesktop (_MapDesktop@4)
bf8e5115 win32k!UMPDOBJ::_AllocUserMem (private: void * __thiscall UMPDOBJ::_AllocUserMem(unsigned long,int))
bf8ec410 win32k!SfnOUTLBOXSTRING (_SfnOUTLBOXSTRING@32)
bf9b35b0 win32k!guGhostLinked = <no type information>
bf83abf9 win32k!HT_HalftoneBitmap (_HT_HalftoneBitmap@24)
bf995094 win32k!_imp_ExReleaseResourceAndLeaveCriticalRegion = <no type information>
bf837d28 win32k!InitializeFUDI (_InitializeFUDI)
bf823e1c win32k!DrvGetMonitorPowerState (_DrvGetMonitorPowerState@8)
bf937c9b win32k!vEdgeDDA (void __stdcall vEdgeDDA(struct _TRIANGLEDATA *,struct _TRIDDA *))
bf9b5db0 win32k!gcxMouseHover = <no type information>
bf8e16f6 win32k!DxEngReferenceHdev (_DxEngReferenceHdev@4)
bf8bb32a win32k!wcschr (_wcschr)
bf81c0dd win32k!wcsrchr (_wcsrchr)
bf909e2d win32k!GreSetMagicColors (_GreSetMagicColors@12)
bf802067 win32k!atmfdCompletePDEV (_atmfdCompletePDEV@8)
bf89b57e win32k!xxxRealInternalGetMessage (_xxxRealInternalGetMessage@24)
bf9464dc win32k!bDynamicRemoveAllDriverRealizations (int __stdcall bDynamicRemoveAllDriverRealizations(struct HDEV__ *))
bf9b4734 win32k!gdwHydraHint = <no type information>
bf8f0cf8 win32k!ProbeAndConvertXFORM (_ProbeAndConvertXFORM@8)
bf90c143 win32k!NtUserfnINLPHELPINFOSTRUCT (_NtUserfnINLPHELPINFOSTRUCT@28)
bf95c19e win32k!pxrlStrRead32OR (struct _XRUNLEN * __stdcall pxrlStrRead32OR(struct _STRDDA *,struct _STRRUN *,unsigned char *,unsigned char *,struct _XLATEOBJ *,long,long,long))
bf8add23 win32k!CategoryMaskFromEvent (_CategoryMaskFromEvent@4)
bf878a23 win32k!itrp_ExecutePrePgm (@itrp_ExecutePrePgm@16)
bf9b5fdc win32k!gtmridFKAcceptanceDelay = <no type information>
bf81df2e win32k!xxxClientLoadStringW (_xxxClientLoadStringW@12)
bf953008 win32k!NtGdiPATHOBJ_bEnumClipLines (_NtGdiPATHOBJ_bEnumClipLines@12)
bf86d175 win32k!DeleteProperties (_DeleteProperties@4)
bf81eed3 win32k!xxxMB_FindLongestString (_xxxMB_FindLongestString@4)
bf9b5b68 win32k!ghrgnInv1 = <no type information>
bf9b6314 win32k!gtmridAutorunCursor = <no type information>
bf8a45e5 win32k!GreMarkDeletableRgn (_GreMarkDeletableRgn@4)
bf933493 win32k!EngStrokeAndFillPath (_EngStrokeAndFillPath@40)
bf80e8ec win32k!CompareRoutine (int __cdecl CompareRoutine(unsigned short *,unsigned short *))
bf8a2229 win32k!RGNOBJAPI::bCopy (public: int __thiscall RGNOBJAPI::bCopy(class RGNOBJ &))
bf81b6f3 win32k!EngEraseSurface (_EngEraseSurface@12)
bf91c0b6 win32k!xxxUnloadKeyboardLayout (_xxxUnloadKeyboardLayout@8)
bf9b5f90 win32k!gMKDeltaY = <no type information>
bf903ff0 win32k!GrePolyPolylineInternal (_GrePolyPolylineInternal@20)
bf826f79 win32k!InitPreviousUserString (_InitPreviousUserString@0)
bf93621b win32k!DrvSetMonitorPowerState (_DrvSetMonitorPowerState@8)
bf938e54 win32k!bStrokeCosmetic (int __stdcall bStrokeCosmetic(class SURFACE *,struct _PATHOBJ *,struct _CLIPOBJ *,struct _BRUSHOBJ *,struct _LINEATTRS *,unsigned long))
bf9abec0 win32k!OrAllTableWide = <no type information>
bf8c750a win32k!ClientEventCallback (_ClientEventCallback@8)
bf94fe6e win32k!NtGdiEngCreateBitmap (_NtGdiEngCreateBitmap@24)
bf995568 win32k!_imp__RtlWriteRegistryValue = <no type information>
bf95e8be win32k!HandleStuckThreadException (void __stdcall HandleStuckThreadException(struct _LDEV *))
bf89d409 win32k!PhkFirstValid (_PhkFirstValid@8)
bf97002f win32k!vGradientFill8 (void __stdcall vGradientFill8(class SURFACE *,struct _TRIANGLEDATA *))
bf9a5188 win32k!gpusMouseVKey = <no type information>
bf925b07 win32k!DeviceNotify (_DeviceNotify@8)
bf995438 win32k!_imp__RtlUnicodeToMultiByteSize = <no type information>
bf98fa8c win32k!RemoveGaps (_RemoveGaps@8)
bf88967b win32k!wcsncpycch (_wcsncpycch@12)
bf919d61 win32k!CleanupResources (_CleanupResources@0)
bf9453c6 win32k!NtGdiColorCorrectPalette (_NtGdiColorCorrectPalette@24)
bf8de796 win32k!blueloop (int __stdcall blueloop(int))
bf943c9b win32k!NtGdiGetEmbedFonts (_NtGdiGetEmbedFonts@0)
bf997990 win32k!gargbInitial = <no type information>
bf9b4770 win32k!gVideoFileObject = <no type information>
bf8e9c60 win32k!DxDdDisableDirectDraw (_DxDdDisableDirectDraw@8)
bf9b0b68 win32k!GreEngLoadModuleAllocList = <no type information>
bf96d95c win32k!GetETMFontManagement (int __stdcall GetETMFontManagement(class RFONTOBJ &,class PDEVOBJ,struct _SURFOBJ *,struct _FONTOBJ *,unsigned long,unsigned long,void *,unsigned long,void *))
bf814358 win32k!ui16BeLangId (_ui16BeLangId@8)
bf8e03a8 win32k!pvHandleKerningPairs (_pvHandleKerningPairs@12)
bf95fdd3 win32k!WatchdogDdVideoPortGetSignalStatus (unsigned long __stdcall WatchdogDdVideoPortGetSignalStatus(struct _DD_GETVPORTSIGNALDATA *))
bf9b4c6e win32k!atomDDETrack = <no type information>
bf90c952 win32k!NtUserUpdateInputContext (_NtUserUpdateInputContext@12)
bf962ef6 win32k!vPatCpyRect8_8x8 (void __stdcall vPatCpyRect8_8x8(struct _PATBLTFRAME *,int))
bf91f43c win32k!xxxUserModeCallback (_xxxUserModeCallback@20)
bf847ac5 win32k!scl_QueryPPEMXY (@scl_QueryPPEMXY@12)
bf8f63da win32k!fsg_QueryTwilightElementSubPixel (@fsg_QueryTwilightElementSubPixel@8)
bf995074 win32k!_imp__ObReferenceObjectByHandle = <no type information>
bf8031c2 win32k!PruneModesByMonitors (unsigned long __stdcall PruneModesByMonitors(struct tagGRAPHICS_DEVICE *,unsigned long,struct tagDEVMODEMARK *))
bf8c846c win32k!vPatCpyRect1_8x8 (void __stdcall vPatCpyRect1_8x8(struct _PATBLTFRAME *,int))
bf8a6ccf win32k!XEPALOBJ::vFill_rgbquads (public: void __thiscall XEPALOBJ::vFill_rgbquads(struct tagRGBQUAD *,unsigned long,unsigned long))
bf828e58 win32k!GreCreateRectRgn (_GreCreateRectRgn@16)
bf9069dd win32k!PseudoDestroyClassWindows (_PseudoDestroyClassWindows@8)
bf85f16c win32k!GreGetCharSet (_GreGetCharSet@4)
bf97ef07 win32k!vMarkFontGone (_vMarkFontGone@8)
bf8577da win32k!NtUserfnINOUTDRAG (_NtUserfnINOUTDRAG@28)
bf90df45 win32k!xxxUnusedFunctionId (_xxxUnusedFunctionId@20)
bf9b6258 win32k!gspwndFullScreen = <no type information>
bf8dc54b win32k!EXFORMOBJ::bXform (public: int __thiscall EXFORMOBJ::bXform(struct _VECTORL *,struct _VECTORFX *,unsigned long))
bf9634d1 win32k!vPatCpyRect4_8x8 (void __stdcall vPatCpyRect4_8x8(struct _PATBLTFRAME *,int))
bf92f29d win32k!vSpDeviceControlSprites (void __stdcall vSpDeviceControlSprites(struct HDEV__ *,class EWNDOBJ *,unsigned long))
bf81e887 win32k!GetThreadsWithPKL (_GetThreadsWithPKL@8)
bf9b5fa8 win32k!gTKExtraInformation = <no type information>
bf92a4fd win32k!NtGdiDdDestroySurface (_NtGdiDdDestroySurface@8)
bf9b361c win32k!gpMonitorMouse = <no type information>
bf90ec38 win32k!xxxUpdateSystemIconsFromRegistry (_xxxUpdateSystemIconsFromRegistry@4)
bf9b6384 win32k!gulFontInformation = <no type information>
bf876e6e win32k!itrp_RPV (@itrp_RPV@8)
bf92a83f win32k!NtGdiDdRenderMoComp (_NtGdiDdRenderMoComp@8)
bf8564ae win32k!EXLATEOBJ::vAddToCache (public: void __thiscall EXLATEOBJ::vAddToCache(class XEPALOBJ,class XEPALOBJ,class XEPALOBJ,class XEPALOBJ))
bf9b5e00 win32k!gpcurPhysCurrent = <no type information>
bf980152 win32k!bValidRangePOSTFormat2 (_bValidRangePOSTFormat2@12)
bf861c69 win32k!xxxProcessEventMessage (_xxxProcessEventMessage@8)
bf81c842 win32k!GreGetDeviceCaps (_GreGetDeviceCaps@8)
bf92a855 win32k!NtGdiDdQueryMoCompStatus (_NtGdiDdQueryMoCompStatus@8)
bf95ccb2 win32k!vStrWrite16 (void __stdcall vStrWrite16(struct _STRRUN *,struct _XRUNLEN *,class SURFACE *,struct _CLIPOBJ *))
bf9a2b30 win32k!GrayIdxWORD = <no type information>
bf8a38dc win32k!DCMEMOBJ::DCMEMOBJ (public: __thiscall DCMEMOBJ::DCMEMOBJ(unsigned long,int))
bf9396cf win32k!GreGetFontUnicodeRanges (_GreGetFontUnicodeRanges@8)
bf8fa778 win32k!NtGdiGetOutlineTextMetricsInternalW (_NtGdiGetOutlineTextMetricsInternalW@16)
bf840389 win32k!fs_Initialize (_fs_Initialize)
bf90a0c5 win32k!vtfdQueryFontCaps (_vtfdQueryFontCaps@8)
bf835c11 win32k!SetRect (_SetRect@20)
bf91744a win32k!Request (_Request@4)
bf9404c0 win32k!EPOINTQF::operator*= (public: void __thiscall EPOINTQF::operator*=(long))
bf89c0f2 win32k!xxxReadPostMessage (_xxxReadPostMessage@24)
bf9950e0 win32k!_imp__RtlIntegerToUnicode = <no type information>
bf80eb56 win32k!PFEMEMOBJ::bInit (public: int __thiscall PFEMEMOBJ::bInit(class PFF *,unsigned long,struct _FD_GLYPHSET *,unsigned long,struct _IFIMETRICS *,unsigned long,int,struct _UNIVERSAL_FONT_ID *,int))
bf953cf9 win32k!MultiUserGreCleanupHmgRemoveAllLocks (void __stdcall MultiUserGreCleanupHmgRemoveAllLocks(unsigned char))
bf9b3254 win32k!atmfdFuncData = <no type information>
bf92ac1b win32k!MDCOBJ::~MDCOBJ (public: __thiscall MDCOBJ::~MDCOBJ(void))
bf8a49f2 win32k!NtUserSelectPalette (_NtUserSelectPalette@12)
bf9954e8 win32k!_imp__ExSystemTimeToLocalTime = <no type information>
bf8d5b59 win32k!RGNOBJ::bCreate (public: int __thiscall RGNOBJ::bCreate(class EPATHOBJ &,class EXFORMOBJ *))
bf80d4e2 win32k!cVtfdResFaces (_cVtfdResFaces@4)
bf9aa0a8 win32k!ajGammaCT_22 = <no type information>
bf806fab win32k!bInitializeEUDC (int __stdcall bInitializeEUDC(void))
bf9a9ea8 win32k!ajGammaCT_21 = <no type information>
bf9a9ca8 win32k!ajGammaCT_20 = <no type information>
bf957aa0 win32k!MulSaveScreenBits (unsigned long __stdcall MulSaveScreenBits(struct _SURFOBJ *,unsigned long,unsigned long,struct _RECTL *))
bf99512c win32k!_imp__MmCreateSection = <no type information>
bf9b3454 win32k!gdwLocks = <no type information>
bf81f148 win32k!_SetDoubleClickTime (__SetDoubleClickTime@4)
bf995498 win32k!_imp__IoCreateDriver = <no type information>
bf9af2cc win32k!bLastVKDown = <no type information>
bf8d13dc win32k!bXformUnitVector (_bXformUnitVector@24)
bf984026 win32k!OutputAATo8BPP_K_B332_XLATE (_OutputAATo8BPP_K_B332_XLATE)
bf8c5173 win32k!FreeSMS (_FreeSMS@4)
bf859f1f win32k!LockWndMenu (_LockWndMenu@12)
bf892dea win32k!FillGradient (_FillGradient@16)
bf8e3d23 win32k!xxxDrawMenuBar (_xxxDrawMenuBar@4)
bf82c127 win32k!UserIsUserCritSecIn (_UserIsUserCritSecIn@0)
bf929690 win32k!FLOATOBJ_SetLong (_FLOATOBJ_SetLong@8)
bf93e629 win32k!STROBJ_dwGetCodePage (_STROBJ_dwGetCodePage@4)
bf8f9ef0 win32k!bCvtPts (_bCvtPts@16)
bf8d5987 win32k!EPATHOBJ::pprFlattenRec (protected: struct _PATHRECORD * __thiscall EPATHOBJ::pprFlattenRec(struct _PATHRECORD *))
bf8f7ebd win32k!zzzMoveShadow (_zzzMoveShadow@4)
bf97f498 win32k!Fixupb7Run (_Fixupb7Run@8)
bf8d8e49 win32k!UnmapPrintKView (_UnmapPrintKView@4)
bf8d17f9 win32k!vGetNotionalGlyphMetrics (_vGetNotionalGlyphMetrics@12)
bf9b622c win32k!gptiBlockInput = <no type information>
bf893b6a win32k!xxxRedrawTitle (_xxxRedrawTitle@8)
bf894b77 win32k!xxxProcessKeyEvent (_xxxProcessKeyEvent@16)
bf8bc368 win32k!NtGdiCreateSolidBrush (_NtGdiCreateSolidBrush@8)
bf866909 win32k!HasForegroundActivateRight (_HasForegroundActivateRight@4)
bf947ab0 win32k!NtGdiSetMagicColors (_NtGdiSetMagicColors@12)
bf8b1c23 win32k!zzzCalcStartCursorHide (_zzzCalcStartCursorHide@8)
bf8d48ca win32k!DC::vCurrentPosition (public: void __thiscall DC::vCurrentPosition(long,long,long,long))
bf9950b0 win32k!PsJobType = <no type information>
bf8814b0 win32k!xxxScanSysQueue (_xxxScanSysQueue@28)
bf8b2cae win32k!RGNOBJ::bExpand (public: int __thiscall RGNOBJ::bExpand(unsigned long))
bf8fc510 win32k!sfac_ReadComponentData (@sfac_ReadComponentData@56)
bf852d73 win32k!NtGdiCreatePen (_NtGdiCreatePen@16)
bf85e8f8 win32k!SfnINLPWINDOWPOS (_SfnINLPWINDOWPOS@32)
bf965218 win32k!RFONTOBJ::vGetInfo (public: void __thiscall RFONTOBJ::vGetInfo(struct _FONTINFO *))
bf9a538c win32k!aulShiftControlCvt_VK_IBM02 = <no type information>
bf89eebd win32k!ERECTL::vOrder (public: void __thiscall ERECTL::vOrder(void))
bf80b1cc win32k!PDEVOBJ::vFilterDriverHooks (public: void __thiscall PDEVOBJ::vFilterDriverHooks(void))
bf89ea76 win32k!NtUserDispatchMessage (_NtUserDispatchMessage@4)
bf8e6833 win32k!EXFORMOBJ::vComputeWtoDAccelFlags (public: void __thiscall EXFORMOBJ::vComputeWtoDAccelFlags(void))
bf96c9bc win32k!WIDEPATHOBJ::vPrependBeforeSubpath (public: void __thiscall WIDEPATHOBJ::vPrependBeforeSubpath(void))
bf92930f win32k!xxxActivateDebugger (_xxxActivateDebugger@4)
bf8fcdf5 win32k!scl_ScaleFromFixedFUnits (@scl_ScaleFromFixedFUnits@20)
bf930a68 win32k!EWNDOBJ::vSetClip (public: void __thiscall EWNDOBJ::vSetClip(class REGION *,class ERECTL))
bf8d1f41 win32k!SetTooltipTimer (_SetTooltipTimer@12)
bf81a55f win32k!NtUserCreateWindowStation (_NtUserCreateWindowStation@28)
bf8a34c3 win32k!DC::bSetDefaultRegion (public: int __thiscall DC::bSetDefaultRegion(void))
bf8b1d0c win32k!GreCreateCompatibleBitmap (_GreCreateCompatibleBitmap@12)
bf96daef win32k!XCLIPOBJ::vSetLeftToRight (protected: void __thiscall XCLIPOBJ::vSetLeftToRight(int))
bf993dca win32k!itrp_IDefPatch (@itrp_IDefPatch@8)
bf8a4e78 win32k!HmgLockAllOwners (@HmgLockAllOwners@8)
bf929775 win32k!FLOATOBJ_SubLong (_FLOATOBJ_SubLong@8)
bf9aa3a0 win32k!SURFACE::tSize = <no type information>
bf936c30 win32k!EngFntCacheFault (_EngFntCacheFault@8)
bf95e383 win32k!XDCOBJ::bSetLinkedUFIs (public: int __thiscall XDCOBJ::bSetLinkedUFIs(struct _UNIVERSAL_FONT_ID *,unsigned int))
bf85e1ab win32k!ValidateZorder (_ValidateZorder@4)
bf87ffaa win32k!xxxButtonEvent (_xxxButtonEvent@40)
bf953764 win32k!PFEOBJ::pGetLinkedFontList (public: struct _LIST_ENTRY * __thiscall PFEOBJ::pGetLinkedFontList(void))
bf89307c win32k!PostInputMessage (_PostInputMessage@28)
bf95d969 win32k!vLoadAndConvert8ToBGRA (void __stdcall vLoadAndConvert8ToBGRA(unsigned long *,unsigned char *,long,long,struct _XLATEOBJ *))
bf9b5c20 win32k!gMenuState = <no type information>
bf9b3634 win32k!gbVKLastDown = <no type information>
bf8fec4d win32k!FindClipFormat (_FindClipFormat@8)
bf8a40c9 win32k!UT_GetParentDCClipBox (_UT_GetParentDCClipBox@12)
bf894538 win32k!xxxWrapSendMessageCallback (_xxxWrapSendMessageCallback@20)
bf941339 win32k!STROBJ_bGetAdvanceWidthsLinked (int __stdcall STROBJ_bGetAdvanceWidthsLinked(class ESTROBJ *,unsigned long,unsigned long,struct _POINTQF *))
bf81438b win32k!bCheckHdmxTable (_bCheckHdmxTable@8)
bf92a4d4 win32k!NtGdiDdColorControl (_NtGdiDdColorControl@8)
bf978a60 win32k!UMPDOBJ::ThunkLINEATTRS (public: int __thiscall UMPDOBJ::ThunkLINEATTRS(struct _LINEATTRS * *))
bf8e0db0 win32k!EPOINTFL::operator/= (public: void __thiscall EPOINTFL::operator/=(class EFLOAT))
bf9415d1 win32k!ESTROBJ::bLinkedTextToPath (public: int __thiscall ESTROBJ::bLinkedTextToPath(class EPATHOBJ &,class XDCOBJ &,int))
bf80fa06 win32k!vLoadFontFileView (void __stdcall vLoadFontFileView(unsigned short *,unsigned long,struct _FONTFILEVIEW * *,unsigned long,void * *,unsigned long *,struct tagDESIGNVECTOR *,unsigned long,unsigned long *,class PDEV * *,struct _FNTCHECKSUM *))
bf87709d win32k!AddVertOn (@AddVertOn@4)
bf8ea277 win32k!GreGetBoundsRect (_GreGetBoundsRect@12)
bf8c54b5 win32k!EFLOATEXT::EFLOATEXT (public: __thiscall EFLOATEXT::EFLOATEXT(long))
bf995050 win32k!_imp__PsGetCurrentProcess = <no type information>
bf99566c win32k!GUID_IO_DEVICE_BECOMING_READY = <no type information>
bf90f6bf win32k!xxxRemoteConsoleShadowStop (_xxxRemoteConsoleShadowStop@0)
bf94f755 win32k!UMPDOBJ::GetDDIOBJInternal (private: struct _XLATEOBJ * __thiscall UMPDOBJ::GetDDIOBJInternal(struct _XLATEOBJ *))
bf8c0bb0 win32k!GreDPtoLP (_GreDPtoLP@12)
bf8c00a6 win32k!GreLPtoDP (_GreLPtoDP@12)
bf80bbef win32k!CreateMonitor (_CreateMonitor@0)
bf883197 win32k!GetMouseKeyFlags (_GetMouseKeyFlags@4)
bf96c99e win32k!LINEDATA::bToLeftSide (public: int __thiscall LINEDATA::bToLeftSide(void))
bf952057 win32k!NtGdiBRUSHOBJ_pvAllocRbrush (_NtGdiBRUSHOBJ_pvAllocRbrush@8)
bf82b7e7 win32k!vConvertLogFontW (void __stdcall vConvertLogFontW(struct tagENUMLOGFONTEXDVW *,struct tagLOGFONTW *))
bf95d674 win32k!vLoadAndConvert1ToBGRA (void __stdcall vLoadAndConvert1ToBGRA(unsigned long *,unsigned char *,long,long,struct _XLATEOBJ *))
bf80a249 win32k!EngInitializeSafeSemaphore (_EngInitializeSafeSemaphore@4)
bf9b3654 win32k!gcrcVisExcludeMax = <no type information>
bf849170 win32k!GreValidateServerHandle (_GreValidateServerHandle@8)
bf95d875 win32k!vLoadAndConvert4ToBGRA (void __stdcall vLoadAndConvert4ToBGRA(unsigned long *,unsigned char *,long,long,struct _XLATEOBJ *))
bf9616d7 win32k!WatchdogDrvStretchBltROP (int __stdcall WatchdogDrvStretchBltROP(struct _SURFOBJ *,struct _SURFOBJ *,struct _SURFOBJ *,struct _CLIPOBJ *,struct _XLATEOBJ *,struct tagCOLORADJUSTMENT *,struct _POINTL *,struct _RECTL *,struct _RECTL *,struct _POINTL *,unsigned long,struct _BRUSHOBJ *,unsigned long))
bf9b3268 win32k!gpcpVTFD = <no type information>
bf83368b win32k!UserReAllocPoolWithQuotaTag (_UserReAllocPoolWithQuotaTag@16)
bf9a4fac win32k!__security_cookie = <no type information>
bf8a4769 win32k!UserGetDesktopDC (_UserGetDesktopDC@12)
bf906ef4 win32k!BltLnkAccel6666 (void __stdcall BltLnkAccel6666(unsigned char *,unsigned char *,long,long,long,long))
bf8f1d69 win32k!hdcOpenDCW (_hdcOpenDCW@28)
bf86fff0 win32k!fsg_DoScanControl (@fsg_DoScanControl@8)
bf92a792 win32k!NtGdiDdGetMoCompGuids (_NtGdiDdGetMoCompGuids@8)
bf8cd870 win32k!BltColor (_BltColor@40)
bf8dd178 win32k!greenloop (int __stdcall greenloop(int))
bf8cd491 win32k!GreSetBoundsRect (_GreSetBoundsRect@12)
bf8533ac win32k!MNGetPopupFromMenu (_MNGetPopupFromMenu@8)
bf908b74 win32k!bEllipse (int __stdcall bEllipse(class EPATHOBJ &,class EBOX &))
bf90818b win32k!BmfdUnloadFontFile (_BmfdUnloadFontFile@4)
bf80facb win32k!PDEVOBJ::LoadFontFile (public: unsigned long __thiscall PDEVOBJ::LoadFontFile(unsigned long,unsigned long *,void * *,unsigned long *,struct tagDESIGNVECTOR *,unsigned long,unsigned long))
bf9aff3c win32k!ppalDefault = <no type information>
bf938375 win32k!bIsTriangleInBounds (int __stdcall bIsTriangleInBounds(struct _TRIVERTEX *,struct _TRIVERTEX *,struct _TRIVERTEX *,struct _TRIANGLEDATA *))
bf92ef80 win32k!SpPlgBlt (int __stdcall SpPlgBlt(struct _SURFOBJ *,struct _SURFOBJ *,struct _SURFOBJ *,struct _CLIPOBJ *,struct _XLATEOBJ *,struct tagCOLORADJUSTMENT *,struct _POINTL *,struct _POINTFIX *,struct _RECTL *,struct _POINTL *,unsigned long))
bf92347a win32k!IsKeyboardDevice (_IsKeyboardDevice@8)
bf898234 win32k!__security_check_cookie (@__security_check_cookie@4)
bf96c02c win32k!bIntersect (int __stdcall bIntersect(struct _RECTFX *,struct _RECTFX *))
bf80eeae win32k!cComputeGISET (unsigned long __stdcall cComputeGISET(unsigned short *,unsigned long,struct _GISET *,unsigned long))
bf95de60 win32k!vConvertAndSaveBGRAToRGB16_565 (void __stdcall vConvertAndSaveBGRAToRGB16_565(unsigned char *,unsigned long *,long,long,struct _XLATEOBJ *,class XEPALOBJ,class XEPALOBJ))
bf9ac1c8 win32k!aulMsk = <no type information>
bf9b5e68 win32k!gfInNumpadHexInput = <no type information>
bf8d10ba win32k!EBRUSHOBJ::EBRUSHOBJ (public: __thiscall EBRUSHOBJ::EBRUSHOBJ(void))
bf95e872 win32k!WatchdogRecoveryThread (void __stdcall WatchdogRecoveryThread(void *))
bf8fb427 win32k!DestroyNotify (_DestroyNotify@4)
bf8a16a3 win32k!GreGetClipBox (_GreGetClipBox@12)
bf921513 win32k!SfnPOPTINLPUINT (_SfnPOPTINLPUINT@32)
bf8067e5 win32k!DrvChangeDisplaySettings (_DrvChangeDisplaySettings@44)
bf99569c win32k!GUID_TARGET_DEVICE_REMOVE_COMPLETE = <no type information>
bf82504f win32k!xxxSetShellWindow (_xxxSetShellWindow@8)
bf97f1ad win32k!IsCurrentCodePageDBCS (_IsCurrentCodePageDBCS@0)
bf928f4e win32k!_GetWindowContextHelpId (__GetWindowContextHelpId@4)
bf9266a7 win32k!DownSiren (_DownSiren@0)
bf81b4a1 win32k!bBlurCursorShadow (int __stdcall bBlurCursorShadow(struct _SURFOBJ *))
bf8e01ae win32k!PFEOBJ::cKernPairs (public: unsigned long __thiscall PFEOBJ::cKernPairs(struct _FD_KERNINGPAIR * *))
bf981c33 win32k!vtfdDisablePDEV (_vtfdDisablePDEV@4)
bf9b45e8 win32k!gWinstaRunRef = <no type information>
bf9b0770 win32k!gpLockShortDelay = <no type information>
bf92e722 win32k!UNDODESKTOPCOORD::UNDODESKTOPCOORD (public: __thiscall UNDODESKTOPCOORD::UNDODESKTOPCOORD(class EWNDOBJ *,struct _SPRITESTATE *))
bf9abba8 win32k!FP_SINE_FACTOR = <no type information>
bf91545f win32k!xxxCallJournalRecordHook (_xxxCallJournalRecordHook@4)
bf8f636a win32k!vSetClearTypeState__FONTCONTEXT (_vSetClearTypeState__FONTCONTEXT@4)
bf978ee1 win32k!Win32AllocPoolNonPagedWithPriority (_Win32AllocPoolNonPagedWithPriority@12)
bf88ca86 win32k!RFONTOBJ::PreTextOut (public: void __thiscall RFONTOBJ::PreTextOut(class XDCOBJ &))
bf965869 win32k!RFONTOBJ::bSetNewFDX (public: int __thiscall RFONTOBJ::bSetNewFDX(class XDCOBJ &,struct _FD_XFORM &,unsigned long))
bf875a58 win32k!itrp_SRP2 (@itrp_SRP2@8)
bf9b5b70 win32k!ghrgnInvalid = <no type information>
bf856a0a win32k!ValidateAndLockCursor (_ValidateAndLockCursor@8)
bf84bfde win32k!SUSPENDWATCH::Resume (public: void __thiscall SUSPENDWATCH::Resume(void))
bf87f253 win32k!BltLnkSrcCopyMsk24 (void __stdcall BltLnkSrcCopyMsk24(struct BLTINFO *,struct _BLTLNK_MASKINFO *,unsigned long *,unsigned long *))
bf90f5b2 win32k!ReadCurrentPowerSettting (_ReadCurrentPowerSettting@0)
bf83d021 win32k!itrp_ABS (@itrp_ABS@8)
bf9b5bb9 win32k!gMKPreviousVk = <no type information>
bf9450de win32k!GreSetDeviceGammaRampInternal (_GreSetDeviceGammaRampInternal@12)
bf813bf5 win32k!bCheckLocaTable (_bCheckLocaTable@16)
bf98149a win32k!vCvtToItalicBmp (_vCvtToItalicBmp@24)
bf8dc520 win32k!EFLOATEXT::EFLOATEXT (public: __thiscall EFLOATEXT::EFLOATEXT(unsigned long))
bf8806b6 win32k!bIntersect (int __fastcall bIntersect(struct _RECTL const *,struct _RECTL const *,struct _RECTL *))
bf8edab5 win32k!NtGdiSetMetaRgn (_NtGdiSetMetaRgn@4)
bf9bc9c3 win32k!hfontInitDefaultGuiFont (_hfontInitDefaultGuiFont@0)
bf8ccbb7 win32k!WIDEPATHOBJ::bGrowPath (protected: int __thiscall WIDEPATHOBJ::bGrowPath(void))
bf9b0b18 win32k!gbMMXProcessor = <no type information>
bf83533a win32k!scl_PostTransformGlyph (@scl_PostTransformGlyph@12)
bf89a424 win32k!HMFreeObject (_HMFreeObject@4)
bf80de46 win32k!vtfdQueryFontFileTE (_vtfdQueryFontFileTE@16)
bf92298c win32k!DeleteImeHotKey (_DeleteImeHotKey@8)
bf81a7f0 win32k!NtUserCreateDesktop (_NtUserCreateDesktop@20)
bf8e02e6 win32k!xxxChangeClipboardChain (_xxxChangeClipboardChain@8)
bf912c39 win32k!CheckOnTop (_CheckOnTop@12)
bf842a4b win32k!xxxRemoveDeleteMenuHelper (_xxxRemoveDeleteMenuHelper@16)
bf8e1155 win32k!fs_GetGlyphIDs (_fs_GetGlyphIDs)
bf8d1a22 win32k!bGIQtoIntegerLine (int __stdcall bGIQtoIntegerLine(struct _POINTFIX *,struct _POINTFIX *,struct _RECTL *,struct _DDALINE *))
bf919b0b win32k!FinalizeKoreanImeCompStrOnMouseClick (_FinalizeKoreanImeCompStrOnMouseClick@4)
bf8f5212 win32k!_GetInputState (__GetInputState@0)
bf891d4a win32k!xxxDrawCaptionTemp (_xxxDrawCaptionTemp@28)
bf884629 win32k!bSpComputeScan (int __stdcall bSpComputeScan(struct _SPRITESTATE *,class SPRITE *,long,long,struct _SPRITESCAN * *,unsigned long *))
bf9a5600 win32k!charsets = <no type information>
bf9bac4b win32k!bInitStockFonts (_bInitStockFonts@0)
bf93ddab win32k!vSrcTranCopyS1D16 (_vSrcTranCopyS1D16@44)
bf848bb0 win32k!itrp_WCVTFOD (@itrp_WCVTFOD@8)
bf8b9114 win32k!FastGetProfileStringW (_FastGetProfileStringW@28)
bf88cbea win32k!bDeleteFont (int __stdcall bDeleteFont(struct HLFONT__ *,int))
bf8a2f68 win32k!PDEVOBJ::vUnreferencePdev (public: void __thiscall PDEVOBJ::vUnreferencePdev(enum CLEANUPTYPE))
bf95abdf win32k!EXFORMOBJ::vGetCoefficient (public: void __thiscall EXFORMOBJ::vGetCoefficient(struct tagFLOATOBJ_XFORM *))
bf9b3648 win32k!gWaitBlockArray = <no type information>
bf9b5b3c win32k!ghrgnScrlVis = <no type information>
bf8f1a8c win32k!GetHDevName (_GetHDevName@8)
bf87e97a win32k!xxxCancelMouseMoveTracking (_xxxCancelMouseMoveTracking@16)
bf8b5068 win32k!SURFACE::pfnTextOut (public: int (__stdcall*__thiscall SURFACE::pfnTextOut(void))(struct _SURFOBJ *,struct _STROBJ *,struct _FONTOBJ *,struct _CLIPOBJ *,struct _RECTL *,struct _RECTL *,struct _BRUSHOBJ *,struct _BRUSHOBJ *,struct _POINTL *,unsigned long))
bf8f08ac win32k!AddConvProp (_AddConvProp@20)
bf9b2d04 win32k!G_RemoteConnectionChannel = <no type information>
bf937dd5 win32k!vCalculateLine (void __stdcall vCalculateLine(struct _TRIVERTEX *,struct _TRIVERTEX *,struct _TRIANGLEDATA *))
bf8f4681 win32k!IsSmallerThanScreen (_IsSmallerThanScreen@4)
bf97a579 win32k!UMPDDrvIcmCreateColorTransform (void * __stdcall UMPDDrvIcmCreateColorTransform(struct DHPDEV__ *,struct tagLOGCOLORSPACEW *,void *,unsigned long,void *,unsigned long,void *,unsigned long,unsigned long))
bf8c6f29 win32k!ResStrCmp (_ResStrCmp@8)
bf835e6e win32k!AdjustSrcDevGamma (_AdjustSrcDevGamma)
bf94f0b3 win32k!CaptureBits (void __stdcall CaptureBits(void *,void *,unsigned long))
bf82da41 win32k!DT_DrawStr (_DT_DrawStr@36)
bf8e4e8f win32k!ULongLongToUInt (_ULongLongToUInt@12)
bf9296a9 win32k!FLOATOBJ_GetFloat (_FLOATOBJ_GetFloat@4)
bf861125 win32k!RemoveEventMessage (_RemoveEventMessage@12)
bf927b72 win32k!KbdNlsFuncTypeDummy (_KbdNlsFuncTypeDummy@12)
bf89f63a win32k!XDCOBJ::XDCOBJ (public: __thiscall XDCOBJ::XDCOBJ(struct HDC__ *))
bf832408 win32k!RtlInitUnicodeStringOrId (_RtlInitUnicodeStringOrId@8)
bf97ff3c win32k!cjComputeGLYPHSET_OLDBIDI (_cjComputeGLYPHSET_OLDBIDI@12)
bf9100a5 win32k!CtxDisplayIOCtl (_CtxDisplayIOCtl@12)
bf8849ac win32k!ProcessQueuedMouseEvents (_ProcessQueuedMouseEvents@0)
bf8acdac win32k!EngCopyBits (_EngCopyBits@24)
bf9417b9 win32k!XLATEOBJ_piVector (_XLATEOBJ_piVector@4)
bf86cdf9 win32k!NtUserDestroyWindow (_NtUserDestroyWindow@4)
bf9444ed win32k!NtGdiDescribePixelFormat (_NtGdiDescribePixelFormat@16)
bf886525 win32k!cCapString (_cCapString@12)
bf87ebb4 win32k!vSolidFillRect24 (void __stdcall vSolidFillRect24(struct _RECTL *,unsigned long,unsigned char *,long,unsigned long,unsigned long))
bf91f061 win32k!ClientGetDDEFlags (_ClientGetDDEFlags@8)
bf830c5e win32k!vComputeRotatedXform (_vComputeRotatedXform@12)
bf9b6370 win32k!gfsCurSignature = <no type information>
bf89e18e win32k!HMAllocObject (_HMAllocObject@16)
bf867e32 win32k!xxxSendMessageBSM (_xxxSendMessageBSM@20)
bf9145f6 win32k!DIBtoBMP (_DIBtoBMP@12)
bf98164a win32k!vItalicizeLine (_vItalicizeLine@20)
bf995364 win32k!_imp_ExReleaseRundownProtection = <no type information>
bf8af5c4 win32k!psoSpGetComposite (struct _SURFOBJ * __stdcall psoSpGetComposite(struct _SPRITESTATE *,struct _RECTL *))
bf8a1e26 win32k!InternalInvalidate2 (_InternalInvalidate2@20)
bf97930f win32k!atmfdQueryTrueTypeOutline (_atmfdQueryTrueTypeOutline@28)
bf8fb859 win32k!pfnGetRLESrcCopy (int (__stdcall*__stdcall pfnGetRLESrcCopy(unsigned long,unsigned long))(struct BLTINFO *))
bf98fb98 win32k!_strnicmp (__strnicmp)
bf97e183 win32k!BltLnkAccel8888 (void __stdcall BltLnkAccel8888(unsigned char *,unsigned char *,long,long,long,long))
bf8434e4 win32k!IFIOBJ::lfOutPrecisionEnum (public: unsigned char __thiscall IFIOBJ::lfOutPrecisionEnum(void))
bf8985dd win32k!ExFreeToPagedLookasideList (_ExFreeToPagedLookasideList@8)
bf9129e2 win32k!IsRectBogus (_IsRectBogus@16)
bf92a673 win32k!NtGdiDdGetDxHandle (_NtGdiDdGetDxHandle@12)
bf8bc1fb win32k!AllocQueue (_AllocQueue@8)
bf90eb6a win32k!DestroyHandleSecondPass (_DestroyHandleSecondPass@4)
bf967585 win32k!PDEVOBJ::QueryTrueTypeOutline (public: long __thiscall PDEVOBJ::QueryTrueTypeOutline(struct DHPDEV__ *,struct _FONTOBJ *,unsigned long,int,struct _GLYPHDATA *,unsigned long,struct tagTTPOLYGONHEADER *))
bf8cb19c win32k!xxxMNDestroyHandler (_xxxMNDestroyHandler@4)
bf823067 win32k!xxxAddFontResourceW (_xxxAddFontResourceW@12)
bf944f63 win32k!NtGdiDeleteColorSpace (_NtGdiDeleteColorSpace@4)
bf995040 win32k!_imp__MmAddVerifierThunks = <no type information>
bf953133 win32k!NtGdiFONTOBJ_pvTrueTypeFontFile (_NtGdiFONTOBJ_pvTrueTypeFontFile@8)
bf9b4250 win32k!psiiList = <no type information>
bf8b7fd8 win32k!W32pProcessCallout (_W32pProcessCallout@8)
bf9333e5 win32k!EngFileWrite (_EngFileWrite@16)
bf8a4256 win32k!StoreMessage (_StoreMessage@24)
bf9b51c8 win32k!gnllHooksTimeout = <no type information>
bf898440 win32k!HANDLELOCK::~HANDLELOCK (public: __thiscall HANDLELOCK::~HANDLELOCK(void))
bf91972a win32k!xxxGetMenuItemRect (_xxxGetMenuItemRect@16)
bf978e59 win32k!VerifierEngCreateWnd (_VerifierEngCreateWnd@20)
bf97aa8f win32k!UMPDDrvStartBanding (int __stdcall UMPDDrvStartBanding(struct _SURFOBJ *,struct _POINTL *))
bf86d449 win32k!MultiUserGreTrackAddEngResource (void __stdcall MultiUserGreTrackAddEngResource(struct tagENGTRACKHDR *,unsigned long))
bf8bb77f win32k!RtlGetExpWinVer (_RtlGetExpWinVer@4)
bf92809b win32k!NlsKbdSendIMENotification (_NlsKbdSendIMENotification@8)
bf948cd3 win32k!bComputeQuickLookup (int __stdcall bComputeQuickLookup(struct _QUICKLOOKUP *,class PFE *,int))
bf8b43d0 win32k!FilteredBitBlt (int __stdcall FilteredBitBlt(struct _SURFOBJ *,struct _SURFOBJ *,struct _SURFOBJ *,struct _CLIPOBJ *,struct _XLATEOBJ *,struct _RECTL *,struct _POINTL *,struct _POINTL *,struct _BRUSHOBJ *,struct _POINTL *,unsigned long))
bf952b24 win32k!NtGdiSTROBJ_bGetAdvanceWidths (_NtGdiSTROBJ_bGetAdvanceWidths@16)
bf858299 win32k!GetAppCompatFlags (_GetAppCompatFlags@4)
bf910f9e win32k!xxxRequestOutOfFullScreenMode (_xxxRequestOutOfFullScreenMode@0)
bf860336 win32k!BltLnkSrcCopyMsk32 (void __stdcall BltLnkSrcCopyMsk32(struct BLTINFO *,struct _BLTLNK_MASKINFO *,unsigned long *,unsigned long *))
bf8099b4 win32k!SharedAlloc (_SharedAlloc@4)
bf928fc7 win32k!xxxHelpLoop (_xxxHelpLoop@4)
bf898130 win32k!_SEH_epilog (__SEH_epilog)
bf9b6268 win32k!gspwndAltTab = <no type information>
bf9531fc win32k!NtGdiXLATEOBJ_hGetColorTransform (_NtGdiXLATEOBJ_hGetColorTransform@4)
bf840857 win32k!bSpIsSystemMemory (int __stdcall bSpIsSystemMemory(struct _SURFOBJ *))
bf9b0884 win32k!gpGdiSharedMemory = <no type information>
bf8d1060 win32k!NtUserGetUpdateRgn (_NtUserGetUpdateRgn@12)
bf995064 win32k!_imp__ExRaiseAccessViolation = <no type information>
bf8a4836 win32k!GreSelectPalette (_GreSelectPalette@12)
bf84fec1 win32k!UT_CaretSet (_UT_CaretSet@4)
bf977f62 win32k!XDCOBJ::bRemoveColorTransform (public: int __thiscall XDCOBJ::bRemoveColorTransform(void *))
bf941a76 win32k!XLATEOBJ_ulIndexToPalSurf (unsigned char __stdcall XLATEOBJ_ulIndexToPalSurf(struct _XLATEOBJ *,unsigned char *,unsigned long))
bf94a6a9 win32k!StringCchCatW (long __stdcall StringCchCatW(unsigned short *,unsigned int,unsigned short const *))
bf941e95 win32k!NtGdiAbortPath (_NtGdiAbortPath@4)
bf8540b2 win32k!vSpDeleteSurface (void __stdcall vSpDeleteSurface(struct _SURFOBJ *))
bf995088 win32k!_imp__ExFreePool = <no type information>
bf990b59 win32k!fsg_RestoreContourData (@fsg_RestoreContourData@32)
bf9293fc win32k!CreateCompatiblePublicDC (_CreateCompatiblePublicDC@8)
bf8e214c win32k!DxEngMarkSurfaceAsDirectDraw (_DxEngMarkSurfaceAsDirectDraw@8)
bf90cc14 win32k!NtUserSetImeInfoEx (_NtUserSetImeInfoEx@4)
bf97940b win32k!GetBitDepthFromBMF (unsigned int __stdcall GetBitDepthFromBMF(int))
bf8d6efa win32k!vAdvanceAETEdges (void __stdcall vAdvanceAETEdges(class EDGE *))
bf91af43 win32k!PostAccessNotification (_PostAccessNotification@4)
bf8ccb7e win32k!WIDEPATHOBJ::bBeginFigure (public: int __thiscall WIDEPATHOBJ::bBeginFigure(void))
bf8d58f5 win32k!EPATHOBJ::newpathrec (protected: int __thiscall EPATHOBJ::newpathrec(struct _PATHRECORD * *,unsigned long *,unsigned long))
bf974363 win32k!GreNamedEscape (_GreNamedEscape@24)
bf869d35 win32k!itrp_ExecuteGlyphPgm (@itrp_ExecuteGlyphPgm@36)
bf916892 win32k!DrawCtlThumb (_DrawCtlThumb@4)
bf97e269 win32k!BltLnkSrcCopyMsk1 (void __stdcall BltLnkSrcCopyMsk1(struct BLTINFO *,struct _BLTLNK_MASKINFO *,unsigned long *,unsigned long *))
bf9303fc win32k!EngUnlockDriverObj (_EngUnlockDriverObj@4)
bf9504c4 win32k!UMPDOBJ::GetDDIOBJ<_FONTOBJ> (public: struct _FONTOBJ * __thiscall UMPDOBJ::GetDDIOBJ<struct _FONTOBJ>(struct _FONTOBJ *))
bf90c3e0 win32k!NtUserfnPOUTLPINT (_NtUserfnPOUTLPINT@28)
bf909fe6 win32k!xxxLoadDesktopWallpaper (_xxxLoadDesktopWallpaper@4)
bf8a870a win32k!ftoef_c (_ftoef_c@8)
bf9051d0 win32k!InsertTask (_InsertTask@8)
bf9b5e6c win32k!gLangToggleKeyState = <no type information>
bf9a8da8 win32k!ajGammaInvCT_12 = <no type information>
bf827092 win32k!_ShowWindowAsync (__ShowWindowAsync@12)
bf95facc win32k!WatchdogDdVideoPortGetConnectInfo (unsigned long __stdcall WatchdogDdVideoPortGetConnectInfo(struct _DD_GETVPORTCONNECTDATA *))
bf93bb06 win32k!EngPlgBlt (_EngPlgBlt@44)
bf9613d8 win32k!WatchdogDrvSetPixelFormat (unsigned long __stdcall WatchdogDrvSetPixelFormat(struct _SURFOBJ *,long,struct HWND__ *))
bf9b35e8 win32k!gCDROMClassRegistrationEntry = <no type information>
bf938ba9 win32k!bTriangleMesh (int __stdcall bTriangleMesh(class SURFACE *,struct _XLATEOBJ *,struct _TRIVERTEX *,unsigned long,struct _GRADIENT_TRIANGLE *,unsigned long,unsigned long,struct _RECTL *,struct _RECTL *,struct _POINTL *))
bf8947c6 win32k!AccessCheckObject (_AccessCheckObject@16)
bf9b47e4 win32k!gbFreezeScreenUpdates = <no type information>
bf9443dd win32k!NtGdiForceUFIMapping (_NtGdiForceUFIMapping@8)
bf9121de win32k!HMNullFnDestroy (_HMNullFnDestroy@4)
bf8266e6 win32k!LockDesktopMenu (_LockDesktopMenu@8)
bf99541c win32k!_imp__RtlDeleteAtomFromAtomTable = <no type information>
bf8d86f3 win32k!xxxValidateRect (_xxxValidateRect@8)
bf90671a win32k!IsDCCurrentPalette (_IsDCCurrentPalette@4)
bf9950d8 win32k!_imp__IoFileObjectType = <no type information>
bf9654f8 win32k!bAddPrintKView (int __stdcall bAddPrintKView(unsigned long,void *,unsigned long,unsigned long,struct _FONTFILE_PRINTKVIEW *))
bf8a07c7 win32k!bIsCompatible (int __stdcall bIsCompatible(class PALETTE * *,class PALETTE *,class SURFACE *,struct HDEV__ *))
bf843b13 win32k!RFONTOBJ::bCalcLayoutUnits (public: int __thiscall RFONTOBJ::bCalcLayoutUnits(class XDCOBJ *))
bf9ab0d8 win32k!gDitherMatrix16x16Halftone = <no type information>
bf807332 win32k!vGetJpn98FixPitch (void __stdcall vGetJpn98FixPitch(void))
bf91c07e win32k!PrepareFallbackKeyboardFile (_PrepareFallbackKeyboardFile@4)
bf9a5118 win32k!gasysico = <no type information>
bf9b6200 win32k!gFilterKeys = <no type information>
bf8a6531 win32k!NtGdiSetLayout (_NtGdiSetLayout@12)
bf82df03 win32k!xxxCreateCaret (_xxxCreateCaret@16)
bf9b3628 win32k!UserAtomTableHandle = <no type information>
bf857cfd win32k!EXFORMOBJ::bMultiply (public: int __thiscall EXFORMOBJ::bMultiply(class MATRIX *,class MATRIX *,unsigned long))
bf8a7994 win32k!LFONTOBJ::ppfeMapFont (public: class PFE * __thiscall LFONTOBJ::ppfeMapFont(class XDCOBJ &,unsigned long *,struct _POINTL *,unsigned long *,int))
bf823eac win32k!QueuePowerRequest (_QueuePowerRequest@4)
bf83c63b win32k!sfac_GetLongGlyphIDs (@sfac_GetLongGlyphIDs@36)
bf8467db win32k!itrp_GetCVTEntryFast (@itrp_GetCVTEntryFast@4)
bf90a6ee win32k!NtUserRegisterTasklist (_NtUserRegisterTasklist@4)
bf86a4ed win32k!bFloatToL (_bFloatToL@8)
bf86382e win32k!xxxDrawScrollBar (_xxxDrawScrollBar@12)
bf95237a win32k!NtGdiFONTOBJ_vGetInfo (_NtGdiFONTOBJ_vGetInfo@12)
bf9a5e00 win32k!DriverInfo1Offsets = <no type information>
bf887643 win32k!RFONTOBJ::bGetGlyphMetrics (public: int __thiscall RFONTOBJ::bGetGlyphMetrics(unsigned long,struct _GLYPHPOS *,unsigned short *,class XDCOBJ *,class ESTROBJ *))
bf97e73d win32k!ttfdGetTrueTypeFile (_ttfdGetTrueTypeFile@8)
bf8e49c3 win32k!PATHOBJ_bCloseFigure (_PATHOBJ_bCloseFigure@4)
bf90ce4d win32k!NtUserSetImeOwnerWindow (_NtUserSetImeOwnerWindow@8)
bf9b5bb8 win32k!gbMKMouseMode = <no type information>
bf91fd90 win32k!SfnINLPMDICREATESTRUCT (_SfnINLPMDICREATESTRUCT@32)
bf93fdf7 win32k!RGB_ERROR (unsigned long __stdcall RGB_ERROR(struct tagPALETTEENTRY,struct tagPALETTEENTRY))
bf96296d win32k!vPatCpyRect1_6x6 (void __stdcall vPatCpyRect1_6x6(struct _PATBLTFRAME *,int))
bf89b71e win32k!CalcWakeMask (_CalcWakeMask@12)
bf8e4e8f win32k!ULongLongToUInt (long __stdcall ULongLongToUInt(unsigned __int64,unsigned int *))
bf914914 win32k!DIBtoDIBV5 (_DIBtoDIBV5@8)
bf80a70b win32k!GreSetBrushGlobal (_GreSetBrushGlobal@4)
bf8fc13e win32k!scl_IncrementChildElement (@scl_IncrementChildElement@8)
bf893c49 win32k!_DrawIconEx (__DrawIconEx@36)
bf905e5c win32k!xxxFlushPalette (_xxxFlushPalette@4)
bf9b0b78 win32k!MultiUserEngAllocListLock = <no type information>
bf970a12 win32k!vFillGRectDIB32Bitfields (void __stdcall vFillGRectDIB32Bitfields(class SURFACE *,struct _GRADIENTRECTDATA *))
bf958a4f win32k!MulLineTo (int __stdcall MulLineTo(struct _SURFOBJ *,struct _CLIPOBJ *,struct _BRUSHOBJ *,long,long,long,long,struct _RECTL *,unsigned long))
bf8a584b win32k!EngLockSurface (_EngLockSurface@4)
bf858c10 win32k!GetClassPtr (_GetClassPtr@12)
bf9131c5 win32k!RegisterPerUserKeyboardIndicators (_RegisterPerUserKeyboardIndicators@4)
bf81a95d win32k!NtGdiInitSpool (_NtGdiInitSpool@0)
bf8279a3 win32k!DrawFrameControl (_DrawFrameControl@16)
bf897f2f win32k!UserGlobalAtomTableCallout (_UserGlobalAtomTableCallout@0)
bf99796c win32k!WinStaMapping = <no type information>
bf9aa1a8 win32k!ajGammaInvCT_22 = <no type information>
bf8c2e87 win32k!EngAlphaBlend (_EngAlphaBlend@28)
bf950023 win32k!NtGdiEngEraseSurface (_NtGdiEngEraseSurface@12)
bf856405 win32k!XEPALOBJ::vCopy_rgbquad (public: void __thiscall XEPALOBJ::vCopy_rgbquad(struct tagRGBQUAD *,unsigned long,unsigned long))
bf8540d8 win32k!EngDeleteSurface (_EngDeleteSurface@4)
bf9a5220 win32k!PreviousUserString = <no type information>
bf8ebadd win32k!OffStretchBltROP (_OffStretchBltROP@64)
bf9950ac win32k!_imp__PsGetJobLock = <no type information>
bf8cfeb7 win32k!xxxMNReleaseCapture (_xxxMNReleaseCapture@0)
bf9651da win32k!RFONTOBJ::vDestroyFont (public: void __thiscall RFONTOBJ::vDestroyFont(void))
bf9a5368 win32k!aNLSVKFProc = <no type information>
bf9b56b4 win32k!gfKanaToggle = <no type information>
bf9b3660 win32k!luidPrevious = <no type information>
bf9b62c0 win32k!ThinWireCache = <no type information>
bf8e5eae win32k!ttfdQueryGlyphOutline (_ttfdQueryGlyphOutline@16)
bf89b561 win32k!xxxInternalGetMessage (_xxxInternalGetMessage@24)
bf835c3c win32k!ResetMouseHover (_ResetMouseHover@12)
bf9b5db8 win32k!gbBlockSendInputResets = <no type information>
bf91474e win32k!BMPtoDIB (_BMPtoDIB@12)
bf8a1604 win32k!ClearHungFlag (_ClearHungFlag@8)
bf9b62a4 win32k!ghbmWallpaper = <no type information>
bf9a69b8 win32k!aPalDefaultVGA = <no type information>
bf86bd33 win32k!DrvGetDisplayDriverParameters (long __stdcall DrvGetDisplayDriverParameters(struct tagGRAPHICS_DEVICE *,struct _devicemodeW *,int,int))
bf80f8e9 win32k!fsSelectionFlags (_fsSelectionFlags@4)
bf9950a0 win32k!_imp__RtlAreAnyAccessesGranted = <no type information>
bf8a1150 win32k!RGNOBJAPI::bSwap (public: int __thiscall RGNOBJAPI::bSwap(class RGNOBJ *))
bf9aac28 win32k!apfnPatBlt = <no type information>
bf90b41a win32k!NtUserSetSystemCursor (_NtUserSetSystemCursor@8)
bf970535 win32k!vGradientFill1 (void __stdcall vGradientFill1(class SURFACE *,struct _TRIANGLEDATA *))
bf99aff8 win32k!BottomRightLTR = <no type information>
bf896d24 win32k!IsInsideMenuLoop (_IsInsideMenuLoop@4)
bf830ebf win32k!cjBmfdDeviceMetrics (_cjBmfdDeviceMetrics@8)
bf92982e win32k!FLOATOBJ_DivFloat (_FLOATOBJ_DivFloat@8)
bf978e07 win32k!VerifierEngCreatePalette (_VerifierEngCreatePalette@24)
bf9b5dac win32k!gcyMouseHover = <no type information>
bf90369f win32k!BRUSHOBJ_pvAllocRbrush (_BRUSHOBJ_pvAllocRbrush@8)
bf9b47e8 win32k!gbStopReadInput = <no type information>
bf89973d win32k!ERECTL::operator+= (public: void __thiscall ERECTL::operator+=(struct _RECTL &))
bf8a5829 win32k!bSavePath (int __stdcall bSavePath(class XDCOBJ &,long))
bf8b9b44 win32k!OpenDesktopCompletion (_OpenDesktopCompletion@16)
bf941954 win32k!XLATEOBJ_RGB16_555ToPalSurf (unsigned char __stdcall XLATEOBJ_RGB16_555ToPalSurf(struct _XLATEOBJ *,unsigned char *,unsigned long))
bf959891 win32k!MulBitBlt (int __stdcall MulBitBlt(struct _SURFOBJ *,struct _SURFOBJ *,struct _SURFOBJ *,struct _CLIPOBJ *,struct _XLATEOBJ *,struct _RECTL *,struct _POINTL *,struct _POINTL *,struct _BRUSHOBJ *,struct _POINTL *,unsigned long))
bf882ff5 win32k!xxxWindowHitTest (_xxxWindowHitTest@20)
bf8227bd win32k!_LockWindowStation (__LockWindowStation@4)
bf99502c win32k!_imp_ObfReferenceObject = <no type information>
bf9068ca win32k!DestroyTask (_DestroyTask@8)
bf93268f win32k!EndDocPrinter (_EndDocPrinter@4)
bf995410 win32k!_imp__KeInitializeTimer = <no type information>
bf842ee3 win32k!GreCreatePatternBrushInternal (_GreCreatePatternBrushInternal@12)
bf880dbd win32k!UpdateKeyState (_UpdateKeyState@12)
bf8fb45b win32k!xxxClientCallWinEventProc (_xxxClientCallWinEventProc@12)
bf86715d win32k!iGetPublicWidthTable (int __stdcall iGetPublicWidthTable(struct HDC__ *))
bf95f7c5 win32k!WatchdogDdVideoPortGetBandwidth (unsigned long __stdcall WatchdogDdVideoPortGetBandwidth(struct _DD_GETVPORTBANDWIDTHDATA *))
bf8b2595 win32k!ExcludeWindowRects (_ExcludeWindowRects@12)
bf9188bf win32k!xxxMNDragOver (_xxxMNDragOver@8)
bf9793d0 win32k!atmfdEscape (_atmfdEscape@24)
bf89bd6c win32k!xxxHungAppDemon (_xxxHungAppDemon@16)
bf8982b0 win32k!HANDLELOCK::vLockHandle (public: void __thiscall HANDLELOCK::vLockHandle(struct _ENTRY *,int,int))
bf9b5b6c win32k!ghrgnInv0 = <no type information>
bf82857c win32k!GetMonitorDC (_GetMonitorDC@8)
bf9b5694 win32k!gfIMEShowStatus = <no type information>
bf9877e8 win32k!BuildShrinkAAInfo (_BuildShrinkAAInfo)
bf9af068 win32k!pfnPsIsSystemProcess = <no type information>
bf81d5c5 win32k!GreMarkDeletableFont (_GreMarkDeletableFont@4)
bf8a3c95 win32k!bDeleteDCInternal (_bDeleteDCInternal@12)
bf80c725 win32k!EngRestoreFloatingPointState (_EngRestoreFloatingPointState@4)
bf93fd28 win32k!FONTOBJ_pjOpenTypeTablePointer (_FONTOBJ_pjOpenTypeTablePointer@12)
bf81f0ac win32k!DrawCaptionButtons (_DrawCaptionButtons@8)
bf8f22c2 win32k!xxxDDETrackWindowDying (_xxxDDETrackWindowDying@8)
bf9a6eb0 win32k!defaultTranslate = <no type information>
bf979d2c win32k!UMPDDrvSendPage (int __stdcall UMPDDrvSendPage(struct _SURFOBJ *))
bf9b5f94 win32k!gMKDeltaX = <no type information>
bf82d97c win32k!_TextOutW (__TextOutW@20)
bf9b4838 win32k!ghRemoteThinwireChannel = <no type information>
bf99545c win32k!_imp__IoAllocateErrorLogEntry = <no type information>
bf87075a win32k!fsg_GetDevAdvanceHeight (@fsg_GetDevAdvanceHeight@8)
bf95edcf win32k!WatchdogD3dGetDriverState (unsigned long __stdcall WatchdogD3dGetDriverState(struct _DD_GETDRIVERSTATEDATA *))
bf892a73 win32k!vFillGRectDIB32BGRA (void __stdcall vFillGRectDIB32BGRA(class SURFACE *,struct _GRADIENTRECTDATA *))
bf8c51b1 win32k!FHungApp (_FHungApp@8)
bf91efca win32k!ClientFreeDDEHandle (_ClientFreeDDEHandle@8)
bf851c24 win32k!BLTRECORD::vOrderStupid (public: void __thiscall BLTRECORD::vOrderStupid(class ERECTL *))
bf9af538 win32k!gpfnStartupDxGraphics = <no type information>
bf9b4810 win32k!gConsoleShadowhDev = <no type information>
bf853827 win32k!DC::bIsCMYKColor (public: int __thiscall DC::bIsCMYKColor(void))
bf88cb5f win32k!GreSetBkMode (_GreSetBkMode@8)
bf898061 win32k!NtUserCallMsgFilter (_NtUserCallMsgFilter@8)
bf8be87b win32k!NtUserNotifyProcessCreate (_NtUserNotifyProcessCreate@16)
bf85ed8d win32k!TrackBackground (_TrackBackground@12)
bf905424 win32k!GreGetRasterizerCaps (_GreGetRasterizerCaps@4)
bf995258 win32k!_imp__ZwSetDefaultUILanguage = <no type information>
bf9950e4 win32k!_imp__RtlIntegerToUnicodeString = <no type information>
bf96af8d win32k!bSrcCopySRLE8D1 (int __stdcall bSrcCopySRLE8D1(struct BLTINFO *))
bf97dd5a win32k!BltLnkPatMaskCopy8 (void __stdcall BltLnkPatMaskCopy8(struct BLTINFO *,unsigned long,unsigned long *,unsigned char))
bf939ca6 win32k!GreGetMapMode (_GreGetMapMode@4)
bf911b03 win32k!_GetInputDesktop (__GetInputDesktop@0)
bf915f64 win32k!UnlockDesktopMenu (_UnlockDesktopMenu@4)
bf8506f3 win32k!XEPALOBJ::bDeletePalette (public: int __thiscall XEPALOBJ::bDeletePalette(int,enum CLEANUPTYPE))
bf9ba6e0 win32k!InitializeScripts (_InitializeScripts@0)
bf993399 win32k!itrp_ChangeCvtSlow (@itrp_ChangeCvtSlow@12)
bf801991 win32k!IsDesktopHeapLoggingOn (_IsDesktopHeapLoggingOn@0)
bf806b5a win32k!DrvCheckUpgradeSettings (void __stdcall DrvCheckUpgradeSettings(void))
bf8b23d8 win32k!SpbCheckDce (_SpbCheckDce@4)
bf90e142 win32k!GetAppImeCompatFlags (_GetAppImeCompatFlags@4)
bf817987 win32k!xxxDesktopThread (_xxxDesktopThread@4)
bf8e7838 win32k!MNPositionSysMenu (_MNPositionSysMenu@8)
bf956f5a win32k!MulDeleteDeviceBitmap (void __stdcall MulDeleteDeviceBitmap(struct DHSURF__ *))
bf9740c0 win32k!vIFIMetricsToLogFontW (_vIFIMetricsToLogFontW@8)
bf8fa47c win32k!NtUserBuildPropList (_NtUserBuildPropList@16)
bf92bf72 win32k!iWndObjSetupExtEscape (int __stdcall iWndObjSetupExtEscape(class DCOBJ &,int,int,void *,int,void *))
bf8ff7a1 win32k!DxEngSelectBitmap (_DxEngSelectBitmap@8)
bf8da148 win32k!FindBlocStrike (@FindBlocStrike@28)
bf9488aa win32k!NtGdiGetEudcTimeStampEx (_NtGdiGetEudcTimeStampEx@12)
bf95f72a win32k!WatchdogDdVideoPortFlip (unsigned long __stdcall WatchdogDdVideoPortFlip(struct _DD_FLIPVPORTDATA *))
bf85aa19 win32k!xxxSetWindowLong (_xxxSetWindowLong@16)
bf84790a win32k!fsg_RunPreProgram (@fsg_RunPreProgram@28)
bf86351b win32k!NtUserDestroyCursor (_NtUserDestroyCursor@8)
bf8e8300 win32k!pppUserModeCallback (_pppUserModeCallback@20)
bf940e5a win32k!ESTROBJ::vCharPos_H4 (public: void __thiscall ESTROBJ::vCharPos_H4(class XDCOBJ &,class RFONTOBJ &,long,long,long *,class EFLOAT,class EFLOAT))
bf8b4ac3 win32k!ENUMUNDERLAYS::bEnum (public: int __thiscall ENUMUNDERLAYS::bEnum(struct _SURFOBJ * *,struct _POINTL *,struct _CLIPOBJ * *))
bf874209 win32k!itrp_Execute (@itrp_Execute@24)
bf8d2dae win32k!EFLOATEXT::operator*= (public: void __thiscall EFLOATEXT::operator*=(long))
bf843992 win32k!EVECTORFL::EVECTORFL (public: __thiscall EVECTORFL::EVECTORFL(long,long))
bf9b0b5c win32k!MAPPER::FaceNameTable = <no type information>
bf8ef800 win32k!zzzAttachToQueue (_zzzAttachToQueue@16)
bf84777b win32k!sfac_CopyCVT (@sfac_CopyCVT@8)
bf82fc9a win32k!GetpGlobalPopupMenu (_GetpGlobalPopupMenu@4)
bf99354f win32k!itrp_RAW (@itrp_RAW@8)
bf938161 win32k!bDoGradient (int __stdcall bDoGradient(__int64 *,__int64 *,__int64 *,long,long,long,struct _GRADSTRUCT *))
bf8d27a7 win32k!GetPrevPwnd (_GetPrevPwnd@8)
bf83753c win32k!CheckBMPNeedFixup (_CheckBMPNeedFixup)
bf8e21c5 win32k!DxEngSetPaletteState (_DxEngSetPaletteState@12)
bf8bd84d win32k!GreSelectBrush (_GreSelectBrush@8)
bf953e6b win32k!bCleanupFontTable (int __stdcall bCleanupFontTable(class PFT * *))
bf8ff94d win32k!bMakePathRecords (int __stdcall bMakePathRecords(struct _PATHRECORD *,unsigned long *,long,struct _POINTL *,unsigned long,long,long,struct _RECTFX *,struct _PATHRECORD * *))
bf8ccaad win32k!LINER::vNextPoint (private: void __thiscall LINER::vNextPoint(void))
bf90a155 win32k!NtUserRemoteRedrawScreen (_NtUserRemoteRedrawScreen@0)
bf8a70eb win32k!EXFORMOBJ::bEqualExceptTranslations (public: int __thiscall EXFORMOBJ::bEqualExceptTranslations(class MATRIX *))
bf85730a win32k!SfnINOUTLPPOINT5 (_SfnINOUTLPPOINT5@32)
bf8588b9 win32k!SfnINOUTNCCALCSIZE (_SfnINOUTNCCALCSIZE@32)
bf8980f0 win32k!_SEH_prolog (__SEH_prolog)
bf827f62 win32k!xxxInternalPaintDesktop (_xxxInternalPaintDesktop@12)
bf9aa458 win32k!gaulConvert = <no type information>
bf8bb4e9 win32k!CheckAllowForeground (_CheckAllowForeground@4)
bf8ccfde win32k!STYLER::STYLER (public: __thiscall STYLER::STYLER(class EPATHOBJ &,struct _LINEATTRS *))
bf907da5 win32k!UserBeep (_UserBeep@8)
bf9b04c4 win32k!hForePalette = <no type information>
bf9b5b2c win32k!gpDeviceInfoList = <no type information>
bf92a631 win32k!NtGdiDdUnlock (_NtGdiDdUnlock@8)
bf9b3090 win32k!gpPrintKViewList = <no type information>
bf84deb0 win32k!xxxCreateClassSmIcon (_xxxCreateClassSmIcon@4)
bf8ef4ec win32k!WaitOnPseudoEvent (_WaitOnPseudoEvent@8)
bf821b34 win32k!LW_LoadResources (_LW_LoadResources@4)
bf91cbf6 win32k!ImeSetTopmost (_ImeSetTopmost@12)
bf95a68e win32k!MulTransparentBlt (int __stdcall MulTransparentBlt(struct _SURFOBJ *,struct _SURFOBJ *,struct _CLIPOBJ *,struct _XLATEOBJ *,struct _RECTL *,struct _RECTL *,unsigned long,unsigned long))
bf8e9dd3 win32k!UMPDOBJ::ThunkDDIOBJ (private: int __thiscall UMPDOBJ::ThunkDDIOBJ(struct _DDIOBJMAP *,void * *,unsigned long))
bf9323a9 win32k!GreGenericW (_GreGenericW@24)
bf993ed5 win32k!itrp_IDEF (@itrp_IDEF@8)
bf8d85a5 win32k!HFDBASIS32::lError (public: long __thiscall HFDBASIS32::lError(void))
bf9b5b94 win32k!gbMDEVDisabled = <no type information>
bf9b5b30 win32k!ghrgnScrlValid = <no type information>
bf85420b win32k!PlayEventSound (_PlayEventSound@4)
bf8ba5a5 win32k!vCleanupDCs (void __stdcall vCleanupDCs(unsigned long))
bf8ff018 win32k!_ConvertMemHandle (__ConvertMemHandle@8)
bf85c27b win32k!mulff (_mulff@0)
bf995148 win32k!_imp__PsIsSystemThread = <no type information>
bf852cf9 win32k!NtUserShowScrollBar (_NtUserShowScrollBar@12)
bf8cbdbb win32k!WIDENER::vAddLeft (protected: void __thiscall WIDENER::vAddLeft(void))
bf967629 win32k!PDEVOBJ::FontManagement (public: int __thiscall PDEVOBJ::FontManagement(struct _SURFOBJ *,struct _FONTOBJ *,unsigned long,unsigned long,void *,unsigned long,void *))
bf9371a3 win32k!vUnmapRemoteFonts (_vUnmapRemoteFonts@4)
bf9640c3 win32k!PUBLIC_PFTOBJ::pPFFGetMM (public: class PFF * __thiscall PUBLIC_PFTOBJ::pPFFGetMM(unsigned long,class PFF * * *))
bf8650b0 win32k!GreGetDirectDrawBounds (_GreGetDirectDrawBounds@8)
bf95347c win32k!BRUSHSELOBJAPI::~BRUSHSELOBJAPI (public: __thiscall BRUSHSELOBJAPI::~BRUSHSELOBJAPI(void))
bf922f81 win32k!ResetRedirectedWindows (_ResetRedirectedWindows@0)
bf8e21b5 win32k!DxEngSetBitmapOwner (_DxEngSetBitmapOwner@8)
bf8ac1d9 win32k!XDCOBJ::bFullScreen (public: int __thiscall XDCOBJ::bFullScreen(void))
bf9955ec win32k!_imp__IoBuildAsynchronousFsdRequest = <no type information>
bf8e4327 win32k!xxxShowOwnedPopups (_xxxShowOwnedPopups@8)
bf85ae3c win32k!ERECTL::bEqual (public: int __thiscall ERECTL::bEqual(class ERECTL &))
bf977a98 win32k!vSrcCopyDummy (void __stdcall vSrcCopyDummy(struct BLTINFO *))
bf9aac7c win32k!aulMulFormat = <no type information>
bf91aefe win32k!zzzSetSystemCursor (_zzzSetSystemCursor@8)
bf90eb1f win32k!DestroyHandleFirstPass (_DestroyHandleFirstPass@4)
bf850d88 win32k!NtGdiCreatePatternBrushInternal (_NtGdiCreatePatternBrushInternal@12)
bf8a666b win32k!GreGetAppClipBox (_GreGetAppClipBox@8)
bf94f5ed win32k!NtGdiGetDhpdev (_NtGdiGetDhpdev@4)
bf94054f win32k!RFONTOBJ::cGetGlyphData (public: unsigned long __thiscall RFONTOBJ::cGetGlyphData(unsigned long,struct _GLYPHPOS *))
bf9ae250 win32k!dwABPreMul = <no type information>
bf927aab win32k!NlsTestKeyStateToggle (_NlsTestKeyStateToggle@4)
bf8674a6 win32k!BmfdQueryAdvanceWidths (_BmfdQueryAdvanceWidths@20)
bf81593f win32k!GetKbdExId (_GetKbdExId@8)
bf8c0a89 win32k!DrawGroove (_DrawGroove@16)
bf91aeb1 win32k!DestroyAniIcon (_DestroyAniIcon@4)
bf933934 win32k!DrvPrepareForEARecovery (void __stdcall DrvPrepareForEARecovery(void))
bf9ae6ec win32k!Gray16To65Table = <no type information>
bf8bdce5 win32k!xxxResolveDesktop (_xxxResolveDesktop@20)
bf82e167 win32k!sfac_DoOffsetTableMap (@sfac_DoOffsetTableMap@4)
bf8064ce win32k!ldevUnloadImage (void __stdcall ldevUnloadImage(struct _LDEV *))
bf90bd43 win32k!NtUserfnINSIZECLIPBRD (_NtUserfnINSIZECLIPBRD@28)
bf934ea8 win32k!CollectDriverFailureData (_CollectDriverFailureData@8)
bf85396c win32k!pSpCreateSprite (class SPRITE * __stdcall pSpCreateSprite(struct HDEV__ *,struct _RECTL *,struct HWND__ *,struct _POINTL *))
bf8eced8 win32k!xxxGetTitleBarInfo (_xxxGetTitleBarInfo@8)
bf84e905 win32k!bEnumFontClose (_bEnumFontClose@4)
bf810a40 win32k!vBmfdFill_IFIMETRICS (_vBmfdFill_IFIMETRICS@8)
bf8f5dbc win32k!xxxDDETrackSendHook (_xxxDDETrackSendHook@16)
bf80c683 win32k!WatchdogDrvCompletePDEV (void __stdcall WatchdogDrvCompletePDEV(struct DHPDEV__ *,struct HDEV__ *))
bf92b9c1 win32k!ppfeGetPFEFromUFI (class PFE * __stdcall ppfeGetPFEFromUFI(struct _UNIVERSAL_FONT_ID *,int,int))
bf870674 win32k!scl_ApplyTranslation (@scl_ApplyTranslation@20)
bf8e3baa win32k!NtUserDdeSetQualityOfService (_NtUserDdeSetQualityOfService@12)
bf8924cc win32k!bRectangleMesh (int __stdcall bRectangleMesh(class SURFACE *,struct _XLATEOBJ *,struct _TRIVERTEX *,unsigned long,struct _GRADIENT_RECT *,unsigned long,unsigned long,struct _RECTL *,struct _POINTL *))
bf8f8c63 win32k!xxxDoScroll (_xxxDoScroll@20)
bf8d754d win32k!NtUserfnHkINLPMSG (_NtUserfnHkINLPMSG@16)
bf8f5cfb win32k!_DdeGetQualityOfService (__DdeGetQualityOfService@12)
bf929da0 win32k!GreDeleteSemaphoreNonTracked (_GreDeleteSemaphoreNonTracked@4)
bf922c2f win32k!DrawSonar (_DrawSonar@4)
bf91cd15 win32k!SetConvMode (_SetConvMode@8)
bf87cca8 win32k!UserSetDCVisRgn (_UserSetDCVisRgn@4)
bf843ddc win32k!bGetGlyphOutline (_bGetGlyphOutline@20)
bf92daca win32k!NtGdiGetLinkedUFIs (_NtGdiGetLinkedUFIs@12)
bf9a2490 win32k!wGrayIdxLB = <no type information>
bf980692 win32k!vCalcXformVertical (_vCalcXformVertical@4)
bf81c32c win32k!FreeProfileUserName (_FreeProfileUserName@8)
bf9351ca win32k!NtGdiFullscreenControl (_NtGdiFullscreenControl@20)
bf8073f3 win32k!ReserveUserSessionViews (_ReserveUserSessionViews@8)
bf9bb3e0 win32k!Win32UserInitialize (_Win32UserInitialize@0)
bf980b71 win32k!vAdd16FixTo16Fix (_vAdd16FixTo16Fix@12)
bf90b600 win32k!NtUserValidateHandleSecure (_NtUserValidateHandleSecure@4)
bf931e11 win32k!ulFinishMessage (unsigned long __stdcall ulFinishMessage(struct _SPOOLMSG *,struct _SPOOLESC *,class SPOOLALTREF *,unsigned char *,unsigned long))
bf9b4c80 win32k!gatomGhost = <no type information>
bf90c4e5 win32k!NtUserfnKERNELONLY (_NtUserfnKERNELONLY@28)
bf90c45c win32k!NtUserfnPOPTINLPUINT (_NtUserfnPOPTINLPUINT@28)
bf8c0cd8 win32k!XLATE::vCheckForICM (public: void __thiscall XLATE::vCheckForICM(void *,unsigned long))
bf9af5bc win32k!gpRemoteDiscGraphicsDevice = <no type information>
bf8f6930 win32k!vGetBlendInfo (void __stdcall vGetBlendInfo(unsigned long,class SURFACE *,unsigned long,struct _BLENDINFO *))
bf993cee win32k!itrp_NROUND (@itrp_NROUND@8)
bf996990 win32k!gawImeWndProc = <no type information>
bf8a1cfa win32k!IntersectWithParents (_IntersectWithParents@8)
bf866dd9 win32k!UserCommitDesktopMemory (_UserCommitDesktopMemory@12)
bf99551c win32k!_imp__PsGetCurrentThreadStackBase = <no type information>
bf98f0b9 win32k!InvertRect (_InvertRect@8)
bf8ef466 win32k!SBPosFromPx (_SBPosFromPx@8)
bf9753c7 win32k!bSubOverflow (int __stdcall bSubOverflow(__int64,__int64))
bf934913 win32k!DrvSetSharedDevLock (void __stdcall DrvSetSharedDevLock(struct _MDEV *))
bf82d950 win32k!_GetTextMetricsW (__GetTextMetricsW@8)
bf811808 win32k!MALLOCOBJ::MALLOCOBJ (public: __thiscall MALLOCOBJ::MALLOCOBJ(unsigned long))
bf88ca13 win32k!RFONTOBJ::PostTextOut (public: void __thiscall RFONTOBJ::PostTextOut(class XDCOBJ &))
bf8b8103 win32k!GdiThreadCalloutFlushUserBatch (void __stdcall GdiThreadCalloutFlushUserBatch(void))
bf95c418 win32k!pxrlStrRead32 (struct _XRUNLEN * __stdcall pxrlStrRead32(struct _STRDDA *,struct _STRRUN *,unsigned char *,unsigned char *,struct _XLATEOBJ *,long,long,long))
bf9810c8 win32k!vBmfdMarkFontGone (_vBmfdMarkFontGone@8)
bf961457 win32k!WatchdogDrvDescribePixelFormat (long __stdcall WatchdogDrvDescribePixelFormat(struct DHPDEV__ *,long,unsigned long,struct tagPIXELFORMATDESCRIPTOR *))
bf9b424c win32k!gpswiFirst = <no type information>
bf8dff93 win32k!NtUserGetCPD (_NtUserGetCPD@12)
bf89fcd7 win32k!ReleaseCacheDC (_ReleaseCacheDC@8)
bf870053 win32k!scl_CalcOrigPhantomPoints (@scl_CalcOrigPhantomPoints@24)
bf9b0b64 win32k!gppfeMapperDefault = <no type information>
bf9504f7 win32k!UMPDOBJ::GetDDIOBJ<_CLIPOBJ> (public: struct _CLIPOBJ * __thiscall UMPDOBJ::GetDDIOBJ<struct _CLIPOBJ>(struct _CLIPOBJ *))
bf9ac2a0 win32k!galFloat = <no type information>
bf92645c win32k!UserPowerStateCallout (_UserPowerStateCallout@4)
bf896fd8 win32k!xxxInternalToUnicode (_xxxInternalToUnicode@32)
bf91c1eb win32k!xxxBroadcastPaletteChanged (_xxxBroadcastPaletteChanged@8)
bf8c5d13 win32k!bCvtPts1 (_bCvtPts1@12)
bf914fc4 win32k!PasteScreenPalette (_PasteScreenPalette@4)
bf939ac6 win32k!NtGdiScaleViewportExtEx (_NtGdiScaleViewportExtEx@24)
bf92b87b win32k!DEVLOCKOBJ_WNDOBJ::~DEVLOCKOBJ_WNDOBJ (public: __thiscall DEVLOCKOBJ_WNDOBJ::~DEVLOCKOBJ_WNDOBJ(void))
bf978d74 win32k!VerifierEngCreateBitmap (_VerifierEngCreateBitmap@24)
bf9707a6 win32k!vFillGRectDIB32RGB (void __stdcall vFillGRectDIB32RGB(class SURFACE *,struct _GRADIENTRECTDATA *))
bf951f63 win32k!NtGdiCLIPOBJ_cEnumStart (_NtGdiCLIPOBJ_cEnumStart@20)
bf934830 win32k!DrvDestroyMDEV (_DrvDestroyMDEV@4)
bf911b42 win32k!xxxResolveDesktopForWOW (_xxxResolveDesktopForWOW@4)
bf9b5ddc win32k!gspwndActivate = <no type information>
bf99506c win32k!_imp__RtlInitUnicodeString = <no type information>
bf90ac68 win32k!NtUserGetPriorityClipboardFormat (_NtUserGetPriorityClipboardFormat@8)
bf89ab8b win32k!xxxSleepTask (_xxxSleepTask@8)
bf9564de win32k!vSrcTranCopyS8D16 (_vSrcTranCopyS8D16@44)
bf8c0bd1 win32k!AllocThreadBufferWithTag (_AllocThreadBufferWithTag@8)
bf8e2358 win32k!ttfdSemQueryTrueTypeTable (_ttfdSemQueryTrueTypeTable@32)
bf90ab33 win32k!NtUserDrawAnimatedRects (_NtUserDrawAnimatedRects@16)
bf95a292 win32k!MulAlphaBlend (int __stdcall MulAlphaBlend(struct _SURFOBJ *,struct _SURFOBJ *,struct _CLIPOBJ *,struct _XLATEOBJ *,struct _RECTL *,struct _RECTL *,struct _BLENDOBJ *))
bf871a32 win32k!fsg_GetDevAdvanceWidth (@fsg_GetDevAdvanceWidth@8)
bf85bb0f win32k!LinkCursor (_LinkCursor@4)
bf8e0785 win32k!xxxMessageBeep (_xxxMessageBeep@4)
bf90a7c2 win32k!NtUserGetCursorInfo (_NtUserGetCursorInfo@4)
bf9b4c74 win32k!gaOleMainThreadWndClass = <no type information>
bf8d1e3c win32k!_PostQuitMessage (__PostQuitMessage@4)
bf934594 win32k!DrvWakeupHandler (_DrvWakeupHandler@4)
bf904450 win32k!FindFakeMDIChild (_FindFakeMDIChild@4)
bf84df47 win32k!NtUserMoveWindow (_NtUserMoveWindow@24)
bf8f3f61 win32k!NtUserUnhookWinEvent (_NtUserUnhookWinEvent@4)
bf8ec949 win32k!UT_FindTopLevelMenuIndex (_UT_FindTopLevelMenuIndex@8)
bf92ee5d win32k!SpFillPath (int __stdcall SpFillPath(struct _SURFOBJ *,struct _PATHOBJ *,struct _CLIPOBJ *,struct _BRUSHOBJ *,struct _POINTL *,unsigned long,unsigned long))
bf99afe4 win32k!RightLTR = <no type information>
bf82ede7 win32k!GreMarkUndeletableDC (_GreMarkUndeletableDC@4)
bf8304ff win32k!cjGlyphDataSimulated (_cjGlyphDataSimulated@20)
bf9413df win32k!STROBJ_bGetAdvanceWidths (_STROBJ_bGetAdvanceWidths@16)
bf981016 win32k!ttfdQueryTrueTypeOutline (_ttfdQueryTrueTypeOutline@24)
bf9b5d30 win32k!gMouseThresh2 = <no type information>
bf8b6cef win32k!RBRUSH::vFreeOrCacheRBrush (public: void __thiscall RBRUSH::vFreeOrCacheRBrush(enum RBTYPE))
bf876f04 win32k!itrp_FLIPON (@itrp_FLIPON@8)
bf8f7216 win32k!PhaseShift (@PhaseShift@16)
bf9b5fb0 win32k!gFKNextProcIndex = <no type information>
bf997564 win32k!W32ProcessTag = <no type information>
bf8a0972 win32k!hbmSelectBitmap (_hbmSelectBitmap@12)
bf900379 win32k!vFetchShiftNotAndCopy (_vFetchShiftNotAndCopy@4)
bf97e991 win32k!vGCGB (_vGCGB@20)
bf8bffd9 win32k!_ScrollDC (__ScrollDC@28)
bf8486ad win32k!itrp_GETINFO (@itrp_GETINFO@8)
bf8fe720 win32k!SaveVisualBits (_SaveVisualBits@4)
bf9b088c win32k!gpGdiDevCaps = <no type information>
bf891a22 win32k!EngGradientFill (_EngGradientFill@40)
bf86fe0c win32k!scl_AdjustOldPhantomSideBearing (@scl_AdjustOldPhantomSideBearing@8)
bf929d98 win32k!EngGetProcessHandle (_EngGetProcessHandle@0)
bf879a70 win32k!xxxInternalActivateKeyboardLayout (_xxxInternalActivateKeyboardLayout@12)
bf8ac4ad win32k!ESTROBJ::vInitSimple (public: void __thiscall ESTROBJ::vInitSimple(unsigned short *,long,class XDCOBJ &,class RFONTOBJ &,long,long,void *))
bf956a5c win32k!bDrvDisconnect (_bDrvDisconnect@12)
bf88e560 win32k!BLTRECORD::bEqualExtents (public: int __thiscall BLTRECORD::bEqualExtents(void))
bf8415f3 win32k!NtUserRemoveMenu (_NtUserRemoveMenu@12)
bf94444e win32k!NtGdiUnloadPrinterDriver (_NtGdiUnloadPrinterDriver@8)
bf80f167 win32k!bMappedViewStrlen (_bMappedViewStrlen@16)
bf88c8b9 win32k!RtlInitLargeUnicodeString (_RtlInitLargeUnicodeString@12)
bf8b4b83 win32k!ENUMUNDERLAYS::ENUMUNDERLAYS (public: __thiscall ENUMUNDERLAYS::ENUMUNDERLAYS(struct _SURFOBJ *,struct _CLIPOBJ *,struct _RECTL *))
bf8174f2 win32k!DeviceClassCDROMNotify (_DeviceClassCDROMNotify@8)
bf925ca3 win32k!xxxUserPowerStateCalloutWorker (_xxxUserPowerStateCalloutWorker@0)
bf876f19 win32k!itrp_FLIPOFF (@itrp_FLIPOFF@8)
bf915569 win32k!xxxGetEventProc (_xxxGetEventProc@4)
bf9af578 win32k!gpto = <no type information>
bf835037 win32k!FixRatio (@FixRatio@8)
bf8c1510 win32k!VWPLRemove (_VWPLRemove@8)
bf989e2f win32k!ShrinkDIB_CY_SrkCX (_ShrinkDIB_CY_SrkCX)
bf940037 win32k!XEPALOBJ::vInit256Rainbow (public: void __thiscall XEPALOBJ::vInit256Rainbow(void))
bf929e02 win32k!EngIsSemaphoreOwnedByCurrentThread (_EngIsSemaphoreOwnedByCurrentThread@4)
bf8896d2 win32k!GetWindowBorders (_GetWindowBorders@16)
bf8bfb39 win32k!NtUserConsoleControl (_NtUserConsoleControl@12)
bf91b186 win32k!xxxFKAcceptanceDelayTimer (_xxxFKAcceptanceDelayTimer@16)
bf9ab3d8 win32k!HalftoneSaturationTable = <no type information>
bf9b3630 win32k!gptmrWD = <no type information>
bf89c431 win32k!GetInputBits (_GetInputBits@12)
bf95a9c2 win32k!XDCOBJ::bSupportsPassthroughImage (public: int __thiscall XDCOBJ::bSupportsPassthroughImage(unsigned long))
bf911694 win32k!HandleSystemThreadCreationFailure (_HandleSystemThreadCreationFailure@4)
bf89006b win32k!RFONTOBJ::bGetWidthTable (public: int __thiscall RFONTOBJ::bGetWidthTable(class XDCOBJ &,unsigned long,unsigned short *,unsigned long,unsigned short *))
bf99515c win32k!_imp__wcsstr = <no type information>
bf9b0748 win32k!gcEUDCCount = <no type information>
bf92ab62 win32k!DxEngGetSurfaceData (_DxEngGetSurfaceData@8)
bf84fd9f win32k!NtGdiEnumFontChunk (_NtGdiEnumFontChunk@20)
bf95f040 win32k!WatchdogDdMoCompGetBuffInfo (unsigned long __stdcall WatchdogDdMoCompGetBuffInfo(struct _DD_GETMOCOMPCOMPBUFFDATA *))
bf988725 win32k!MappingBGR (_MappingBGR)
bf995378 win32k!_imp__SeAssignSecurity = <no type information>
bf9702b6 win32k!vGradientFill4 (void __stdcall vGradientFill4(class SURFACE *,struct _TRIANGLEDATA *))
bf814662 win32k!ttfdQueryFont (_ttfdQueryFont@16)
bf858133 win32k!NtGdiGetDCObject (_NtGdiGetDCObject@8)
bf8c52fc win32k!CreateProp (_CreateProp@4)
bf8b6de2 win32k!CalcSBStuff (_CalcSBStuff@12)
bf8b3b70 win32k!LockObjectAssignment (_LockObjectAssignment@8)
bf8f7828 win32k!fsc_OverscaleToSubPixel (@fsc_OverscaleToSubPixel@12)
bf92a40e win32k!DxEngCleanDC (_DxEngCleanDC@4)
bf89a166 win32k!InternalSetTimer (_InternalSetTimer@20)