Commit 1c75ab09 authored by Alexandre Julliard's avatar Alexandre Julliard

oleaut32/tests: Fix the tmarshal test on 64-bit.

parent 538c7067
...@@ -1356,7 +1356,7 @@ static void test_DispCallFunc(void) ...@@ -1356,7 +1356,7 @@ static void test_DispCallFunc(void)
V_VT(&varref) = VT_ERROR; V_VT(&varref) = VT_ERROR;
V_ERROR(&varref) = DISP_E_PARAMNOTFOUND; V_ERROR(&varref) = DISP_E_PARAMNOTFOUND;
VariantInit(&varresult); VariantInit(&varresult);
hr = DispCallFunc(pWidget, 36, CC_STDCALL, VT_UI4, 4, rgvt, rgpvarg, &varresult); hr = DispCallFunc(pWidget, 9*sizeof(void*), CC_STDCALL, VT_UI4, 4, rgvt, rgpvarg, &varresult);
ok_ole_success(hr, DispCallFunc); ok_ole_success(hr, DispCallFunc);
VariantClear(&varresult); VariantClear(&varresult);
VariantClear(&vararg[1]); VariantClear(&vararg[1]);
...@@ -1405,7 +1405,8 @@ START_TEST(tmarshal) ...@@ -1405,7 +1405,8 @@ START_TEST(tmarshal)
test_DispCallFunc(); test_DispCallFunc();
test_StaticWidget(); test_StaticWidget();
hr = UnRegisterTypeLib(&LIBID_TestTypelib, 1, 0, LOCALE_NEUTRAL, 1); hr = UnRegisterTypeLib(&LIBID_TestTypelib, 1, 0, LOCALE_NEUTRAL,
sizeof(void*) == 8 ? SYS_WIN64 : SYS_WIN32);
ok_ole_success(hr, UnRegisterTypeLib); ok_ole_success(hr, UnRegisterTypeLib);
CoUninitialize(); CoUninitialize();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment