mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 21:06:17 +00:00
[ROSTESTS] Fix 64bit issues (#1261)
This commit is contained in:
parent
efe4605177
commit
bb9a5f6046
23 changed files with 101 additions and 81 deletions
|
@ -120,7 +120,7 @@ void test_CShellMenu_params()
|
|||
hResult = shellMenu->SetMenu(hmenu, NULL, 0);
|
||||
test_S_OK(hResult, "SetMenu failed");
|
||||
|
||||
hwndToolbar = (HWND)0xdeadbeef;
|
||||
hwndToolbar = (HWND)UlongToPtr(0xdeadbeef);
|
||||
hResult = dockingMenu->GetWindow(&hwndToolbar);
|
||||
test_S_OK(hResult, "GetWindow failed");
|
||||
ok (hwndToolbar == NULL, "Expected NULL window\n");
|
||||
|
@ -144,7 +144,7 @@ void test_CShellMenu_params()
|
|||
hResult = shellMenu->SetShellFolder(NULL, NULL, 0, 0);
|
||||
test_HRES(hResult, E_INVALIDARG, "SetShellFolder should fail");
|
||||
|
||||
hwndToolbar = (HWND)0xdeadbeef;
|
||||
hwndToolbar = (HWND)UlongToHandle(0xdeadbeef);
|
||||
hResult = dockingMenu->GetWindow(&hwndToolbar);
|
||||
test_S_OK(hResult, "GetWindow failed");
|
||||
ok (hwndToolbar == NULL, "Expected NULL window\n");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue