ReactOS 0.4.15-dev-6675-gcbc63d8
cursoricon.c
Go to the documentation of this file.
1/*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS Win32k subsystem
4 * PURPOSE: Cursor and icon functions
5 * FILE: win32ss/user/ntuser/cursoricon.c
6 * PROGRAMER: ReactOS Team
7 */
8/*
9 * We handle two types of cursors/icons:
10 * - Private
11 * Loaded without LR_SHARED flag
12 * Private to a process
13 * Can be deleted by calling NtDestroyCursorIcon()
14 * CurIcon->hModule, CurIcon->hRsrc and CurIcon->hGroupRsrc set to NULL
15 * - Shared
16 * Loaded with LR_SHARED flag
17 * Possibly shared by multiple processes
18 * Immune to NtDestroyCursorIcon()
19 * CurIcon->hModule, CurIcon->hRsrc and CurIcon->hGroupRsrc are valid
20 */
21
22#include <win32k.h>
24
26
27PCURICON_OBJECT gcurFirst = NULL; // After all is done, this should be WINLOGO!
28
29//
30// System Cursors
31//
34 {OCR_IBEAM, NULL},
35 {OCR_WAIT, NULL},
36 {OCR_CROSS, NULL},
37 {OCR_UP, NULL},
38 {OCR_ICON, NULL},
39 {OCR_SIZE, NULL},
45 {OCR_NO, NULL},
46 {OCR_HAND, NULL},
48 {OCR_HELP, NULL},
49 };
50
51//
52// System Icons
53//
56 {OIC_HAND, NULL},
57 {OIC_QUES, NULL},
58 {OIC_BANG, NULL},
59 {OIC_NOTE, NULL},
61 };
62
63BOOL
65{
74
75 return TRUE;
76}
77
78static
79VOID
82{
83 PPROCESSINFO ppi = pcur->head.ppi;
84 PCURICON_OBJECT *ppcurHead;
85 NT_ASSERT((pcur->CURSORF_flags & (CURSORF_GLOBAL|CURSORF_LRSHARED)) != 0);
86 NT_ASSERT((pcur->CURSORF_flags & CURSORF_LINKED) == 0);
87
88 /* Get the right list head */
89 ppcurHead = (pcur->CURSORF_flags & CURSORF_GLOBAL) ?
90 &gcurFirst : &ppi->pCursorCache;
91
93 pcur->pcurNext = *ppcurHead;
94 *ppcurHead = pcur;
96}
97
98// FIXME: should think about using a LIST_ENTRY!
99static
100VOID
103{
104 PPROCESSINFO ppi = pcur->head.ppi;
105 PCURICON_OBJECT *ppcurHead;
106 PCURICON_OBJECT *ppcur;
107 NT_ASSERT((pcur->CURSORF_flags & (CURSORF_GLOBAL|CURSORF_LRSHARED)) != 0);
108 NT_ASSERT((pcur->CURSORF_flags & CURSORF_LINKED) != 0);
109
110 /* Get the right list head */
111 ppcurHead = (pcur->CURSORF_flags & CURSORF_GLOBAL) ?
112 &gcurFirst : &ppi->pCursorCache;
113
114 /* Loop all cursors in the cache */
115 for (ppcur = ppcurHead;
116 (*ppcur) != NULL;
117 ppcur = &(*ppcur)->pcurNext)
118 {
119 /* Check if this is the one we are looking for */
120 if ((*ppcur) == pcur)
121 {
122 /* Remove it from the list */
123 (*ppcur) = pcur->pcurNext;
124
125 /* Dereference it */
127 pcur->CURSORF_flags &= ~CURSORF_LINKED;
128 return;
129 }
130 }
131
132 /* We did not find it, this must not happen */
134}
135
136VOID
138{
139 PCURICON_OBJECT pcur;
140 int i;
141 PPROCESSINFO ppi;
142
143 if (hcur)
144 {
145 pcur = UserGetCurIconObject(hcur);
146 if (!pcur)
147 {
149 return;
150 }
151
153
154 if (!(ppi->W32PF_flags & W32PF_CREATEDWINORDC))
155 return;
156
157 // Set Small Window Icon and do not link.
158 if ( id == OIC_WINLOGO+1 )
159 {
162 pcur->head.ppi = NULL;
163 return;
164 }
165
166 for (i = 0 ; i < 6; i++)
167 {
168 if (gasysico[i].type == id)
169 {
170 gasysico[i].handle = pcur;
172
173 //
174 // The active switch between LR shared and Global public.
175 // This is hacked around to support this while at the initial system start up.
176 //
177 pcur->head.ppi = NULL;
178
180 return;
181 }
182 }
183 }
184}
185
188{
189 return &gSysCursorInfo;
190}
191
193BOOL
195{
196 return MAKEINTRESOURCE(object->rt) == RT_ICON;
197}
198
199/* This function creates a reference for the object! */
201{
202 PCURICON_OBJECT CurIcon;
203
204 if (!hCurIcon)
205 {
207 return NULL;
208 }
209
210 if (UserObjectInDestroy(hCurIcon))
211 {
212 WARN("Requesting invalid/destroyed cursor.\n");
214 return NULL;
215 }
216
218 if (!CurIcon)
219 {
220 /* We never set ERROR_INVALID_ICON_HANDLE. lets hope noone ever checks for it */
222 return NULL;
223 }
224
225 ASSERT(CurIcon->head.cLockObj >= 1);
226 return CurIcon;
227}
228
231{
232 PCURICON_OBJECT pcurOld = UserSetCursor(pcurNew, FALSE);
233 if (pcurNew) UserReferenceObject(pcurNew);
234 if (pcurOld) UserDereferenceObject(pcurOld);
235 return pcurOld;
236}
237
239{
241 PSYSTEM_CURSORINFO CurInfo;
242 MSG Msg;
243 RECTL rcClip;
244 POINT pt;
245
247 {
248 return FALSE;
249 }
250
251 CurInfo = IntGetSysCursorInfo();
252
253 /* Clip cursor position */
254 if (!CurInfo->bClipped)
255 rcClip = DesktopWindow->rcClient;
256 else
257 rcClip = CurInfo->rcClip;
258
259 if (x >= rcClip.right) x = rcClip.right - 1;
260 if (x < rcClip.left) x = rcClip.left;
261 if (y >= rcClip.bottom) y = rcClip.bottom - 1;
262 if (y < rcClip.top) y = rcClip.top;
263
264 pt.x = x;
265 pt.y = y;
266
267 /* 1. Generate a mouse move message, this sets the htEx and Track Window too. */
268 Msg.message = WM_MOUSEMOVE;
269 Msg.wParam = UserGetMouseButtonsState();
270 Msg.lParam = MAKELPARAM(x, y);
271 Msg.pt = pt;
272 co_MsqInsertMouseMessage(&Msg, flags, dwExtraInfo, Hook);
273
274 /* 2. Store the new cursor position */
275 gpsi->ptCursor = pt;
276
277 return TRUE;
278}
279
280HANDLE
282{
283 PCURICON_OBJECT CurIcon;
284 HANDLE hCurIcon;
285
286 CurIcon = UserCreateObject(
288 NULL,
290 &hCurIcon,
292 Animated ? sizeof(ACON) : sizeof(CURICON_OBJECT));
293
294 if (!CurIcon)
295 {
297 return FALSE;
298 }
299
300 if (Animated)
301 {
302 /* We MUST set this flag, to track whether this is an ACON! */
303 CurIcon->CURSORF_flags |= CURSORF_ACON;
304 }
305
306 NT_ASSERT(CurIcon->pcurNext == NULL);
307 UserDereferenceObject(CurIcon);
308
309 return hCurIcon;
310}
311
315{
316 PCURICON_OBJECT CurIcon = Object;
317
318 /* Check if the cursor is in a list */
319 if (CurIcon->CURSORF_flags & CURSORF_LINKED)
320 {
321 /* Remove the cursor from it's list */
323 }
324
325 /* We just mark the handle as being destroyed.
326 * Deleting all the stuff will be deferred to the actual struct free. */
327 UserDeleteObject(CurIcon->head.h, TYPE_CURSOR);
328 return TRUE;
329}
330
331VOID
334{
335 PCURICON_OBJECT CurIcon = Object;
336
337 if (!(CurIcon->CURSORF_flags & CURSORF_ACON))
338 {
339 HBITMAP bmpMask = CurIcon->hbmMask;
340 HBITMAP bmpColor = CurIcon->hbmColor;
341 HBITMAP bmpAlpha = CurIcon->hbmAlpha;
342
343 /* Delete bitmaps */
344 if (bmpMask)
345 {
347 NT_VERIFY(GreDeleteObject(bmpMask) == TRUE);
348 CurIcon->hbmMask = NULL;
349 }
350 if (bmpColor)
351 {
353 NT_VERIFY(GreDeleteObject(bmpColor) == TRUE);
354 CurIcon->hbmColor = NULL;
355 }
356 if (bmpAlpha)
357 {
359 NT_VERIFY(GreDeleteObject(bmpAlpha) == TRUE);
360 CurIcon->hbmAlpha = NULL;
361 }
362 }
363 else
364 {
365 PACON AniCurIcon = (PACON)CurIcon;
366 UINT i;
367
368 for (i = 0; i < AniCurIcon->cpcur; i++)
369 {
370 UserDereferenceObject(AniCurIcon->aspcur[i]);
372 }
374 }
375
376 if (CurIcon->CURSORF_flags & CURSORF_LRSHARED)
377 {
378 if (!IS_INTRESOURCE(CurIcon->strName.Buffer))
380 if (CurIcon->atomModName)
382 CurIcon->strName.Buffer = NULL;
383 CurIcon->atomModName = 0;
384 }
385
386 /* Finally free the thing */
387 FreeProcMarkObject(CurIcon);
388}
389
392{
393 PCURICON_OBJECT CurIcon;
394
395 /* Run through the list of icon objects */
396 while (Win32Process->pCursorCache)
397 {
398 CurIcon = Win32Process->pCursorCache;
399 Win32Process->pCursorCache = CurIcon->pcurNext;
400 UserDereferenceObject(CurIcon);
401 }
402}
403
404/*
405 * @implemented
406 */
407_Success_(return != FALSE)
408BOOL
409NTAPI
410NtUserGetIconInfo(
411 _In_ HANDLE hCurIcon,
417{
418 ICONINFO ii;
419 PCURICON_OBJECT CurIcon;
421 BOOL Ret = FALSE;
422 DWORD colorBpp = 0;
423
424 TRACE("Enter NtUserGetIconInfo\n");
425
426 /* Check if something was actually asked */
427 if (!IconInfo && !lpModule && !lpResName)
428 {
429 WARN("Nothing to fill.\n");
431 return FALSE;
432 }
433
435
436 if (!(CurIcon = UserGetCurIconObject(hCurIcon)))
437 {
438 WARN("UserGetIconObject(0x%p) Failed.\n", hCurIcon);
439 UserLeave();
440 return FALSE;
441 }
442
443 /* Give back the icon information */
444 if (IconInfo)
445 {
446 PCURICON_OBJECT FrameCurIcon = CurIcon;
447 if (CurIcon->CURSORF_flags & CURSORF_ACON)
448 {
449 /* Get information from first frame. */
450 FrameCurIcon = ((PACON)CurIcon)->aspcur[0];
451 }
452
453 /* Fill data */
454 ii.fIcon = is_icon(FrameCurIcon);
455 ii.xHotspot = FrameCurIcon->xHotspot;
456 ii.yHotspot = FrameCurIcon->yHotspot;
457
458 /* Copy bitmaps */
459 ii.hbmMask = BITMAP_CopyBitmap(FrameCurIcon->hbmMask);
461 ii.hbmColor = BITMAP_CopyBitmap(FrameCurIcon->hbmColor);
463 colorBpp = FrameCurIcon->bpp;
464
465 /* Copy fields */
467 {
468 ProbeForWrite(IconInfo, sizeof(ICONINFO), 1);
469 RtlCopyMemory(IconInfo, &ii, sizeof(ICONINFO));
470
471 if (pbpp)
472 {
473 ProbeForWrite(pbpp, sizeof(DWORD), 1);
474 *pbpp = colorBpp;
475 }
476 }
478 {
480 }
482
483 if (!NT_SUCCESS(Status))
484 {
485 WARN("Status: 0x%08lx\n", Status);
487 goto leave;
488 }
489 }
490
491 /* Give back the module name */
492 if (lpModule)
493 {
494 ULONG BufLen = 0;
495 if (!CurIcon->atomModName)
496 goto leave;
497
499 /* Get the module name from the atom table */
501 {
502 BufLen += sizeof(WCHAR);
503 if (BufLen > (lpModule->MaximumLength))
504 {
505 lpModule->Length = 0;
506 lpModule->MaximumLength = BufLen;
507 }
508 else
509 {
510 ProbeForWrite(lpModule->Buffer, lpModule->MaximumLength, 1);
511 BufLen = lpModule->MaximumLength;
512 RtlQueryAtomInAtomTable(gAtomTable, CurIcon->atomModName, NULL, NULL, lpModule->Buffer, &BufLen);
513 lpModule->Length = BufLen;
514 }
515 }
517 {
519 }
521
522 if (!NT_SUCCESS(Status))
523 {
525 goto leave;
526 }
527 }
528
529 if (lpResName)
530 {
531 if (!CurIcon->strName.Buffer)
532 goto leave;
533
534 /* Copy it */
536 {
538 if (IS_INTRESOURCE(CurIcon->strName.Buffer))
539 {
540 lpResName->Buffer = CurIcon->strName.Buffer;
541 lpResName->Length = 0;
542 lpResName->MaximumLength = 0;
543 }
544 else if (lpResName->MaximumLength < CurIcon->strName.MaximumLength)
545 {
546 lpResName->Length = 0;
547 lpResName->MaximumLength = CurIcon->strName.MaximumLength;
548 }
549 else
550 {
551 ProbeForWrite(lpResName->Buffer, lpResName->MaximumLength, 1);
552 RtlCopyMemory(lpResName->Buffer, CurIcon->strName.Buffer, CurIcon->strName.Length);
553 lpResName->Length = CurIcon->strName.Length;
554 }
555 }
557 {
559 }
561 }
562
563 if (!NT_SUCCESS(Status))
564 {
566 goto leave;
567 }
568
569 Ret = TRUE;
570
571leave:
572 UserDereferenceObject(CurIcon);
573
574 TRACE("Leave NtUserGetIconInfo, ret=%i\n", Ret);
575 UserLeave();
576
577 return Ret;
578}
579
580
581/*
582 * @implemented
583 */
584BOOL
587 HANDLE hCurIcon,
588 UINT istepIfAniCur,
589 PLONG plcx, // &size.cx
590 PLONG plcy) // &size.cy
591{
592 PCURICON_OBJECT CurIcon;
594 BOOL bRet = FALSE;
595
596 TRACE("Enter NtUserGetIconSize\n");
598
599 if (!(CurIcon = UserGetCurIconObject(hCurIcon)))
600 {
601 goto cleanup;
602 }
603
604 if (CurIcon->CURSORF_flags & CURSORF_ACON)
605 {
606 /* Use first frame for animated cursors */
607 PACON AniCurIcon = (PACON)CurIcon;
608 CurIcon = AniCurIcon->aspcur[0];
609 UserDereferenceObject(AniCurIcon);
610 UserReferenceObject(CurIcon);
611 }
612
614 {
615 ProbeForWrite(plcx, sizeof(LONG), 1);
616 *plcx = CurIcon->cx;
617 ProbeForWrite(plcy, sizeof(LONG), 1);
618 *plcy = CurIcon->cy;
619 }
621 {
623 }
625
626 if (NT_SUCCESS(Status))
627 bRet = TRUE;
628 else
629 SetLastNtError(Status); // Maybe not, test this
630
631 UserDereferenceObject(CurIcon);
632
633cleanup:
634 TRACE("Leave NtUserGetIconSize, ret=%i\n", bRet);
635 UserLeave();
636 return bRet;
637}
638
639
640/*
641 * @implemented
642 */
643BOOL
646 PCURSORINFO pci)
647{
648 CURSORINFO SafeCi;
649 PSYSTEM_CURSORINFO CurInfo;
651 PCURICON_OBJECT CurIcon;
652 BOOL Ret = FALSE;
654
655 TRACE("Enter NtUserGetCursorInfo\n");
657
658 CurInfo = IntGetSysCursorInfo();
659 CurIcon = (PCURICON_OBJECT)CurInfo->CurrentCursorObject;
660
661 SafeCi.cbSize = sizeof(CURSORINFO);
662 SafeCi.flags = ((CurIcon && CurInfo->ShowingCursor >= 0) ? CURSOR_SHOWING : 0);
663 SafeCi.hCursor = (CurIcon ? CurIcon->head.h : NULL);
664
665 SafeCi.ptScreenPos = gpsi->ptCursor;
666
668 {
669 if (pci->cbSize == sizeof(CURSORINFO))
670 {
671 ProbeForWrite(pci, sizeof(CURSORINFO), 1);
672 RtlCopyMemory(pci, &SafeCi, sizeof(CURSORINFO));
673 Ret = TRUE;
674 }
675 else
676 {
678 }
679 }
681 {
683 }
684 _SEH2_END;
685 if (!NT_SUCCESS(Status))
686 {
688 }
689
690 RETURN(Ret);
691
692CLEANUP:
693 TRACE("Leave NtUserGetCursorInfo, ret=%i\n",_ret_);
694 UserLeave();
696}
697
698BOOL
701 RECTL *prcl)
702{
703 PSYSTEM_CURSORINFO CurInfo;
705
707 {
708 return FALSE;
709 }
710
711 CurInfo = IntGetSysCursorInfo();
712
714
715 if (prcl != NULL && DesktopWindow != NULL)
716 {
717 if (prcl->right < prcl->left || prcl->bottom < prcl->top)
718 {
720 return FALSE;
721 }
722
723 CurInfo->bClipped = TRUE;
724
725 /* Set nw cliping region. Note: we can't use RECTL_bIntersectRect because
726 it sets rect to 0 0 0 0 when it's empty. For more info see monitor winetest */
727 CurInfo->rcClip.left = max(prcl->left, DesktopWindow->rcWindow.left);
728 CurInfo->rcClip.right = min(prcl->right, DesktopWindow->rcWindow.right);
729 if (CurInfo->rcClip.right < CurInfo->rcClip.left)
730 CurInfo->rcClip.right = CurInfo->rcClip.left;
731
732 CurInfo->rcClip.top = max(prcl->top, DesktopWindow->rcWindow.top);
733 CurInfo->rcClip.bottom = min(prcl->bottom, DesktopWindow->rcWindow.bottom);
734 if (CurInfo->rcClip.bottom < CurInfo->rcClip.top)
735 CurInfo->rcClip.bottom = CurInfo->rcClip.top;
736
737 /* Make sure cursor is in clipping region */
738 UserSetCursorPos(gpsi->ptCursor.x, gpsi->ptCursor.y, 0, 0, FALSE);
739 }
740 else
741 {
742 CurInfo->bClipped = FALSE;
743 }
744
745 return TRUE;
746}
747
748/*
749 * @implemented
750 */
751BOOL
754 RECTL *prcl)
755{
756 RECTL rclLocal;
757 BOOL bResult;
758
759 if (prcl)
760 {
762 {
763 /* Probe and copy rect */
764 ProbeForRead(prcl, sizeof(RECTL), 1);
765 rclLocal = *prcl;
766 }
768 {
770 _SEH2_YIELD(return FALSE;)
771 }
773
774 prcl = &rclLocal;
775 }
776
778
779 /* Call the internal function */
780 bResult = UserClipCursor(prcl);
781
782 UserLeave();
783
784 return bResult;
785}
786
787
788/*
789 * @implemented
790 */
791BOOL
794 _In_ HANDLE hCurIcon,
795 _In_ BOOL bForce)
796{
797 BOOL ret;
798 PCURICON_OBJECT CurIcon = NULL;
799
800 TRACE("Enter NtUserDestroyCursorIcon (%p, %i)\n", hCurIcon, bForce);
802
803 CurIcon = UserGetCurIconObject(hCurIcon);
804 if (!CurIcon)
805 {
806 ret = FALSE;
807 goto leave;
808 }
809
810 if (!bForce)
811 {
812 /* Can not destroy global objects */
813 if (CurIcon->head.ppi == NULL)
814 {
815 ERR("Trying to delete global cursor!\n");
816 ret = TRUE;
817 goto leave;
818 }
819
820 /* Maybe we have good reasons not to destroy this object */
821 if (CurIcon->head.ppi != PsGetCurrentProcessWin32Process())
822 {
823 /* No way, you're not touching my cursor */
824 ret = FALSE;
825 goto leave;
826 }
827
828 if (CurIcon->CURSORF_flags & CURSORF_CURRENT)
829 {
830 WARN("Trying to delete current cursor!\n");
831 ret = FALSE;
832 goto leave;
833 }
834
835 if (CurIcon->CURSORF_flags & CURSORF_LRSHARED)
836 {
837 WARN("Trying to delete shared cursor.\n");
838 /* This one is not an error */
839 ret = TRUE;
840 goto leave;
841 }
842 }
843
844 /* Destroy the handle */
845 ret = IntDestroyCurIconObject(CurIcon);
846
847leave:
848 if (CurIcon)
849 UserDereferenceObject(CurIcon);
850 TRACE("Leave NtUserDestroyCursorIcon, ret=%i\n", ret);
851 UserLeave();
852 return ret;
853}
854
855
856/*
857 * @implemented
858 */
859HICON
860NTAPI
862 _In_ PUNICODE_STRING pustrModule,
863 _In_ PUNICODE_STRING pustrRsrc,
865{
866 PCURICON_OBJECT CurIcon;
867 HICON Ret = NULL;
868 UNICODE_STRING ustrModuleSafe, ustrRsrcSafe;
869 FINDEXISTINGCURICONPARAM paramSafe;
872 RTL_ATOM atomModName;
873
874 TRACE("Enter NtUserFindExistingCursorIcon\n");
875
877 {
878 ProbeForRead(param, sizeof(*param), 1);
879 RtlCopyMemory(&paramSafe, param, sizeof(paramSafe));
880 }
882 {
884 }
886
887 /* Capture resource name (it can be an INTRESOURCE == ATOM) */
888 Status = ProbeAndCaptureUnicodeStringOrAtom(&ustrRsrcSafe, pustrRsrc);
889 if (!NT_SUCCESS(Status))
890 return NULL;
891 Status = ProbeAndCaptureUnicodeString(&ustrModuleSafe, UserMode, pustrModule);
892 if (!NT_SUCCESS(Status))
893 goto done;
894 Status = RtlLookupAtomInAtomTable(gAtomTable, ustrModuleSafe.Buffer, &atomModName);
895 ReleaseCapturedUnicodeString(&ustrModuleSafe, UserMode);
896 if (!NT_SUCCESS(Status))
897 {
898 /* The module is not in the atom table. No chance to find the cursor */
899 goto done;
900 }
901
903 CurIcon = pProcInfo->pCursorCache;
904 while (CurIcon)
905 {
906 /* Icon/cursor */
907 if (paramSafe.bIcon != is_icon(CurIcon))
908 {
909 CurIcon = CurIcon->pcurNext;
910 continue;
911 }
912 /* See if module names match */
913 if (atomModName == CurIcon->atomModName)
914 {
915 /* They do. Now see if this is the same resource */
916 if (IS_INTRESOURCE(CurIcon->strName.Buffer) != IS_INTRESOURCE(ustrRsrcSafe.Buffer))
917 {
918 /* One is an INT resource and the other is not -> no match */
919 CurIcon = CurIcon->pcurNext;
920 continue;
921 }
922
923 if (IS_INTRESOURCE(CurIcon->strName.Buffer))
924 {
925 if (CurIcon->strName.Buffer == ustrRsrcSafe.Buffer)
926 {
927 /* INT resources match */
928 break;
929 }
930 }
931 else if (RtlCompareUnicodeString(&ustrRsrcSafe, &CurIcon->strName, TRUE) == 0)
932 {
933 /* Resource name strings match */
934 break;
935 }
936 }
937 CurIcon = CurIcon->pcurNext;
938 }
939
940 /* Now search Global Cursors or Icons. */
941 if (CurIcon == NULL)
942 {
943 CurIcon = gcurFirst;
944 while (CurIcon)
945 {
946 /* Icon/cursor */
947 if (paramSafe.bIcon != is_icon(CurIcon))
948 {
949 CurIcon = CurIcon->pcurNext;
950 continue;
951 }
952 /* See if module names match */
953 if (atomModName == CurIcon->atomModName)
954 {
955 /* They do. Now see if this is the same resource */
956 if (IS_INTRESOURCE(CurIcon->strName.Buffer) != IS_INTRESOURCE(ustrRsrcSafe.Buffer))
957 {
958 /* One is an INT resource and the other is not -> no match */
959 CurIcon = CurIcon->pcurNext;
960 continue;
961 }
962 if (IS_INTRESOURCE(CurIcon->strName.Buffer))
963 {
964 if (CurIcon->strName.Buffer == ustrRsrcSafe.Buffer)
965 {
966 /* INT resources match */
967 break;
968 }
969 }
970 else if (RtlCompareUnicodeString(&ustrRsrcSafe, &CurIcon->strName, TRUE) == 0)
971 {
972 /* Resource name strings match */
973 break;
974 }
975 }
976 CurIcon = CurIcon->pcurNext;
977 }
978 }
979 if (CurIcon)
980 Ret = CurIcon->head.h;
981 UserLeave();
982
983done:
984 if (!IS_INTRESOURCE(ustrRsrcSafe.Buffer))
985 ExFreePoolWithTag(ustrRsrcSafe.Buffer, TAG_STRING);
986
987 return Ret;
988}
989
990
991/*
992 * @implemented
993 */
994BOOL
997 RECTL *lpRect)
998{
999 PSYSTEM_CURSORINFO CurInfo;
1000 RECTL Rect;
1003
1004 TRACE("Enter NtUserGetClipCursor\n");
1006
1008 {
1009 RETURN(FALSE);
1010 }
1011
1012 if (!lpRect)
1013 RETURN(FALSE);
1014
1015 CurInfo = IntGetSysCursorInfo();
1016 if (CurInfo->bClipped)
1017 {
1018 Rect = CurInfo->rcClip;
1019 }
1020 else
1021 {
1022 Rect.left = 0;
1023 Rect.top = 0;
1026 }
1027
1028 Status = MmCopyToCaller(lpRect, &Rect, sizeof(RECT));
1029 if (!NT_SUCCESS(Status))
1030 {
1032 RETURN(FALSE);
1033 }
1034
1035 RETURN(TRUE);
1036
1037CLEANUP:
1038 TRACE("Leave NtUserGetClipCursor, ret=%i\n",_ret_);
1039 UserLeave();
1041}
1042
1043
1044/*
1045 * @implemented
1046 */
1047HCURSOR
1050 HCURSOR hCursor)
1051{
1052 PCURICON_OBJECT pcurOld, pcurNew;
1053 HCURSOR hOldCursor = NULL;
1054
1055 TRACE("Enter NtUserSetCursor: %p\n", hCursor);
1057
1058 if (hCursor)
1059 {
1060 pcurNew = UserGetCurIconObject(hCursor);
1061 if (!pcurNew)
1062 {
1064 goto leave;
1065 }
1066 pcurNew->CURSORF_flags |= CURSORF_CURRENT;
1067 }
1068 else
1069 {
1070 pcurNew = NULL;
1071 }
1072
1073 pcurOld = UserSetCursor(pcurNew, FALSE);
1074
1075 // If returning an old cursor than validate it, Justin Case!
1076 if ( pcurOld &&
1078 {
1079 hOldCursor = UserHMGetHandle(pcurOld);
1080 /*
1081 Problem:
1082
1083 System Global Cursors start out having at least 2 lock counts. If a system
1084 cursor is the default cursor and is returned to the caller twice in its
1085 life, the count will reach zero. Causing an assert to occur in objects.
1086
1087 This fixes a SeaMonkey crash while the mouse crosses a boundary.
1088 */
1089 if (pcurOld->CURSORF_flags & CURSORF_GLOBAL)
1090 {
1091 TRACE("Returning Global Cursor hcur %p\n",hOldCursor);
1092
1093 /*if (pcurOld->head.cLockObj > 2) // Throttle down to 2.
1094 {
1095 UserDereferenceObject(pcurOld);
1096 }
1097
1098 goto leave;*/
1099 }
1100
1101 /* See if it was destroyed in the meantime */
1102 if (UserObjectInDestroy(hOldCursor))
1103 hOldCursor = NULL;
1104 pcurOld->CURSORF_flags &= ~CURSORF_CURRENT;
1105 UserDereferenceObject(pcurOld);
1106 }
1107
1108leave:
1109 UserLeave();
1110 return hOldCursor;
1111}
1112
1113
1114/*
1115 * @unimplemented
1116 */
1117BOOL
1120 HANDLE hCurIcon,
1121 PICONINFO UnsafeIconInfo)
1122{
1123 FIXME(" is UNIMPLEMENTED.\n");
1124 return FALSE;
1125}
1126
1127
1128static
1129BOOL
1132 _In_opt_ PUNICODE_STRING pustrName,
1133 _In_ ATOM atomModName,
1134 _In_ const CURSORDATA* pcursordata)
1135{
1136 /* Check if the CURSORF_ACON is also set in the cursor data */
1137 if (pcursordata->CURSORF_flags & CURSORF_ACON)
1138 {
1139 ERR("Mismatch in CURSORF_flags! cursor: 0x%08lx, data: 0x%08lx\n",
1140 pcur->CURSORF_flags, pcursordata->CURSORF_flags);
1141 return FALSE;
1142 }
1143
1144 /* Check if this cursor was already set */
1145 if (pcur->hbmMask != NULL)
1146 {
1147 ERR("Cursor data already set!\n");
1148 return FALSE;
1149 }
1150
1151 /* We need a mask */
1152 if (pcursordata->hbmMask == NULL)
1153 {
1154 ERR("NtUserSetCursorIconData was got no hbmMask.\n");
1156 return FALSE;
1157 }
1158
1159 /* Take ownership of the mask bitmap */
1160 if (!GreSetBitmapOwner(pcursordata->hbmMask, GDI_OBJ_HMGR_PUBLIC))
1161 {
1162 ERR("Failed to set ownership of hbmMask %p.\n", pcursordata->hbmMask);
1163 return FALSE;
1164 }
1165
1166 /* Check if we have a color bitmap */
1167 if (pcursordata->hbmColor)
1168 {
1169 /* Take ownership of the color bitmap */
1170 if (!GreSetBitmapOwner(pcursordata->hbmColor, GDI_OBJ_HMGR_PUBLIC))
1171 {
1172 ERR("Failed to set ownership of hbmColor %p.\n", pcursordata->hbmColor);
1173 GreSetBitmapOwner(pcursordata->hbmMask, GDI_OBJ_HMGR_POWNED);
1174 return FALSE;
1175 }
1176 }
1177
1178 /* Check if we have an alpha bitmap */
1179 if (pcursordata->hbmAlpha)
1180 {
1181 /* Take ownership of the alpha bitmap */
1182 if (!GreSetBitmapOwner(pcursordata->hbmAlpha, GDI_OBJ_HMGR_PUBLIC))
1183 {
1184 ERR("Failed to set ownership of hbmAlpha %p.\n", pcursordata->hbmAlpha);
1185 GreSetBitmapOwner(pcursordata->hbmMask, GDI_OBJ_HMGR_POWNED);
1186 if (pcursordata->hbmColor)
1187 {
1188 GreSetBitmapOwner(pcursordata->hbmColor, GDI_OBJ_HMGR_POWNED);
1189 }
1190 return FALSE;
1191 }
1192 }
1193
1194 /* Free the old name (Must be NULL atm, but later we might allow this) */
1195 NT_ASSERT(pcur->strName.Buffer == NULL);
1196 if (pcur->strName.Buffer != NULL)
1197 {
1198 if (!IS_INTRESOURCE(pcur->strName.Buffer))
1199 {
1200 ExFreePoolWithTag(pcur->strName.Buffer, TAG_STRING);
1201 }
1202 RtlInitEmptyUnicodeString(&pcur->strName, NULL, 0);
1203 }
1204
1205 /* Free the module atom */
1206 if (pcur->atomModName != 0)
1207 {
1209 }
1210
1211 /* Now set the new cursor data */
1212 pcur->atomModName = atomModName;
1213 pcur->rt = pcursordata->rt;
1214 pcur->CURSORF_flags = pcursordata->CURSORF_flags & CURSORF_USER_MASK;
1215 pcur->xHotspot = pcursordata->xHotspot;
1216 pcur->yHotspot = pcursordata->yHotspot;
1217 pcur->hbmMask = pcursordata->hbmMask;
1218 pcur->hbmColor = pcursordata->hbmColor;
1219 pcur->hbmAlpha = pcursordata->hbmAlpha;
1220 pcur->rcBounds.left = 0;
1221 pcur->rcBounds.top = 0;
1222 pcur->rcBounds.right = pcursordata->cx;
1223 pcur->rcBounds.bottom = pcursordata->cy;
1224 pcur->hbmUserAlpha = pcursordata->hbmUserAlpha;
1225 pcur->bpp = pcursordata->bpp;
1226 pcur->cx = pcursordata->cx;
1227 pcur->cy = pcursordata->cy;
1228 if (pustrName != NULL)
1229 {
1230 pcur->strName = *pustrName;
1231 }
1232
1233 return TRUE;
1234}
1235
1236static
1237BOOL
1239 _Inout_ PACON pacon,
1240 _In_opt_ PUNICODE_STRING pustrName,
1241 _In_ ATOM atomModName,
1242 _In_ const CURSORDATA *pcursordata)
1243{
1244 PCURICON_OBJECT *aspcur;
1245 DWORD *aicur;
1246 INT *ajifRate;
1247 PCURSORDATA pcdFrame;
1248 HCURSOR hcurFrame;
1249 UINT cjSize, i;
1250
1251 NT_ASSERT((pacon->CURSORF_flags & CURSORF_ACON) != 0);
1252 NT_ASSERT((pacon->CURSORF_flags & CURSORF_ACONFRAME) == 0);
1253 NT_ASSERT((ULONG_PTR)pcursordata->aspcur > MmUserProbeAddress);
1254 NT_ASSERT((ULONG_PTR)pcursordata->aicur > MmUserProbeAddress);
1255 NT_ASSERT((ULONG_PTR)pcursordata->ajifRate > MmUserProbeAddress);
1256 NT_ASSERT((pcursordata->CURSORF_flags & ~CURSORF_USER_MASK) == 0);
1257 NT_ASSERT(pcursordata->cpcur > 0);
1258 NT_ASSERT(pcursordata->cicur > 0);
1259
1260 /* Check if the CURSORF_ACON is also set in the cursor data */
1261 if (!(pcursordata->CURSORF_flags & CURSORF_ACON))
1262 {
1263 ERR("Mismatch in CURSORF_flags! acon: 0x%08lx, data: 0x%08lx\n",
1264 pacon->CURSORF_flags, pcursordata->CURSORF_flags);
1265 return FALSE;
1266 }
1267
1268 /* Check if this acon was already set */
1269 if (pacon->aspcur != NULL)
1270 {
1271 ERR("Acon data already set!\n");
1272 return FALSE;
1273 }
1274
1275 /* Loop all frames indexes */
1276 for (i = 0; i < pcursordata->cicur; i++)
1277 {
1278 /* Check if the index is within the range of the frames */
1279 if (pcursordata->aicur[i] >= pcursordata->cpcur)
1280 {
1281 ERR("aicur[%lu] is out or range. Got %lu, cpcur = %u\n",
1282 i, pcursordata->aicur[i], pcursordata->cpcur);
1283 return FALSE;
1284 }
1285
1286 /* FIXME: check the JIF rates? */
1287 }
1288
1289 /* Calculate size: one cursor object for each frame, and a frame
1290 index and jiffies for each "step" */
1291 cjSize = (pcursordata->cpcur * sizeof(CURICON_OBJECT*)) +
1292 (pcursordata->cicur * sizeof(DWORD)) +
1293 (pcursordata->cicur * sizeof(INT));
1294
1295 /* Allocate a buffer */
1297 if (aspcur == NULL)
1298 {
1299 ERR("Failed to allocate memory (cpcur = %u, cicur = %u)\n",
1300 pcursordata->cpcur, pcursordata->cicur);
1301 return FALSE;
1302 }
1303
1304 /* Set the pointers */
1305 aicur = (DWORD*)&aspcur[pcursordata->cpcur];
1306 ajifRate = (INT*)&aicur[pcursordata->cicur];
1307
1308 /* Copy the values */
1309 RtlCopyMemory(aicur, pcursordata->aicur, pcursordata->cicur * sizeof(DWORD));
1310 RtlCopyMemory(ajifRate, pcursordata->ajifRate, pcursordata->cicur * sizeof(INT));
1311
1312 /* Zero out the array, so we can handle cleanup */
1313 RtlZeroMemory(aspcur, pcursordata->cpcur * sizeof(PCURICON_OBJECT));
1314
1315 /* Get a pointer to the cursor data for each frame */
1316 pcdFrame = pcursordata->aspcur;
1317
1318 /* Create the cursors */
1319 for (i = 0; i < pcursordata->cpcur; i++)
1320 {
1321 /* Create a cursor for this frame */
1322 hcurFrame = IntCreateCurIconHandle(FALSE);
1323 if (hcurFrame == NULL)
1324 {
1325 ERR("Failed to create a cursor for frame %u\n", i);
1326 goto Cleanup;
1327 }
1328
1329 /* Get a pointer to the frame cursor */
1330 aspcur[i] = UserGetCurIconObject(hcurFrame);
1332 NT_ASSERT(aspcur[i] != NULL);
1333
1334 /* Check if the flags are valid */
1336 {
1337 ERR("Invalid flags for acon frame %u: 0x%08lx\n",
1338 i, pcdFrame->CURSORF_flags);
1339 goto Cleanup;
1340 }
1341
1342 /* Set the cursor data for this frame */
1343 if (!IntSetCursorData(aspcur[i], NULL, 0, &pcdFrame[i]))
1344 {
1345 ERR("Failed to set cursor data for frame %u\n", i);
1346 goto Cleanup;
1347 }
1348
1349 /* Mark this cursor as an acon frame */
1350 aspcur[i]->CURSORF_flags |= CURSORF_ACONFRAME;
1351 }
1352
1353 /* Free the old name (Must be NULL atm.) */
1354 NT_ASSERT(pacon->strName.Buffer == NULL);
1355 if (pacon->strName.Buffer != NULL)
1356 {
1357 if (!IS_INTRESOURCE(pacon->strName.Buffer))
1358 {
1359 ExFreePoolWithTag(pacon->strName.Buffer, TAG_STRING);
1360 }
1361 RtlInitEmptyUnicodeString(&pacon->strName, NULL, 0);
1362 }
1363
1364 /* Free the module atom */
1365 if (pacon->atomModName != 0)
1366 {
1368 }
1369
1370 /* Free the previous frames */
1371 if (pacon->aspcur != NULL)
1372 {
1373 for (i = 0; i < pacon->cpcur; i++)
1374 {
1375 UserDereferenceObject(pacon->aspcur[i]);
1376 NT_VERIFY(IntDestroyCurIconObject(pacon->aspcur[i]) == TRUE);
1377 }
1378 ExFreePoolWithTag(pacon->aspcur, USERTAG_CURSOR);
1379 }
1380
1381 /* Finally set the data in the acon */
1382 pacon->atomModName = atomModName;
1383 pacon->rt = pcursordata->rt;
1384 pacon->CURSORF_flags = pcursordata->CURSORF_flags & CURSORF_USER_MASK;
1385 pacon->cpcur = pcursordata->cpcur;
1386 pacon->cicur = pcursordata->cicur;
1387 pacon->aspcur = aspcur;
1388 pacon->aicur = aicur;
1389 pacon->ajifRate = ajifRate;
1390 pacon->iicur = 0;
1391 if (pustrName != NULL)
1392 {
1393 pacon->strName = *pustrName;
1394 }
1395
1396 return TRUE;
1397
1398Cleanup:
1399
1400 /* Clean up the cursors we created */
1401 for (i = 0; i < pcursordata->cpcur; i++)
1402 {
1403 if (aspcur[i] == NULL)
1404 break;
1405
1406 /* Destroy this cursor */
1407 UserDereferenceObject(aspcur[i]);
1409 }
1410
1411 /* Delete the allocated structure */
1413
1414 return FALSE;
1415}
1416
1417BOOL
1420 _In_ HCURSOR hcursor,
1421 _In_opt_ PUNICODE_STRING pustrModule,
1422 _In_opt_ PUNICODE_STRING pustrRsrc,
1423 _In_ PCURSORDATA pcursordata)
1424{
1425 PCURICON_OBJECT pcur;
1426 ATOM atomModName;
1428 BOOL bResult;
1429
1430 /* Do we have a module name? */
1431 if (pustrModule != NULL)
1432 {
1433 /* Create an atom for the module name */
1435 pustrModule->Buffer,
1436 &atomModName);
1437 if (!NT_SUCCESS(status))
1438 {
1439 ERR("Failed to create atom from module name '%wZ': 0x%08lx\n",
1440 pustrModule, status);
1441 return FALSE;
1442 }
1443 }
1444 else
1445 {
1446 /* No module name atom */
1447 atomModName = 0;
1448 }
1449
1450 /* Reference the cursor */
1451 pcur = UserGetCurIconObject(hcursor);
1452 if (pcur == NULL)
1453 {
1454 ERR("Failed to reference cursor %p\n", hcursor);
1455 bResult = FALSE;
1456 goto Exit;
1457 }
1458
1459 /* Check if this is an acon */
1460 if (pcur->CURSORF_flags & CURSORF_ACON)
1461 {
1462 bResult = IntSetAconData((PACON)pcur,
1463 pustrRsrc,
1464 atomModName,
1465 pcursordata);
1466 }
1467 else
1468 {
1469 bResult = IntSetCursorData(pcur,
1470 pustrRsrc,
1471 atomModName,
1472 pcursordata);
1473 }
1474
1475Exit:
1476
1477 /* Check if we had success */
1478 if (bResult != FALSE)
1479 {
1480 /* Check if this is an LRSHARED cursor now */
1481 if (pcur->CURSORF_flags & CURSORF_LRSHARED)
1482 {
1483 /* Insert the cursor into the list. */
1485 }
1486 }
1487 else
1488 {
1489 /* Cleanup on failure */
1490 if (atomModName != 0)
1491 {
1493 }
1494 }
1495
1496 /* Dereference the cursor and return the result */
1497 if (pcur)
1499
1500 return bResult;
1501}
1502
1503
1504/*
1505 * @implemented
1506 */
1508BOOL
1511 _In_ HCURSOR hcursor,
1512 _In_opt_ PUNICODE_STRING pustrModule,
1513 _In_opt_ PUNICODE_STRING pustrRsrc,
1514 _In_ const CURSORDATA* pCursorData)
1515{
1516 CURSORDATA cursordata;
1517 UNICODE_STRING ustrModule, ustrRsrc;
1518 _SEH2_VOLATILE PVOID pvBuffer;
1519 CURSORDATA* aspcur;
1520 DWORD* aicur;
1521 PINT ajifRate;
1522 UINT cjSize;
1524 BOOL bResult = FALSE;
1525
1526 TRACE("Enter NtUserSetCursorIconData\n");
1527
1528 /* Initialize buffer, so we can handle cleanup */
1529 ustrRsrc.Buffer = NULL;
1530 ustrModule.Buffer = NULL;
1531 pvBuffer = NULL;
1532
1533 _SEH2_TRY
1534 {
1535 /* Probe and capture the cursor data structure */
1536 ProbeForRead(pCursorData, sizeof(*pCursorData), 1);
1537 cursordata = *pCursorData;
1538
1539 /* Check if this is an animated cursor */
1540 if (cursordata.CURSORF_flags & CURSORF_ACON)
1541 {
1542 /* Check of the range is ok */
1543 if ((cursordata.cpcur == 0) || (cursordata.cicur == 0) ||
1544 (cursordata.cpcur > 1000) || (cursordata.cicur > 1000))
1545 {
1546 ERR("Range error (cpcur = %u, cicur = %u)\n",
1547 cursordata.cpcur, cursordata.cicur);
1548 goto Exit;
1549 }
1550
1551 /* Calculate size: one cursor data structure for each frame,
1552 and a frame index and jiffies for each "step" */
1553 cjSize = (cursordata.cpcur * sizeof(CURSORDATA)) +
1554 (cursordata.cicur * sizeof(DWORD)) +
1555 (cursordata.cicur * sizeof(INT));
1556
1557 /* Allocate a buffer */
1559 if (pvBuffer == NULL)
1560 {
1561 ERR("Failed to allocate memory (cpcur = %u, cicur = %u)\n",
1562 cursordata.cpcur, cursordata.cicur);
1563 goto Exit;
1564 }
1565
1566 /* Calculate the kernel mode pointers */
1567 aspcur = (CURSORDATA*)pvBuffer;
1568 aicur = (DWORD*)&aspcur[cursordata.cpcur];
1569 ajifRate = (INT*)&aicur[cursordata.cicur];
1570
1571 /* Probe and copy aspcur */
1572 ProbeForRead(cursordata.aspcur, cursordata.cpcur * sizeof(CURSORDATA), 1);
1573 RtlCopyMemory(aspcur,
1574 cursordata.aspcur,
1575 cursordata.cpcur * sizeof(CURSORDATA));
1576
1577 /* Probe and copy aicur */
1578 ProbeForRead(cursordata.aicur, cursordata.cicur * sizeof(DWORD), 1);
1579 RtlCopyMemory(aicur,
1580 cursordata.aicur,
1581 cursordata.cicur * sizeof(DWORD));
1582
1583 /* Probe and copy ajifRate */
1584 ProbeForRead(cursordata.ajifRate, cursordata.cicur * sizeof(INT), 1);
1585 RtlCopyMemory(ajifRate,
1586 cursordata.ajifRate,
1587 cursordata.cicur * sizeof(INT));
1588
1589 /* Set the new pointers */
1590 cursordata.aspcur = aspcur;
1591 cursordata.aicur = aicur;
1592 cursordata.ajifRate = ajifRate;
1593 }
1594 else
1595 {
1596 /* This is a standard cursor, we don't use the pointers */
1597 cursordata.aspcur = NULL;
1598 cursordata.aicur = NULL;
1599 cursordata.ajifRate = NULL;
1600 }
1601 }
1603 {
1605 goto Exit;
1606 }
1607 _SEH2_END
1608
1609 /* Check if we got a module name */
1610 if (pustrModule != NULL)
1611 {
1612 /* Capture the name */
1613 status = ProbeAndCaptureUnicodeString(&ustrModule, UserMode, pustrModule);
1614 if (!NT_SUCCESS(status))
1615 {
1616 ERR("Failed to copy pustrModule: status 0x%08lx\n", status);
1617 goto Exit;
1618 }
1619 }
1620
1621 /* Check if we got a resource name */
1622 if (pustrRsrc != NULL)
1623 {
1624 /* We use this function, because INTRESOURCEs and ATOMs are the same */
1625 status = ProbeAndCaptureUnicodeStringOrAtom(&ustrRsrc, pustrRsrc);
1626 if (!NT_SUCCESS(status))
1627 {
1628 ERR("Failed to copy pustrRsrc: status 0x%08lx\n", status);
1629 goto Exit;
1630 }
1631 }
1632
1633 /* Make sure the caller doesn't give us invalid flags */
1634 if (cursordata.CURSORF_flags & ~CURSORF_USER_MASK)
1635 {
1636 ERR("Invalid cursor flags: 0x%08lx\n", cursordata.CURSORF_flags);
1637 goto Exit;
1638 }
1639
1640 /* Acquire the global user lock */
1642
1643 /* Call the internal function */
1644 bResult = UserSetCursorIconData(hcursor,
1645 pustrModule ? &ustrModule : NULL,
1646 pustrRsrc ? &ustrRsrc : NULL,
1647 &cursordata);
1648
1649 /* Release the global user lock */
1650 UserLeave();
1651
1652Exit:
1653
1654 /* Free the captured module name */
1655 if ((ustrModule.Buffer != NULL) && !IS_INTRESOURCE(ustrModule.Buffer))
1656 {
1658 }
1659
1660 if (pvBuffer != NULL)
1661 {
1663 }
1664
1665 /* Additional cleanup on failure */
1666 if (bResult == FALSE)
1667 {
1668 if ((ustrRsrc.Buffer != NULL) &&
1669 !IS_INTRESOURCE(ustrRsrc.Buffer))
1670 {
1672 }
1673 }
1674
1675 TRACE("Leave NtUserSetCursorIconData, bResult = %i\n", bResult);
1676
1677 return bResult;
1678}
1679
1680/* Mostly inspired from wine code.
1681 * We use low level functions because:
1682 * - at this point, the icon bitmap could have a different bit depth than the DC,
1683 * making it thus impossible to use NtCreateCompatibleDC and selecting the bitmap.
1684 * This happens after a mode setting change.
1685 * - it avoids massive GDI objects locking when only the destination surface needs it.
1686 * - It makes (small) performance gains.
1687 */
1688BOOL
1690 HDC hDc,
1691 INT xLeft,
1692 INT yTop,
1693 PCURICON_OBJECT pIcon,
1694 INT cxWidth,
1695 INT cyHeight,
1696 UINT istepIfAniCur,
1697 HBRUSH hbrFlickerFreeDraw,
1698 UINT diFlags)
1699{
1700 PSURFACE psurfDest, psurfMask, psurfColor; //, psurfOffScreen = NULL;
1701 PDC pdc = NULL;
1702 BOOL Ret = FALSE;
1703 HBITMAP hbmMask, hbmColor, hbmAlpha;
1704 BOOL bOffScreen;
1705 RECTL rcDest, rcSrc;
1706 CLIPOBJ* pdcClipObj = NULL;
1707 EXLATEOBJ exlo;
1708
1709 /* Stupid case */
1710 if ((diFlags & DI_NORMAL) == 0)
1711 {
1712 ERR("DrawIconEx called without mask or color bitmap to draw.\n");
1713 return FALSE;
1714 }
1715
1716 if (pIcon->CURSORF_flags & CURSORF_ACON)
1717 {
1718 ACON* pAcon = (ACON*)pIcon;
1719 if (istepIfAniCur >= pAcon->cicur)
1720 {
1721 ERR("NtUserDrawIconEx: istepIfAniCur too big!\n");
1722 return FALSE;
1723 }
1724 pIcon = pAcon->aspcur[pAcon->aicur[istepIfAniCur]];
1725 }
1726
1727 hbmMask = pIcon->hbmMask;
1728 hbmColor = pIcon->hbmColor;
1729 hbmAlpha = pIcon->hbmAlpha;
1730
1731 /*
1732 * Get our objects.
1733 * Shared locks are enough, we are only reading those bitmaps
1734 */
1735 psurfMask = SURFACE_ShareLockSurface(hbmMask);
1736 if (psurfMask == NULL)
1737 {
1738 ERR("Unable to lock the mask surface.\n");
1739 return FALSE;
1740 }
1741
1742 /* Color bitmap is not mandatory */
1743 if (hbmColor == NULL)
1744 {
1745 /* But then the mask bitmap must have the information in it's bottom half */
1746 ASSERT(psurfMask->SurfObj.sizlBitmap.cy == 2*pIcon->cy);
1747 psurfColor = NULL;
1748 }
1749 else if ((psurfColor = SURFACE_ShareLockSurface(hbmColor)) == NULL)
1750 {
1751 ERR("Unable to lock the color bitmap.\n");
1752 SURFACE_ShareUnlockSurface(psurfMask);
1753 return FALSE;
1754 }
1755
1756 pdc = DC_LockDc(hDc);
1757 if (!pdc)
1758 {
1759 ERR("Could not lock the destination DC.\n");
1760 SURFACE_ShareUnlockSurface(psurfMask);
1761 if (psurfColor) SURFACE_ShareUnlockSurface(psurfColor);
1762 return FALSE;
1763 }
1764
1765 /* Fix width parameter, if needed */
1766 if (!cxWidth)
1767 {
1768 if (diFlags & DI_DEFAULTSIZE)
1769 cxWidth = is_icon(pIcon) ?
1771 else
1772 cxWidth = pIcon->cx;
1773 }
1774
1775 /* Fix height parameter, if needed */
1776 if (!cyHeight)
1777 {
1778 if (diFlags & DI_DEFAULTSIZE)
1779 cyHeight = is_icon(pIcon) ?
1781 else
1782 cyHeight = pIcon->cy;
1783 }
1784
1785 /* Calculate destination rectangle */
1786 RECTL_vSetRect(&rcDest, xLeft, yTop, xLeft + cxWidth, yTop + cyHeight);
1787 IntLPtoDP(pdc, (LPPOINT)&rcDest, 2);
1788 RECTL_vOffsetRect(&rcDest, pdc->ptlDCOrig.x, pdc->ptlDCOrig.y);
1789
1790 /* Prepare the underlying surface */
1791 DC_vPrepareDCsForBlit(pdc, &rcDest, NULL, NULL);
1792
1793 /* We now have our destination surface and rectangle */
1794 psurfDest = pdc->dclevel.pSurface;
1795
1796 if (psurfDest == NULL)
1797 {
1798 /* Empty DC */
1799 DC_vFinishBlit(pdc, NULL);
1800 DC_UnlockDc(pdc);
1801 SURFACE_ShareUnlockSurface(psurfMask);
1802 if (psurfColor) SURFACE_ShareUnlockSurface(psurfColor);
1803 return FALSE;
1804 }
1805
1806 /* Set source rect */
1807 RECTL_vSetRect(&rcSrc, 0, 0, pIcon->cx, pIcon->cy);
1808
1809 /* Should we render off-screen? */
1810 bOffScreen = hbrFlickerFreeDraw &&
1811 (GDI_HANDLE_GET_TYPE(hbrFlickerFreeDraw) == GDI_OBJECT_TYPE_BRUSH);
1812
1813 if (bOffScreen)
1814 {
1815 /* Yes: Allocate and paint the offscreen surface */
1816 EBRUSHOBJ eboFill;
1817 PBRUSH pbrush = BRUSH_ShareLockBrush(hbrFlickerFreeDraw);
1818
1819 TRACE("Performing off-screen rendering.\n");
1820
1821 if (!pbrush)
1822 {
1823 ERR("Failed to get brush object.\n");
1824 goto Cleanup;
1825 }
1826
1827#if 0 //We lock the hdc surface during the whole function it makes no sense to use an offscreen surface for "flicker free" drawing
1828 psurfOffScreen = SURFACE_AllocSurface(STYPE_BITMAP,
1829 cxWidth, cyHeight, psurfDest->SurfObj.iBitmapFormat,
1830 0, 0, NULL);
1831 if (!psurfOffScreen)
1832 {
1833 ERR("Failed to allocate the off-screen surface.\n");
1834 BRUSH_ShareUnlockBrush(pbrush);
1835 goto Cleanup;
1836 }
1837
1838 /* Paint the brush */
1839 EBRUSHOBJ_vInit(&eboFill, pbrush, psurfOffScreen, 0x00FFFFFF, 0, NULL);
1840 RECTL_vSetRect(&rcDest, 0, 0, cxWidth, cyHeight);
1841
1842 Ret = IntEngBitBlt(&psurfOffScreen->SurfObj,
1843 NULL,
1844 NULL,
1845 NULL,
1846 NULL,
1847 &rcDest,
1848 NULL,
1849 NULL,
1850 &eboFill.BrushObject,
1851 &pbrush->ptOrigin,
1852 ROP4_PATCOPY);
1853
1854 /* Clean up everything */
1855 EBRUSHOBJ_vCleanup(&eboFill);
1856 BRUSH_ShareUnlockBrush(pbrush);
1857
1858 if (!Ret)
1859 {
1860 ERR("Failed to paint the off-screen surface.\n");
1861 goto Cleanup;
1862 }
1863
1864 /* We now have our destination surface */
1865 psurfDest = psurfOffScreen;
1866#else
1867 pdcClipObj = (CLIPOBJ *)&pdc->co;
1868 /* Paint the brush */
1869 EBRUSHOBJ_vInit(&eboFill, pbrush, psurfDest, 0x00FFFFFF, 0, NULL);
1870
1871 Ret = IntEngBitBlt(&psurfDest->SurfObj,
1872 NULL,
1873 NULL,
1874 pdcClipObj,
1875 NULL,
1876 &rcDest,
1877 NULL,
1878 NULL,
1879 &eboFill.BrushObject,
1880 &pbrush->ptOrigin,
1881 ROP4_PATCOPY);
1882
1883 /* Clean up everything */
1884 EBRUSHOBJ_vCleanup(&eboFill);
1885 BRUSH_ShareUnlockBrush(pbrush);
1886
1887 if (!Ret)
1888 {
1889 ERR("Failed to paint the off-screen surface.\n");
1890 goto Cleanup;
1891 }
1892#endif
1893 }
1894 else
1895 {
1896 /* We directly draw to the DC */
1897 TRACE("Performing on screen rendering.\n");
1898 pdcClipObj = (CLIPOBJ *)&pdc->co;
1899 // psurfOffScreen = NULL;
1900 }
1901
1902 /* Now do the rendering */
1903 if (hbmAlpha && ((diFlags & DI_NORMAL) == DI_NORMAL))
1904 {
1905 BLENDOBJ blendobj = { {AC_SRC_OVER, 0, 255, AC_SRC_ALPHA } };
1906 PSURFACE psurf = NULL;
1907
1908 psurf = SURFACE_ShareLockSurface(hbmAlpha);
1909 if (!psurf)
1910 {
1911 ERR("SURFACE_LockSurface failed!\n");
1912 goto NoAlpha;
1913 }
1914
1915 /* Initialize color translation object */
1916 EXLATEOBJ_vInitialize(&exlo, psurf->ppal, psurfDest->ppal, 0xFFFFFFFF, 0xFFFFFFFF, 0);
1917
1918 /* Now do it */
1919 Ret = IntEngAlphaBlend(&psurfDest->SurfObj,
1920 &psurf->SurfObj,
1921 pdcClipObj,
1922 &exlo.xlo,
1923 &rcDest,
1924 &rcSrc,
1925 &blendobj);
1926
1927 EXLATEOBJ_vCleanup(&exlo);
1929 if (Ret) goto done;
1930 ERR("NtGdiAlphaBlend failed!\n");
1931 }
1932NoAlpha:
1933 if (diFlags & DI_MASK)
1934 {
1935 DWORD rop4 = (diFlags & DI_IMAGE) ? ROP4_SRCAND : ROP4_SRCCOPY;
1936
1937 EXLATEOBJ_vInitSrcMonoXlate(&exlo, psurfDest->ppal, 0x00FFFFFF, 0);
1938
1939 Ret = IntEngStretchBlt(&psurfDest->SurfObj,
1940 &psurfMask->SurfObj,
1941 NULL,
1942 pdcClipObj,
1943 &exlo.xlo,
1944 NULL,
1945 &rcDest,
1946 &rcSrc,
1947 NULL,
1948 NULL,
1949 NULL,
1950 rop4);
1951
1952 EXLATEOBJ_vCleanup(&exlo);
1953
1954 if (!Ret)
1955 {
1956 ERR("Failed to mask the bitmap data.\n");
1957 goto Cleanup;
1958 }
1959 }
1960
1961 if (diFlags & DI_IMAGE)
1962 {
1963 if (psurfColor)
1964 {
1965 DWORD rop4 = (diFlags & DI_MASK) ? ROP4_SRCINVERT : ROP4_SRCCOPY ;
1966
1967 EXLATEOBJ_vInitialize(&exlo, psurfColor->ppal, psurfDest->ppal, 0x00FFFFFF, 0x00FFFFFF, 0);
1968
1969 Ret = IntEngStretchBlt(&psurfDest->SurfObj,
1970 &psurfColor->SurfObj,
1971 NULL,
1972 pdcClipObj,
1973 &exlo.xlo,
1974 NULL,
1975 &rcDest,
1976 &rcSrc,
1977 NULL,
1978 NULL,
1979 NULL,
1980 rop4);
1981
1982 EXLATEOBJ_vCleanup(&exlo);
1983
1984 if (!Ret)
1985 {
1986 ERR("Failed to render the icon bitmap.\n");
1987 goto Cleanup;
1988 }
1989 }
1990 else
1991 {
1992 /* Mask bitmap holds the information in its bottom half */
1993 DWORD rop4 = (diFlags & DI_MASK) ? ROP4_SRCINVERT : ROP4_SRCCOPY;
1994 RECTL_vOffsetRect(&rcSrc, 0, pIcon->cy);
1995
1996 EXLATEOBJ_vInitSrcMonoXlate(&exlo, psurfDest->ppal, 0x00FFFFFF, 0);
1997
1998 Ret = IntEngStretchBlt(&psurfDest->SurfObj,
1999 &psurfMask->SurfObj,
2000 NULL,
2001 pdcClipObj,
2002 &exlo.xlo,
2003 NULL,
2004 &rcDest,
2005 &rcSrc,
2006 NULL,
2007 NULL,
2008 NULL,
2009 rop4);
2010
2011 EXLATEOBJ_vCleanup(&exlo);
2012
2013 if (!Ret)
2014 {
2015 ERR("Failed to render the icon bitmap.\n");
2016 goto Cleanup;
2017 }
2018 }
2019 }
2020
2021done:
2022#if 0
2023 /* We're done. Was it a double buffered draw ? */
2024 if (bOffScreen)
2025 {
2026 /* Yes. Draw it back to our DC */
2027 POINTL ptSrc = {0, 0};
2028
2029 /* Calculate destination rectangle */
2030 RECTL_vSetRect(&rcDest, xLeft, yTop, xLeft + cxWidth, yTop + cyHeight);
2031 IntLPtoDP(pdc, (LPPOINT)&rcDest, 2);
2032 RECTL_vOffsetRect(&rcDest, pdc->ptlDCOrig.x, pdc->ptlDCOrig.y);
2033
2034 /* Get the clip object */
2035 pdcClipObj = pdc->rosdc.CombinedClip;
2036
2037 /* We now have our destination surface and rectangle */
2038 psurfDest = pdc->dclevel.pSurface;
2039
2040 /* Color translation */
2041 EXLATEOBJ_vInitialize(&exlo, psurfOffScreen->ppal, psurfDest->ppal, 0x00FFFFFF, 0x00FFFFFF, 0);
2042
2043 /* Blt it! */
2044 Ret = IntEngBitBlt(&psurfDest->SurfObj,
2045 &psurfOffScreen->SurfObj,
2046 NULL,
2047 pdcClipObj,
2048 &exlo.xlo,
2049 &rcDest,
2050 &ptSrc,
2051 NULL,
2052 NULL,
2053 NULL,
2054 ROP4_SRCCOPY);
2055
2056 EXLATEOBJ_vCleanup(&exlo);
2057 }
2058#endif
2059Cleanup:
2060 if (pdc)
2061 {
2062 DC_vFinishBlit(pdc, NULL);
2063 DC_UnlockDc(pdc);
2064 }
2065
2066#if 0
2067 /* Delete off screen rendering surface */
2068 if (psurfOffScreen)
2069 GDIOBJ_vDeleteObject(&psurfOffScreen->BaseObject);
2070#endif
2071
2072 /* Unlock other surfaces */
2073 SURFACE_ShareUnlockSurface(psurfMask);
2074 if (psurfColor) SURFACE_ShareUnlockSurface(psurfColor);
2075
2076 return Ret;
2077}
2078
2079/*
2080 * @implemented
2081 */
2082BOOL
2085 HDC hdc,
2086 int xLeft,
2087 int yTop,
2088 HICON hIcon,
2089 int cxWidth,
2090 int cyHeight,
2091 UINT istepIfAniCur,
2092 HBRUSH hbrFlickerFreeDraw,
2093 UINT diFlags,
2094 BOOL bMetaHDC, // When TRUE, GDI functions need to be handled in User32!
2095 PVOID pDIXData)
2096{
2097 PCURICON_OBJECT pIcon;
2098 BOOL Ret;
2099
2100 TRACE("Enter NtUserDrawIconEx\n");
2102
2103 if (!(pIcon = UserGetCurIconObject(hIcon)))
2104 {
2105 ERR("UserGetCurIconObject(0x%p) failed!\n", hIcon);
2106 UserLeave();
2107 return FALSE;
2108 }
2109
2110 Ret = UserDrawIconEx(hdc,
2111 xLeft,
2112 yTop,
2113 pIcon,
2114 cxWidth,
2115 cyHeight,
2116 istepIfAniCur,
2117 hbrFlickerFreeDraw,
2118 diFlags);
2119
2120 UserDereferenceObject(pIcon);
2121
2122 UserLeave();
2123 return Ret;
2124}
2125
2126/*
2127 * @unimplemented
2128 */
2129HCURSOR
2130NTAPI
2132 HCURSOR hCursor,
2133 DWORD istep,
2134 INT* rate_jiffies,
2135 DWORD* num_steps)
2136{
2137 PCURICON_OBJECT CurIcon;
2138 HCURSOR ret;
2139 INT jiffies = 0;
2140 DWORD steps = 1;
2142
2143 TRACE("Enter NtUserGetCursorFrameInfo\n");
2145
2146 if (!(CurIcon = UserGetCurIconObject(hCursor)))
2147 {
2148 UserLeave();
2149 return NULL;
2150 }
2151
2152 ret = CurIcon->head.h;
2153
2154 if (CurIcon->CURSORF_flags & CURSORF_ACON)
2155 {
2156 PACON AniCurIcon = (PACON)CurIcon;
2157 if (istep >= AniCurIcon->cicur)
2158 {
2159 UserDereferenceObject(CurIcon);
2160 UserLeave();
2161 return NULL;
2162 }
2163 jiffies = AniCurIcon->ajifRate[istep];
2164 steps = AniCurIcon->cicur;
2165 ret = AniCurIcon->aspcur[AniCurIcon->aicur[istep]]->head.h;
2166 }
2167
2168 _SEH2_TRY
2169 {
2170 ProbeForWrite(rate_jiffies, sizeof(INT), 1);
2171 ProbeForWrite(num_steps, sizeof(DWORD), 1);
2172 *rate_jiffies = jiffies;
2173 *num_steps = steps;
2174 }
2176 {
2178 }
2179 _SEH2_END
2180
2181 if (!NT_SUCCESS(Status))
2182 {
2183 WARN("Status: 0x%08lx\n", Status);
2185 ret = NULL;
2186 }
2187
2188 UserDereferenceObject(CurIcon);
2189 UserLeave();
2190
2191 TRACE("Leaving NtUserGetCursorFrameInfo, ret = 0x%p\n", ret);
2192
2193 return ret;
2194}
2195
2196/*
2197 * @implemented
2198 */
2199BOOL
2202 HCURSOR hcur,
2203 DWORD id)
2204{
2205 PCURICON_OBJECT pcur, pcurOrig = NULL;
2206 int i;
2207 PPROCESSINFO ppi;
2208 BOOL Ret = FALSE;
2210
2212 {
2213 goto Exit;
2214 }
2215
2216 if (hcur)
2217 {
2218 pcur = UserGetCurIconObject(hcur);
2219 if (!pcur)
2220 {
2222 goto Exit;
2223 }
2224
2226
2227 for (i = 0 ; i < 16; i++)
2228 {
2229 if (gasyscur[i].type == id)
2230 {
2231 pcurOrig = gasyscur[i].handle;
2232
2233 if (pcurOrig) break;
2234
2235 if (ppi->W32PF_flags & W32PF_CREATEDWINORDC)
2236 {
2237 gasyscur[i].handle = pcur;
2239 pcur->head.ppi = NULL;
2241 Ret = TRUE;
2242 }
2243 break;
2244 }
2245 }
2246 if (pcurOrig)
2247 {
2248 FIXME("Need to copy cursor data or do something! pcurOrig %p new pcur %p\n",pcurOrig,pcur);
2249 }
2250 }
2251Exit:
2252 UserLeave();
2253 return Ret;
2254}
2255
2256/* EOF */
#define RETURN(x)
unsigned char BOOLEAN
LONG NTSTATUS
Definition: precomp.h:26
HBITMAP FASTCALL BITMAP_CopyBitmap(HBITMAP hBitmap)
Definition: bitmaps.c:714
BOOL NTAPI GreSetBitmapOwner(_In_ HBITMAP hbmp, _In_ ULONG ulOwner)
Definition: bitmaps.c:17
#define FIXME(fmt,...)
Definition: debug.h:111
#define WARN(fmt,...)
Definition: debug.h:112
#define ERR(fmt,...)
Definition: debug.h:110
#define DBG_DEFAULT_CHANNEL(ch)
Definition: debug.h:103
#define leave
Definition: btrfs_drv.h:138
struct @1611 Msg[]
static BOOLEAN IntLPtoDP(DC *pdc, PPOINTL ppt, UINT count)
Definition: coord.h:182
struct tagACON * PACON
struct _CURICON_OBJECT * PCURICON_OBJECT
#define CURSORF_USER_MASK
Definition: cursoricon.h:6
VOID FASTCALL DC_vPrepareDCsForBlit(PDC pdcDest, const RECT *rcDest, PDC pdcSrc, const RECT *rcSrc)
Definition: dclife.c:505
VOID FASTCALL DC_vFinishBlit(PDC pdc1, PDC pdc2)
Definition: dclife.c:614
FORCEINLINE VOID DC_UnlockDc(PDC pdc)
Definition: dc.h:238
FORCEINLINE PDC DC_LockDc(HDC hdc)
Definition: dc.h:220
#define ERROR_NOT_ENOUGH_MEMORY
Definition: dderror.h:7
WORD ATOM
Definition: dimm.idl:113
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
#define NT_SUCCESS(StatCode)
Definition: apphelp.c:32
#define APIENTRY
Definition: api.h:79
#define ERROR_INVALID_PARAMETER
Definition: compat.h:101
PSERVERINFO gpsi
Definition: imm.c:18
static void cleanup(void)
Definition: main.c:1335
static const WCHAR Cleanup[]
Definition: register.c:80
#define pt(x, y)
Definition: drawing.c:79
VOID NTAPI EBRUSHOBJ_vCleanup(EBRUSHOBJ *pebo)
Definition: engbrush.c:153
VOID NTAPI EBRUSHOBJ_vInit(EBRUSHOBJ *pebo, PBRUSH pbrush, PSURFACE psurf, COLORREF crBackgroundClr, COLORREF crForegroundClr, PPALETTE ppalDC)
Definition: engbrush.c:52
#define ExAllocatePoolWithTag(hernya, size, tag)
Definition: env_spec_w32.h:350
ULONG RtlCompareUnicodeString(PUNICODE_STRING s1, PUNICODE_STRING s2, BOOLEAN UpCase)
Definition: string_lib.cpp:31
#define PagedPool
Definition: env_spec_w32.h:308
VOID NTAPI ProbeForRead(IN CONST VOID *Address, IN SIZE_T Length, IN ULONG Alignment)
Definition: exintrin.c:102
VOID NTAPI ProbeForWrite(IN PVOID Address, IN SIZE_T Length, IN ULONG Alignment)
Definition: exintrin.c:143
#define BufLen
Definition: fatfs.h:167
#define _SEH2_END
Definition: filesup.c:22
#define _SEH2_TRY
Definition: filesup.c:19
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
#define BRUSH_ShareLockBrush(hBrush)
Definition: brush.h:117
#define BRUSH_ShareUnlockBrush(pBrush)
Definition: brush.h:118
#define GDI_OBJECT_TYPE_BRUSH
Definition: gdi.h:52
#define GDI_HANDLE_GET_TYPE(h)
Definition: gdi.h:31
Status
Definition: gdiplustypes.h:25
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
GLuint GLuint GLsizei GLenum type
Definition: gl.h:1545
GLint GLint GLint GLint GLint GLint y
Definition: gl.h:1548
GLbitfield flags
Definition: glext.h:7161
GLfloat param
Definition: glext.h:5796
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
Definition: glfuncs.h:248
#define EXCEPTION_EXECUTE_HANDLER
Definition: excpt.h:85
#define CURSORF_LRSHARED
Definition: ntuser.h:1196
#define UserHMGetHandle(obj)
Definition: ntuser.h:230
_Out_opt_ PICONINFO _Inout_opt_ PUNICODE_STRING _Inout_opt_ PUNICODE_STRING _Out_opt_ LPDWORD _In_ BOOL bInternal
Definition: ntuser.h:2421
struct _THREADINFO * GetW32ThreadInfo(VOID)
Definition: misc.c:801
#define CURSORF_CURRENT
Definition: ntuser.h:1202
_Out_opt_ PICONINFO IconInfo
Definition: ntuser.h:2417
#define CURSORF_LINKED
Definition: ntuser.h:1201
@ TYPE_CURSOR
Definition: ntuser.h:43
struct tagCURSORDATA CURSORDATA
#define CURSORF_GLOBAL
Definition: ntuser.h:1195
#define CURSORF_ACONFRAME
Definition: ntuser.h:1199
_Out_opt_ PICONINFO _Inout_opt_ PUNICODE_STRING _Inout_opt_ PUNICODE_STRING lpResName
Definition: ntuser.h:2419
_Out_opt_ PICONINFO _Inout_opt_ PUNICODE_STRING _Inout_opt_ PUNICODE_STRING _Out_opt_ LPDWORD pbpp
Definition: ntuser.h:2420
#define CURSORF_ACON
Definition: ntuser.h:1197
BOOL APIENTRY IntEngStretchBlt(SURFOBJ *DestObj, SURFOBJ *SourceObj, SURFOBJ *Mask, CLIPOBJ *ClipRegion, XLATEOBJ *ColorTranslation, COLORADJUSTMENT *pca, RECTL *DestRect, RECTL *SourceRect, POINTL *pMaskOrigin, BRUSHOBJ *Brush, POINTL *BrushOrigin, ULONG Mode)
#define MmCopyToCaller(x, y, z)
Definition: mmcopy.h:19
#define ASSERT(a)
Definition: mode.c:44
#define jiffies
Definition: module.h:1085
#define ExFreePoolWithTag(_P, _T)
Definition: module.h:1109
#define for
Definition: utility.h:88
#define AC_SRC_ALPHA
Definition: alphablend.c:9
HDC hdc
Definition: main.c:9
static HBITMAP
Definition: button.c:44
static HDC
Definition: imagelist.c:92
static HICON
Definition: imagelist.c:84
unsigned short RTL_ATOM
Definition: atom.c:42
static DWORD DWORD DWORD DWORD * steps
Definition: cursoricon.c:1638
static DWORD DWORD istep
Definition: cursoricon.c:1638
#define min(a, b)
Definition: monoChain.cc:55
#define _Out_opt_
Definition: ms_sal.h:346
#define _Success_(expr)
Definition: ms_sal.h:259
#define _Inout_
Definition: ms_sal.h:378
#define _Inout_opt_
Definition: ms_sal.h:379
#define _In_
Definition: ms_sal.h:308
#define _In_opt_
Definition: ms_sal.h:309
HICON hIcon
Definition: msconfig.c:44
VOID FASTCALL co_MsqInsertMouseMessage(MSG *Msg, DWORD flags, ULONG_PTR dwExtraInfo, BOOL Hook)
Definition: msgqueue.c:580
PCURICON_OBJECT FASTCALL UserSetCursor(PCURICON_OBJECT NewCursor, BOOL ForceChange)
Definition: msgqueue.c:93
unsigned int UINT
Definition: ndis.h:50
#define UserMode
Definition: asm.h:35
NTSYSAPI NTSTATUS NTAPI RtlAddAtomToAtomTable(_In_ PRTL_ATOM_TABLE AtomTable, _In_ PWSTR AtomName, _Out_ PRTL_ATOM Atom)
NTSYSAPI NTSTATUS NTAPI RtlLookupAtomInAtomTable(_In_ PRTL_ATOM_TABLE AtomTable, _In_ PWSTR AtomName, _Out_ PRTL_ATOM Atom)
NTSYSAPI NTSTATUS NTAPI RtlDeleteAtomFromAtomTable(_In_ PRTL_ATOM_TABLE AtomTable, _In_ RTL_ATOM Atom)
NTSYSAPI NTSTATUS NTAPI RtlQueryAtomInAtomTable(_In_ PRTL_ATOM_TABLE AtomTable, _In_ RTL_ATOM Atom, _Out_opt_ PULONG RefCount, _Out_opt_ PULONG PinCount, _Out_opt_z_bytecap_(*NameLength) PWSTR AtomName, _Inout_opt_ PULONG NameLength)
#define FASTCALL
Definition: nt_native.h:50
#define DWORD
Definition: nt_native.h:44
#define GDI_OBJ_HMGR_POWNED
Definition: ntgdihdl.h:117
#define GDI_OBJ_HMGR_PUBLIC
Definition: ntgdihdl.h:116
ULONG MmUserProbeAddress
Definition: init.c:50
PVOID NTAPI PsGetCurrentProcessWin32Process(VOID)
Definition: process.c:1183
BOOL FASTCALL CheckWinstaAttributeAccess(ACCESS_MASK DesiredAccess)
Definition: winsta.c:377
VOID FASTCALL UserLeave(VOID)
Definition: ntuser.c:251
VOID FASTCALL UserEnterShared(VOID)
Definition: ntuser.c:235
VOID FASTCALL UserEnterExclusive(VOID)
Definition: ntuser.c:242
#define TAG_STRING
Definition: oslist.h:22
#define RT_ICON
Definition: pedump.c:365
long LONG
Definition: pedump.c:60
#define INT
Definition: polytest.cpp:20
#define _SEH2_GetExceptionCode()
Definition: pseh2_64.h:159
#define _SEH2_EXCEPT(...)
Definition: pseh2_64.h:34
#define _SEH2_VOLATILE
Definition: pseh2_64.h:163
#define _SEH2_YIELD(__stmt)
Definition: pseh2_64.h:162
static __inline NTSTATUS ProbeAndCaptureUnicodeString(OUT PUNICODE_STRING Dest, IN KPROCESSOR_MODE CurrentMode, IN const UNICODE_STRING *UnsafeSrc)
Definition: probe.h:142
static __inline VOID ReleaseCapturedUnicodeString(IN PUNICODE_STRING CapturedString, IN KPROCESSOR_MODE CurrentMode)
Definition: probe.h:239
#define STATUS_SUCCESS
Definition: shellext.h:65
static void Exit(void)
Definition: sock.c:1330
#define TRACE(s)
Definition: solgame.cpp:4
#define __kernel_entry
Definition: specstrings.h:355
Definition: polytest.cpp:41
CLIPOBJ CombinedClip
Definition: polytest.cpp:42
Implementation of the Explorer desktop window.
Definition: desktop.h:52
long bottom
Definition: polytest.cpp:53
long right
Definition: polytest.cpp:53
long top
Definition: polytest.cpp:53
long left
Definition: polytest.cpp:53
PCURICON_OBJECT handle
Definition: cursoricon.h:99
Definition: types.h:101
struct _CURICON_OBJECT * pcurNext
Definition: cursoricon.h:12
HBITMAP hbmColor
Definition: cursoricon.h:20
HBITMAP hbmMask
Definition: cursoricon.h:19
UNICODE_STRING strName
Definition: cursoricon.h:13
USHORT atomModName
Definition: cursoricon.h:14
PROCMARKHEAD head
Definition: cursoricon.h:11
ULONG CURSORF_flags
Definition: cursoricon.h:16
HBITMAP hbmAlpha
Definition: cursoricon.h:21
BRUSHOBJ BrushObject
Definition: brush.h:71
XLATEOBJ xlo
Definition: xlateobj.h:21
DWORD yHotspot
Definition: winuser.h:3115
BOOL fIcon
Definition: winuser.h:3113
DWORD xHotspot
Definition: winuser.h:3114
HBITMAP hbmColor
Definition: winuser.h:3117
HBITMAP hbmMask
Definition: winuser.h:3116
struct _CURICON_OBJECT * pCursorCache
Definition: win32.h:272
struct _PROCESSINFO * ppi
Definition: ntuser.h:227
LONG cy
Definition: kdterminal.h:28
SURFOBJ SurfObj
Definition: surface.h:8
struct _PALETTE *const ppal
Definition: surface.h:11
SIZEL sizlBitmap
Definition: winddi.h:1209
ULONG iBitmapFormat
Definition: winddi.h:1215
PCURICON_OBJECT CurrentCursorObject
Definition: cursoricon.h:74
USHORT MaximumLength
Definition: env_spec_w32.h:370
Definition: ntuser.h:689
Definition: ps.c:97
UINT cpcur
Definition: cursoricon.h:37
UINT cicur
Definition: cursoricon.h:38
DWORD * aicur
Definition: cursoricon.h:40
PCURICON_OBJECT * aspcur
Definition: cursoricon.h:39
INT * ajifRate
Definition: cursoricon.h:41
DWORD * aicur
Definition: ntuser.h:1188
INT * ajifRate
Definition: ntuser.h:1189
ULONG CURSORF_flags
Definition: ntuser.h:1174
UINT cpcur
Definition: ntuser.h:1185
UINT cicur
Definition: ntuser.h:1186
struct tagCURSORDATA * aspcur
Definition: ntuser.h:1187
DWORD flags
Definition: winuser.h:3710
DWORD cbSize
Definition: winuser.h:3709
HCURSOR hCursor
Definition: winuser.h:3711
POINT ptScreenPos
Definition: winuser.h:3712
#define __WARNING_READ_OVERRUN
Definition: suppress.h:142
#define _PRAGMA_WARNING_SUPPRESS(x)
Definition: suppress.h:28
#define max(a, b)
Definition: svc.c:63
TW_UINT32 TW_UINT16 TW_UINT16 MSG
Definition: twain.h:1829
#define NTAPI
Definition: typedefs.h:36
uint32_t * LPDWORD
Definition: typedefs.h:59
int32_t INT
Definition: typedefs.h:58
#define RtlCopyMemory(Destination, Source, Length)
Definition: typedefs.h:263
#define RtlZeroMemory(Destination, Length)
Definition: typedefs.h:262
uint32_t ULONG_PTR
Definition: typedefs.h:65
int32_t * PLONG
Definition: typedefs.h:58
uint32_t ULONG
Definition: typedefs.h:59
#define CLEANUP
Definition: ntuser.h:5
#define DECLARE_RETURN(type)
Definition: ntuser.h:3
#define END_CLEANUP
Definition: ntuser.h:6
int ret
_Must_inspect_result_ _In_ WDFCOLLECTION _In_ WDFOBJECT Object
#define FORCEINLINE
Definition: wdftypes.h:67
#define W32PF_CREATEDWINORDC
Definition: win32.h:34
#define ROP4_SRCCOPY
Definition: dib.h:13
#define ROP4_PATCOPY
Definition: dib.h:15
#define ROP4_SRCINVERT
Definition: dib.h:9
#define ROP4_SRCAND
Definition: dib.h:10
BOOL APIENTRY IntEngAlphaBlend(_Inout_ SURFOBJ *psoDest, _In_ SURFOBJ *psoSource, _In_opt_ CLIPOBJ *pco, _In_opt_ XLATEOBJ *pxlo, _In_ RECTL *prclDest, _In_ RECTL *prclSrc, _In_ BLENDOBJ *pBlendObj)
Definition: alphablend.c:197
BOOL APIENTRY IntEngBitBlt(SURFOBJ *psoTrg, SURFOBJ *psoSrc, SURFOBJ *psoMask, CLIPOBJ *pco, XLATEOBJ *pxlo, RECTL *prclTrg, POINTL *pptlSrc, POINTL *pptlMask, BRUSHOBJ *pbo, POINTL *pptlBrush, ROP4 Rop4)
Definition: bitblt.c:656
VOID FASTCALL SetLastNtError(NTSTATUS Status)
Definition: error.c:37
PSURFACE NTAPI SURFACE_AllocSurface(_In_ USHORT iType, _In_ ULONG cx, _In_ ULONG cy, _In_ ULONG iFormat, _In_ ULONG fjBitmap, _In_opt_ ULONG cjWidth, _In_opt_ ULONG cjBufSize, _In_opt_ PVOID pvBits)
Definition: surface.c:116
#define SURFACE_ShareUnlockSurface(pBMObj)
Definition: surface.h:102
#define SURFACE_ShareLockSurface(hBMObj)
Definition: surface.h:91
BOOL NTAPI GreSetObjectOwner(HGDIOBJ hobj, ULONG ulOwner)
Definition: gdiobj.c:1255
BOOL NTAPI GreDeleteObject(HGDIOBJ hobj)
Definition: gdiobj.c:1158
VOID NTAPI GDIOBJ_vDeleteObject(POBJ pobj)
Definition: gdiobj.c:1111
FORCEINLINE VOID RECTL_vSetRect(_Out_ RECTL *prcl, _In_ LONG left, _In_ LONG top, _In_ LONG right, _In_ LONG bottom)
Definition: rect.h:5
FORCEINLINE VOID RECTL_vOffsetRect(_Inout_ RECTL *prcl, _In_ INT cx, _In_ INT cy)
Definition: rect.h:31
_Must_inspect_result_ NTSTATUS NTAPI ProbeAndCaptureUnicodeStringOrAtom(_Out_ _When_(return >=0, _At_(pustrOut->Buffer, _Post_ _Notnull_)) PUNICODE_STRING pustrOut, __in_data_source(USER_MODE) _In_ PUNICODE_STRING pustrUnsafe)
Definition: class.c:150
BOOL APIENTRY NtUserGetClipCursor(RECTL *lpRect)
Definition: cursoricon.c:996
VOID FreeCurIconObject(_In_ PVOID Object)
Definition: cursoricon.c:332
static VOID IntInsertCursorIntoList(_Inout_ PCURICON_OBJECT pcur)
Definition: cursoricon.c:80
BOOL APIENTRY NtUserDrawIconEx(HDC hdc, int xLeft, int yTop, HICON hIcon, int cxWidth, int cyHeight, UINT istepIfAniCur, HBRUSH hbrFlickerFreeDraw, UINT diFlags, BOOL bMetaHDC, PVOID pDIXData)
Definition: cursoricon.c:2084
HANDLE IntCreateCurIconHandle(BOOLEAN Animated)
Definition: cursoricon.c:281
BOOL APIENTRY UserSetCursorIconData(_In_ HCURSOR hcursor, _In_opt_ PUNICODE_STRING pustrModule, _In_opt_ PUNICODE_STRING pustrRsrc, _In_ PCURSORDATA pcursordata)
Definition: cursoricon.c:1419
static BOOL IntSetCursorData(_Inout_ PCURICON_OBJECT pcur, _In_opt_ PUNICODE_STRING pustrName, _In_ ATOM atomModName, _In_ const CURSORDATA *pcursordata)
Definition: cursoricon.c:1130
SYSTEMCURICO gasyscur[]
Definition: cursoricon.c:32
BOOL APIENTRY NtUserGetIconSize(HANDLE hCurIcon, UINT istepIfAniCur, PLONG plcx, PLONG plcy)
Definition: cursoricon.c:586
HICON NTAPI NtUserFindExistingCursorIcon(_In_ PUNICODE_STRING pustrModule, _In_ PUNICODE_STRING pustrRsrc, _In_ FINDEXISTINGCURICONPARAM *param)
Definition: cursoricon.c:861
BOOL APIENTRY NtUserSetCursorContents(HANDLE hCurIcon, PICONINFO UnsafeIconInfo)
Definition: cursoricon.c:1119
BOOL InitCursorImpl(VOID)
Definition: cursoricon.c:64
BOOL APIENTRY NtUserClipCursor(RECTL *prcl)
Definition: cursoricon.c:753
BOOL UserSetCursorPos(INT x, INT y, DWORD flags, ULONG_PTR dwExtraInfo, BOOL Hook)
Definition: cursoricon.c:238
BOOL APIENTRY NtUserDestroyCursor(_In_ HANDLE hCurIcon, _In_ BOOL bForce)
Definition: cursoricon.c:793
__kernel_entry BOOL APIENTRY NtUserSetCursorIconData(_In_ HCURSOR hcursor, _In_opt_ PUNICODE_STRING pustrModule, _In_opt_ PUNICODE_STRING pustrRsrc, _In_ const CURSORDATA *pCursorData)
Definition: cursoricon.c:1510
VOID IntLoadSystenIcons(HICON hcur, DWORD id)
Definition: cursoricon.c:137
PCURICON_OBJECT IntSystemSetCursor(PCURICON_OBJECT pcurNew)
Definition: cursoricon.c:230
PSYSTEM_CURSORINFO IntGetSysCursorInfo(VOID)
Definition: cursoricon.c:187
BOOL APIENTRY NtUserSetSystemCursor(HCURSOR hcur, DWORD id)
Definition: cursoricon.c:2201
BOOL APIENTRY NtUserGetCursorInfo(PCURSORINFO pci)
Definition: cursoricon.c:645
FORCEINLINE BOOL is_icon(PCURICON_OBJECT object)
Definition: cursoricon.c:194
PCURICON_OBJECT FASTCALL UserGetCurIconObject(HCURSOR hCurIcon)
Definition: cursoricon.c:200
BOOL APIENTRY UserClipCursor(RECTL *prcl)
Definition: cursoricon.c:700
BOOL UserDrawIconEx(HDC hDc, INT xLeft, INT yTop, PCURICON_OBJECT pIcon, INT cxWidth, INT cyHeight, UINT istepIfAniCur, HBRUSH hbrFlickerFreeDraw, UINT diFlags)
Definition: cursoricon.c:1689
HCURSOR APIENTRY NtUserSetCursor(HCURSOR hCursor)
Definition: cursoricon.c:1049
static BOOL IntSetAconData(_Inout_ PACON pacon, _In_opt_ PUNICODE_STRING pustrName, _In_ ATOM atomModName, _In_ const CURSORDATA *pcursordata)
Definition: cursoricon.c:1238
VOID FASTCALL IntCleanupCurIconCache(PPROCESSINFO Win32Process)
Definition: cursoricon.c:391
SYSTEM_CURSORINFO gSysCursorInfo
Definition: cursoricon.c:25
PCURICON_OBJECT gcurFirst
Definition: cursoricon.c:27
HCURSOR NTAPI NtUserGetCursorFrameInfo(HCURSOR hCursor, DWORD istep, INT *rate_jiffies, DWORD *num_steps)
Definition: cursoricon.c:2131
SYSTEMCURICO gasysico[]
Definition: cursoricon.c:54
BOOLEAN IntDestroyCurIconObject(_In_ PVOID Object)
Definition: cursoricon.c:313
static VOID IntRemoveCursorFromList(_Inout_ PCURICON_OBJECT pcur)
Definition: cursoricon.c:101
PWND FASTCALL UserGetDesktopWindow(VOID)
Definition: desktop.c:1386
WORD FASTCALL UserGetMouseButtonsState(VOID)
Definition: mouse.c:22
LONG NTAPI UserGetSystemMetrics(ULONG Index)
Definition: metric.c:208
BOOL FASTCALL UserDereferenceObject(PVOID Object)
Definition: object.c:644
PVOID FASTCALL UserReferenceObjectByHandle(HANDLE handle, HANDLE_TYPE type)
Definition: object.c:741
BOOL FASTCALL UserDeleteObject(HANDLE h, HANDLE_TYPE type)
Definition: object.c:717
PUSER_HANDLE_TABLE gHandleTable
Definition: object.c:13
BOOL FASTCALL UserObjectInDestroy(HANDLE h)
Definition: object.c:703
void FreeProcMarkObject(_In_ PVOID Object)
Definition: object.c:175
PVOID FASTCALL UserCreateObject(PUSER_HANDLE_TABLE ht, PDESKTOP pDesktop, PTHREADINFO pti, HANDLE *h, HANDLE_TYPE type, ULONG size)
Definition: object.c:568
PVOID UserGetObjectNoErr(PUSER_HANDLE_TABLE ht, HANDLE handle, HANDLE_TYPE type)
Definition: object.c:481
VOID FASTCALL UserReferenceObject(PVOID obj)
Definition: object.c:731
PRTL_ATOM_TABLE gAtomTable
Definition: session.c:13
#define USERTAG_CURSOR
Definition: tags.h:209
#define STYPE_BITMAP
Definition: winddi.h:1175
_In_opt_ SURFOBJ _In_opt_ SURFOBJ _In_ CLIPOBJ _In_opt_ XLATEOBJ _In_ RECTL _In_opt_ POINTL _In_opt_ POINTL _In_opt_ BRUSHOBJ _In_opt_ POINTL _In_ ROP4 rop4
Definition: winddi.h:3442
_In_ ULONG _In_ CLIPOBJ _In_ RECTL * prcl
Definition: winddi.h:3531
ENGAPI VOID APIENTRY EngSetLastError(_In_ ULONG iError)
Definition: error.c:28
_In_ ULONG cjSize
Definition: winddi.h:3634
int * PINT
Definition: windef.h:177
HICON HCURSOR
Definition: windef.h:299
#define ERROR_INVALID_CURSOR_HANDLE
Definition: winerror.h:883
#define AC_SRC_OVER
Definition: wingdi.h:1369
#define DI_NORMAL
Definition: wingdi.h:72
#define DI_IMAGE
Definition: wingdi.h:70
#define DI_MASK
Definition: wingdi.h:71
#define DI_DEFAULTSIZE
Definition: wingdi.h:69
#define OCR_UP
Definition: winuser.h:1140
#define OIC_WINLOGO
Definition: winuser.h:1157
#define MAKELPARAM(l, h)
Definition: winuser.h:3998
#define OCR_WAIT
Definition: winuser.h:1138
#define SM_CYSCREEN
Definition: winuser.h:954
#define OIC_SAMPLE
Definition: winuser.h:1152
#define OIC_NOTE
Definition: winuser.h:1156
#define OCR_SIZENWSE
Definition: winuser.h:1143
#define IS_INTRESOURCE(i)
Definition: winuser.h:580
#define OCR_SIZE
Definition: winuser.h:1141
#define OIC_QUES
Definition: winuser.h:1154
#define CURSOR_SHOWING
Definition: winuser.h:2648
#define WM_MOUSEMOVE
Definition: winuser.h:1765
#define OIC_BANG
Definition: winuser.h:1155
#define OCR_HELP
Definition: winuser.h:1151
#define WINSTA_READATTRIBUTES
Definition: winuser.h:414
#define OCR_ICON
Definition: winuser.h:1142
#define OCR_APPSTARTING
Definition: winuser.h:1150
#define OCR_NO
Definition: winuser.h:1148
#define SM_CYICON
Definition: winuser.h:967
#define OCR_SIZENESW
Definition: winuser.h:1144
#define OCR_SIZENS
Definition: winuser.h:1146
#define OCR_HAND
Definition: winuser.h:1149
#define OCR_CROSS
Definition: winuser.h:1139
#define OCR_SIZEWE
Definition: winuser.h:1145
#define SM_CXSCREEN
Definition: winuser.h:953
#define WINSTA_WRITEATTRIBUTES
Definition: winuser.h:416
#define SM_CYCURSOR
Definition: winuser.h:969
#define SM_CXICON
Definition: winuser.h:966
#define OCR_IBEAM
Definition: winuser.h:1137
#define MAKEINTRESOURCE
Definition: winuser.h:591
#define OCR_SIZEALL
Definition: winuser.h:1147
#define OCR_NORMAL
Definition: winuser.h:1136
#define OIC_HAND
Definition: winuser.h:1153
#define SM_CXCURSOR
Definition: winuser.h:968
#define NT_ASSERT
Definition: rtlfuncs.h:3310
#define NT_VERIFY(exp)
Definition: rtlfuncs.h:3287
VOID NTAPI EXLATEOBJ_vInitialize(_Out_ PEXLATEOBJ pexlo, _In_opt_ PALETTE *ppalSrc, _In_opt_ PALETTE *ppalDst, _In_ COLORREF crSrcBackColor, _In_ COLORREF crDstBackColor, _In_ COLORREF crDstForeColor)
Definition: xlateobj.c:358
VOID NTAPI EXLATEOBJ_vCleanup(_Inout_ PEXLATEOBJ pexlo)
Definition: xlateobj.c:649
VOID NTAPI EXLATEOBJ_vInitSrcMonoXlate(PEXLATEOBJ pexlo, PPALETTE ppalDst, COLORREF crBackgroundClr, COLORREF crForegroundClr)
Definition: xlateobj.c:632
__wchar_t WCHAR
Definition: xmlstorage.h:180