mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +00:00
[USER32_APITEST]
- More thorough test for what really happens after the "destruction" of a shared cursor. svn path=/trunk/; revision=57648
This commit is contained in:
parent
a74a3edcc7
commit
f40fbb64a6
1 changed files with 4 additions and 0 deletions
|
@ -41,7 +41,11 @@ START_TEST(DestroyCursorIcon)
|
|||
ok(DestroyCursor(hcursor), "\n");
|
||||
|
||||
/* In fact, it's still there */
|
||||
ZeroMemory(&iconinfo, sizeof(iconinfo));
|
||||
ok(GetIconInfo(hcursor, &iconinfo), "\n");
|
||||
ok(iconinfo.hbmMask != NULL, "\n");
|
||||
ok(iconinfo.hbmColor != NULL, "\n");
|
||||
ok(!iconinfo.fIcon, "\n");
|
||||
|
||||
/* clean up */
|
||||
DeleteObject(iconinfo.hbmMask);
|
||||
|
|
Loading…
Reference in a new issue