uxtheme/tests: Fix Win64 printf format warnings.
This commit is contained in:
parent
80affb3c2d
commit
f2a294f3d2
|
@ -86,7 +86,7 @@ static void test_IsThemed(void)
|
||||||
trace("Theming is %s\n", (bThemeActive) ? "active" : "inactive");
|
trace("Theming is %s\n", (bThemeActive) ? "active" : "inactive");
|
||||||
todo_wine
|
todo_wine
|
||||||
ok( GetLastError() == ERROR_SUCCESS,
|
ok( GetLastError() == ERROR_SUCCESS,
|
||||||
"Expected ERROR_SUCCESS, got 0x%08lx\n",
|
"Expected ERROR_SUCCESS, got 0x%08x\n",
|
||||||
GetLastError());
|
GetLastError());
|
||||||
|
|
||||||
/* This test is not themed */
|
/* This test is not themed */
|
||||||
|
@ -102,14 +102,14 @@ static void test_IsThemed(void)
|
||||||
|
|
||||||
todo_wine
|
todo_wine
|
||||||
ok( GetLastError() == ERROR_SUCCESS,
|
ok( GetLastError() == ERROR_SUCCESS,
|
||||||
"Expected ERROR_SUCCESS, got 0x%08lx\n",
|
"Expected ERROR_SUCCESS, got 0x%08x\n",
|
||||||
GetLastError());
|
GetLastError());
|
||||||
|
|
||||||
SetLastError(0xdeadbeef);
|
SetLastError(0xdeadbeef);
|
||||||
bTPDefined = pIsThemePartDefined(NULL, 0 , 0);
|
bTPDefined = pIsThemePartDefined(NULL, 0 , 0);
|
||||||
ok( bTPDefined == FALSE, "Expected FALSE\n");
|
ok( bTPDefined == FALSE, "Expected FALSE\n");
|
||||||
ok( GetLastError() == E_HANDLE,
|
ok( GetLastError() == E_HANDLE,
|
||||||
"Expected E_HANDLE, got 0x%08lx\n",
|
"Expected E_HANDLE, got 0x%08x\n",
|
||||||
GetLastError());
|
GetLastError());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -124,7 +124,7 @@ static void test_GetWindowTheme(void)
|
||||||
ok( hTheme == NULL, "Expected a NULL return, got %p\n", hTheme);
|
ok( hTheme == NULL, "Expected a NULL return, got %p\n", hTheme);
|
||||||
todo_wine
|
todo_wine
|
||||||
ok( GetLastError() == E_HANDLE,
|
ok( GetLastError() == E_HANDLE,
|
||||||
"Expected E_HANDLE, got 0x%08lx\n",
|
"Expected E_HANDLE, got 0x%08x\n",
|
||||||
GetLastError());
|
GetLastError());
|
||||||
|
|
||||||
/* Only do the bare minumum to get a valid hwnd */
|
/* Only do the bare minumum to get a valid hwnd */
|
||||||
|
@ -135,12 +135,12 @@ static void test_GetWindowTheme(void)
|
||||||
hTheme = pGetWindowTheme(hWnd);
|
hTheme = pGetWindowTheme(hWnd);
|
||||||
ok( hTheme == NULL, "Expected a NULL return, got %p\n", hTheme);
|
ok( hTheme == NULL, "Expected a NULL return, got %p\n", hTheme);
|
||||||
ok( GetLastError() == 0xdeadbeef,
|
ok( GetLastError() == 0xdeadbeef,
|
||||||
"Expected 0xdeadbeef, got 0x%08lx\n",
|
"Expected 0xdeadbeef, got 0x%08x\n",
|
||||||
GetLastError());
|
GetLastError());
|
||||||
|
|
||||||
bDestroyed = DestroyWindow(hWnd);
|
bDestroyed = DestroyWindow(hWnd);
|
||||||
if (!bDestroyed)
|
if (!bDestroyed)
|
||||||
trace("Window %p couldn't be destroyed : 0x%08lx\n",
|
trace("Window %p couldn't be destroyed : 0x%08x\n",
|
||||||
hWnd, GetLastError());
|
hWnd, GetLastError());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -154,9 +154,9 @@ static void test_SetWindowTheme(void)
|
||||||
hRes = pSetWindowTheme(NULL, NULL, NULL);
|
hRes = pSetWindowTheme(NULL, NULL, NULL);
|
||||||
todo_wine
|
todo_wine
|
||||||
{
|
{
|
||||||
ok( hRes == E_HANDLE, "Expected E_HANDLE, got 0x%08lx\n", hRes);
|
ok( hRes == E_HANDLE, "Expected E_HANDLE, got 0x%08x\n", hRes);
|
||||||
ok( GetLastError() == 0xdeadbeef,
|
ok( GetLastError() == 0xdeadbeef,
|
||||||
"Expected 0xdeadbeef, got 0x%08lx\n",
|
"Expected 0xdeadbeef, got 0x%08x\n",
|
||||||
GetLastError());
|
GetLastError());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -166,14 +166,14 @@ static void test_SetWindowTheme(void)
|
||||||
|
|
||||||
SetLastError(0xdeadbeef);
|
SetLastError(0xdeadbeef);
|
||||||
hRes = pSetWindowTheme(hWnd, NULL, NULL);
|
hRes = pSetWindowTheme(hWnd, NULL, NULL);
|
||||||
ok( hRes == S_OK, "Expected S_OK, got 0x%08lx\n", hRes);
|
ok( hRes == S_OK, "Expected S_OK, got 0x%08x\n", hRes);
|
||||||
ok( GetLastError() == 0xdeadbeef,
|
ok( GetLastError() == 0xdeadbeef,
|
||||||
"Expected 0xdeadbeef, got 0x%08lx\n",
|
"Expected 0xdeadbeef, got 0x%08x\n",
|
||||||
GetLastError());
|
GetLastError());
|
||||||
|
|
||||||
bDestroyed = DestroyWindow(hWnd);
|
bDestroyed = DestroyWindow(hWnd);
|
||||||
if (!bDestroyed)
|
if (!bDestroyed)
|
||||||
trace("Window %p couldn't be destroyed : 0x%08lx\n",
|
trace("Window %p couldn't be destroyed : 0x%08x\n",
|
||||||
hWnd, GetLastError());
|
hWnd, GetLastError());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -199,7 +199,7 @@ static void test_OpenThemeData(void)
|
||||||
ok( hTheme == NULL, "Expected a NULL return, got %p\n", hTheme);
|
ok( hTheme == NULL, "Expected a NULL return, got %p\n", hTheme);
|
||||||
todo_wine
|
todo_wine
|
||||||
ok( GetLastError() == E_POINTER,
|
ok( GetLastError() == E_POINTER,
|
||||||
"Expected GLE() to be E_POINTER, got 0x%08lx\n",
|
"Expected GLE() to be E_POINTER, got 0x%08x\n",
|
||||||
GetLastError());
|
GetLastError());
|
||||||
|
|
||||||
/* A NULL hWnd and an invalid classlist */
|
/* A NULL hWnd and an invalid classlist */
|
||||||
|
@ -208,7 +208,7 @@ static void test_OpenThemeData(void)
|
||||||
ok( hTheme == NULL, "Expected a NULL return, got %p\n", hTheme);
|
ok( hTheme == NULL, "Expected a NULL return, got %p\n", hTheme);
|
||||||
todo_wine
|
todo_wine
|
||||||
ok( GetLastError() == E_PROP_ID_UNSUPPORTED,
|
ok( GetLastError() == E_PROP_ID_UNSUPPORTED,
|
||||||
"Expected GLE() to be E_PROP_ID_UNSUPPORTED, got 0x%08lx\n",
|
"Expected GLE() to be E_PROP_ID_UNSUPPORTED, got 0x%08x\n",
|
||||||
GetLastError());
|
GetLastError());
|
||||||
|
|
||||||
SetLastError(0xdeadbeef);
|
SetLastError(0xdeadbeef);
|
||||||
|
@ -218,7 +218,7 @@ static void test_OpenThemeData(void)
|
||||||
ok( hTheme != NULL, "got NULL, expected a HTHEME handle\n");
|
ok( hTheme != NULL, "got NULL, expected a HTHEME handle\n");
|
||||||
todo_wine
|
todo_wine
|
||||||
ok( GetLastError() == ERROR_SUCCESS,
|
ok( GetLastError() == ERROR_SUCCESS,
|
||||||
"Expected ERROR_SUCCESS, got 0x%08lx\n",
|
"Expected ERROR_SUCCESS, got 0x%08x\n",
|
||||||
GetLastError());
|
GetLastError());
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -226,7 +226,7 @@ static void test_OpenThemeData(void)
|
||||||
ok( hTheme == NULL, "Expected a NULL return, got %p\n", hTheme);
|
ok( hTheme == NULL, "Expected a NULL return, got %p\n", hTheme);
|
||||||
todo_wine
|
todo_wine
|
||||||
ok( GetLastError() == E_PROP_ID_UNSUPPORTED,
|
ok( GetLastError() == E_PROP_ID_UNSUPPORTED,
|
||||||
"Expected GLE() to be E_PROP_ID_UNSUPPORTED, got 0x%08lx\n",
|
"Expected GLE() to be E_PROP_ID_UNSUPPORTED, got 0x%08x\n",
|
||||||
GetLastError());
|
GetLastError());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -239,7 +239,7 @@ static void test_OpenThemeData(void)
|
||||||
ok( hTheme == NULL, "Expected a NULL return, got %p\n", hTheme);
|
ok( hTheme == NULL, "Expected a NULL return, got %p\n", hTheme);
|
||||||
todo_wine
|
todo_wine
|
||||||
ok( GetLastError() == E_POINTER,
|
ok( GetLastError() == E_POINTER,
|
||||||
"Expected GLE() to be E_POINTER, got 0x%08lx\n",
|
"Expected GLE() to be E_POINTER, got 0x%08x\n",
|
||||||
GetLastError());
|
GetLastError());
|
||||||
|
|
||||||
SetLastError(0xdeadbeef);
|
SetLastError(0xdeadbeef);
|
||||||
|
@ -247,7 +247,7 @@ static void test_OpenThemeData(void)
|
||||||
ok( hTheme == NULL, "Expected a NULL return, got %p\n", hTheme);
|
ok( hTheme == NULL, "Expected a NULL return, got %p\n", hTheme);
|
||||||
todo_wine
|
todo_wine
|
||||||
ok( GetLastError() == E_PROP_ID_UNSUPPORTED,
|
ok( GetLastError() == E_PROP_ID_UNSUPPORTED,
|
||||||
"Expected GLE() to be E_PROP_ID_UNSUPPORTED, got 0x%08lx\n",
|
"Expected GLE() to be E_PROP_ID_UNSUPPORTED, got 0x%08x\n",
|
||||||
GetLastError());
|
GetLastError());
|
||||||
|
|
||||||
if (!bThemeActive)
|
if (!bThemeActive)
|
||||||
|
@ -257,7 +257,7 @@ static void test_OpenThemeData(void)
|
||||||
ok( hTheme == NULL, "Expected a NULL return, got %p\n", hTheme);
|
ok( hTheme == NULL, "Expected a NULL return, got %p\n", hTheme);
|
||||||
todo_wine
|
todo_wine
|
||||||
ok( GetLastError() == E_PROP_ID_UNSUPPORTED,
|
ok( GetLastError() == E_PROP_ID_UNSUPPORTED,
|
||||||
"Expected GLE() to be E_PROP_ID_UNSUPPORTED, got 0x%08lx\n",
|
"Expected GLE() to be E_PROP_ID_UNSUPPORTED, got 0x%08x\n",
|
||||||
GetLastError());
|
GetLastError());
|
||||||
trace("No active theme, skipping rest of OpenThemeData tests\n");
|
trace("No active theme, skipping rest of OpenThemeData tests\n");
|
||||||
return;
|
return;
|
||||||
|
@ -270,7 +270,7 @@ static void test_OpenThemeData(void)
|
||||||
ok( hTheme != NULL, "got NULL, expected a HTHEME handle\n");
|
ok( hTheme != NULL, "got NULL, expected a HTHEME handle\n");
|
||||||
todo_wine
|
todo_wine
|
||||||
ok( GetLastError() == ERROR_SUCCESS,
|
ok( GetLastError() == ERROR_SUCCESS,
|
||||||
"Expected ERROR_SUCCESS, got 0x%08lx\n",
|
"Expected ERROR_SUCCESS, got 0x%08x\n",
|
||||||
GetLastError());
|
GetLastError());
|
||||||
|
|
||||||
/* Test with bUtToN instead of Button */
|
/* Test with bUtToN instead of Button */
|
||||||
|
@ -279,7 +279,7 @@ static void test_OpenThemeData(void)
|
||||||
ok( hTheme != NULL, "got NULL, expected a HTHEME handle\n");
|
ok( hTheme != NULL, "got NULL, expected a HTHEME handle\n");
|
||||||
todo_wine
|
todo_wine
|
||||||
ok( GetLastError() == ERROR_SUCCESS,
|
ok( GetLastError() == ERROR_SUCCESS,
|
||||||
"Expected ERROR_SUCCESS, got 0x%08lx\n",
|
"Expected ERROR_SUCCESS, got 0x%08x\n",
|
||||||
GetLastError());
|
GetLastError());
|
||||||
|
|
||||||
SetLastError(0xdeadbeef);
|
SetLastError(0xdeadbeef);
|
||||||
|
@ -287,7 +287,7 @@ static void test_OpenThemeData(void)
|
||||||
ok( hTheme != NULL, "got NULL, expected a HTHEME handle\n");
|
ok( hTheme != NULL, "got NULL, expected a HTHEME handle\n");
|
||||||
todo_wine
|
todo_wine
|
||||||
ok( GetLastError() == ERROR_SUCCESS,
|
ok( GetLastError() == ERROR_SUCCESS,
|
||||||
"Expected ERROR_SUCCESS, got 0x%08lx\n",
|
"Expected ERROR_SUCCESS, got 0x%08x\n",
|
||||||
GetLastError());
|
GetLastError());
|
||||||
|
|
||||||
/* GetWindowTheme should return the last handle opened by OpenThemeData */
|
/* GetWindowTheme should return the last handle opened by OpenThemeData */
|
||||||
|
@ -296,22 +296,22 @@ static void test_OpenThemeData(void)
|
||||||
ok( hTheme == hTheme2, "Expected the same HTHEME handle (%p<->%p)\n",
|
ok( hTheme == hTheme2, "Expected the same HTHEME handle (%p<->%p)\n",
|
||||||
hTheme, hTheme2);
|
hTheme, hTheme2);
|
||||||
ok( GetLastError() == 0xdeadbeef,
|
ok( GetLastError() == 0xdeadbeef,
|
||||||
"Expected 0xdeadbeef, got 0x%08lx\n",
|
"Expected 0xdeadbeef, got 0x%08x\n",
|
||||||
GetLastError());
|
GetLastError());
|
||||||
|
|
||||||
SetLastError(0xdeadbeef);
|
SetLastError(0xdeadbeef);
|
||||||
hRes = pCloseThemeData(hTheme);
|
hRes = pCloseThemeData(hTheme);
|
||||||
ok( hRes == S_OK, "Expected S_OK, got 0x%08lx\n", hRes);
|
ok( hRes == S_OK, "Expected S_OK, got 0x%08x\n", hRes);
|
||||||
ok( GetLastError() == 0xdeadbeef,
|
ok( GetLastError() == 0xdeadbeef,
|
||||||
"Expected 0xdeadbeef, got 0x%08lx\n",
|
"Expected 0xdeadbeef, got 0x%08x\n",
|
||||||
GetLastError());
|
GetLastError());
|
||||||
|
|
||||||
/* Close a second time */
|
/* Close a second time */
|
||||||
SetLastError(0xdeadbeef);
|
SetLastError(0xdeadbeef);
|
||||||
hRes = pCloseThemeData(hTheme);
|
hRes = pCloseThemeData(hTheme);
|
||||||
ok( hRes == S_OK, "Expected S_OK, got 0x%08lx\n", hRes);
|
ok( hRes == S_OK, "Expected S_OK, got 0x%08x\n", hRes);
|
||||||
ok( GetLastError() == 0xdeadbeef,
|
ok( GetLastError() == 0xdeadbeef,
|
||||||
"Expected 0xdeadbeef, got 0x%08lx\n",
|
"Expected 0xdeadbeef, got 0x%08x\n",
|
||||||
GetLastError());
|
GetLastError());
|
||||||
|
|
||||||
/* See if closing makes a difference for GetWindowTheme */
|
/* See if closing makes a difference for GetWindowTheme */
|
||||||
|
@ -321,7 +321,7 @@ static void test_OpenThemeData(void)
|
||||||
ok( hTheme == hTheme2, "Expected the same HTHEME handle (%p<->%p)\n",
|
ok( hTheme == hTheme2, "Expected the same HTHEME handle (%p<->%p)\n",
|
||||||
hTheme, hTheme2);
|
hTheme, hTheme2);
|
||||||
ok( GetLastError() == 0xdeadbeef,
|
ok( GetLastError() == 0xdeadbeef,
|
||||||
"Expected 0xdeadbeef, got 0x%08lx\n",
|
"Expected 0xdeadbeef, got 0x%08x\n",
|
||||||
GetLastError());
|
GetLastError());
|
||||||
|
|
||||||
SetLastError(0xdeadbeef);
|
SetLastError(0xdeadbeef);
|
||||||
|
@ -330,13 +330,13 @@ static void test_OpenThemeData(void)
|
||||||
{
|
{
|
||||||
ok( bTPDefined == FALSE, "Expected FALSE\n");
|
ok( bTPDefined == FALSE, "Expected FALSE\n");
|
||||||
ok( GetLastError() == ERROR_SUCCESS,
|
ok( GetLastError() == ERROR_SUCCESS,
|
||||||
"Expected ERROR_SUCCESS, got 0x%08lx\n",
|
"Expected ERROR_SUCCESS, got 0x%08x\n",
|
||||||
GetLastError());
|
GetLastError());
|
||||||
}
|
}
|
||||||
|
|
||||||
bDestroyed = DestroyWindow(hWnd);
|
bDestroyed = DestroyWindow(hWnd);
|
||||||
if (!bDestroyed)
|
if (!bDestroyed)
|
||||||
trace("Window %p couldn't be destroyed : 0x%08lx\n",
|
trace("Window %p couldn't be destroyed : 0x%08x\n",
|
||||||
hWnd, GetLastError());
|
hWnd, GetLastError());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -354,22 +354,22 @@ static void test_GetCurrentThemeName(void)
|
||||||
SetLastError(0xdeadbeef);
|
SetLastError(0xdeadbeef);
|
||||||
hRes = pGetCurrentThemeName(NULL, 0, NULL, 0, NULL, 0);
|
hRes = pGetCurrentThemeName(NULL, 0, NULL, 0, NULL, 0);
|
||||||
if (bThemeActive)
|
if (bThemeActive)
|
||||||
ok( hRes == S_OK, "Expected S_OK, got 0x%08lx\n", hRes);
|
ok( hRes == S_OK, "Expected S_OK, got 0x%08x\n", hRes);
|
||||||
else
|
else
|
||||||
ok( hRes == E_PROP_ID_UNSUPPORTED, "Expected E_PROP_ID_UNSUPPORTED, got 0x%08lx\n", hRes);
|
ok( hRes == E_PROP_ID_UNSUPPORTED, "Expected E_PROP_ID_UNSUPPORTED, got 0x%08x\n", hRes);
|
||||||
ok( GetLastError() == 0xdeadbeef,
|
ok( GetLastError() == 0xdeadbeef,
|
||||||
"Expected 0xdeadbeef, got 0x%08lx\n",
|
"Expected 0xdeadbeef, got 0x%08x\n",
|
||||||
GetLastError());
|
GetLastError());
|
||||||
|
|
||||||
/* Number of characters given is 0 */
|
/* Number of characters given is 0 */
|
||||||
SetLastError(0xdeadbeef);
|
SetLastError(0xdeadbeef);
|
||||||
hRes = pGetCurrentThemeName(currentTheme, 0, NULL, 0, NULL, 0);
|
hRes = pGetCurrentThemeName(currentTheme, 0, NULL, 0, NULL, 0);
|
||||||
if (bThemeActive)
|
if (bThemeActive)
|
||||||
ok( hRes == S_OK, "Expected S_OK, got 0x%08lx\n", hRes);
|
ok( hRes == S_OK, "Expected S_OK, got 0x%08x\n", hRes);
|
||||||
else
|
else
|
||||||
ok( hRes == E_PROP_ID_UNSUPPORTED, "Expected E_PROP_ID_UNSUPPORTED, got 0x%08lx\n", hRes);
|
ok( hRes == E_PROP_ID_UNSUPPORTED, "Expected E_PROP_ID_UNSUPPORTED, got 0x%08x\n", hRes);
|
||||||
ok( GetLastError() == 0xdeadbeef,
|
ok( GetLastError() == 0xdeadbeef,
|
||||||
"Expected 0xdeadbeef, got 0x%08lx\n",
|
"Expected 0xdeadbeef, got 0x%08x\n",
|
||||||
GetLastError());
|
GetLastError());
|
||||||
|
|
||||||
/* When the number of characters given is too small (not 0, see above), GetCurrentThemeName returns 0x8007007a.
|
/* When the number of characters given is too small (not 0, see above), GetCurrentThemeName returns 0x8007007a.
|
||||||
|
@ -381,11 +381,11 @@ static void test_GetCurrentThemeName(void)
|
||||||
hRes = pGetCurrentThemeName(currentTheme, 2, NULL, 0, NULL, 0);
|
hRes = pGetCurrentThemeName(currentTheme, 2, NULL, 0, NULL, 0);
|
||||||
if (bThemeActive)
|
if (bThemeActive)
|
||||||
todo_wine
|
todo_wine
|
||||||
ok( LOWORD(hRes) == ERROR_INSUFFICIENT_BUFFER, "Expected 0x8007007A, got 0x%08lx\n", hRes);
|
ok( LOWORD(hRes) == ERROR_INSUFFICIENT_BUFFER, "Expected 0x8007007A, got 0x%08x\n", hRes);
|
||||||
else
|
else
|
||||||
ok( hRes == E_PROP_ID_UNSUPPORTED, "Expected E_PROP_ID_UNSUPPORTED, got 0x%08lx\n", hRes);
|
ok( hRes == E_PROP_ID_UNSUPPORTED, "Expected E_PROP_ID_UNSUPPORTED, got 0x%08x\n", hRes);
|
||||||
ok( GetLastError() == 0xdeadbeef,
|
ok( GetLastError() == 0xdeadbeef,
|
||||||
"Expected 0xdeadbeef, got 0x%08lx\n",
|
"Expected 0xdeadbeef, got 0x%08x\n",
|
||||||
GetLastError());
|
GetLastError());
|
||||||
|
|
||||||
/* The same is true if the number of characters is too small for Color and/or Size */
|
/* The same is true if the number of characters is too small for Color and/or Size */
|
||||||
|
@ -395,31 +395,31 @@ static void test_GetCurrentThemeName(void)
|
||||||
currentSize, sizeof(currentSize) / sizeof(WCHAR));
|
currentSize, sizeof(currentSize) / sizeof(WCHAR));
|
||||||
if (bThemeActive)
|
if (bThemeActive)
|
||||||
todo_wine
|
todo_wine
|
||||||
ok( LOWORD(hRes) == ERROR_INSUFFICIENT_BUFFER, "Expected 0x8007007A, got 0x%08lx\n", hRes);
|
ok( LOWORD(hRes) == ERROR_INSUFFICIENT_BUFFER, "Expected 0x8007007A, got 0x%08x\n", hRes);
|
||||||
else
|
else
|
||||||
ok( hRes == E_PROP_ID_UNSUPPORTED, "Expected E_PROP_ID_UNSUPPORTED, got 0x%08lx\n", hRes);
|
ok( hRes == E_PROP_ID_UNSUPPORTED, "Expected E_PROP_ID_UNSUPPORTED, got 0x%08x\n", hRes);
|
||||||
ok( GetLastError() == 0xdeadbeef,
|
ok( GetLastError() == 0xdeadbeef,
|
||||||
"Expected 0xdeadbeef, got 0x%08lx\n",
|
"Expected 0xdeadbeef, got 0x%08x\n",
|
||||||
GetLastError());
|
GetLastError());
|
||||||
|
|
||||||
/* Given number of characters is correct */
|
/* Given number of characters is correct */
|
||||||
SetLastError(0xdeadbeef);
|
SetLastError(0xdeadbeef);
|
||||||
hRes = pGetCurrentThemeName(currentTheme, sizeof(currentTheme) / sizeof(WCHAR), NULL, 0, NULL, 0);
|
hRes = pGetCurrentThemeName(currentTheme, sizeof(currentTheme) / sizeof(WCHAR), NULL, 0, NULL, 0);
|
||||||
if (bThemeActive)
|
if (bThemeActive)
|
||||||
ok( hRes == S_OK, "Expected S_OK, got 0x%08lx\n", hRes);
|
ok( hRes == S_OK, "Expected S_OK, got 0x%08x\n", hRes);
|
||||||
else
|
else
|
||||||
ok( hRes == E_PROP_ID_UNSUPPORTED, "Expected E_PROP_ID_UNSUPPORTED, got 0x%08lx\n", hRes);
|
ok( hRes == E_PROP_ID_UNSUPPORTED, "Expected E_PROP_ID_UNSUPPORTED, got 0x%08x\n", hRes);
|
||||||
ok( GetLastError() == 0xdeadbeef,
|
ok( GetLastError() == 0xdeadbeef,
|
||||||
"Expected 0xdeadbeef, got 0x%08lx\n",
|
"Expected 0xdeadbeef, got 0x%08x\n",
|
||||||
GetLastError());
|
GetLastError());
|
||||||
|
|
||||||
/* Given number of characters for the theme name is too large */
|
/* Given number of characters for the theme name is too large */
|
||||||
SetLastError(0xdeadbeef);
|
SetLastError(0xdeadbeef);
|
||||||
hRes = pGetCurrentThemeName(currentTheme, sizeof(currentTheme), NULL, 0, NULL, 0);
|
hRes = pGetCurrentThemeName(currentTheme, sizeof(currentTheme), NULL, 0, NULL, 0);
|
||||||
todo_wine
|
todo_wine
|
||||||
ok( hRes == E_POINTER, "Expected E_POINTER, got 0x%08lx\n", hRes);
|
ok( hRes == E_POINTER, "Expected E_POINTER, got 0x%08x\n", hRes);
|
||||||
ok( GetLastError() == 0xdeadbeef,
|
ok( GetLastError() == 0xdeadbeef,
|
||||||
"Expected 0xdeadbeef, got 0x%08lx\n",
|
"Expected 0xdeadbeef, got 0x%08x\n",
|
||||||
GetLastError());
|
GetLastError());
|
||||||
|
|
||||||
/* The too large case is only for the theme name, not for color name or size name */
|
/* The too large case is only for the theme name, not for color name or size name */
|
||||||
|
@ -428,11 +428,11 @@ static void test_GetCurrentThemeName(void)
|
||||||
currentColor, sizeof(currentTheme),
|
currentColor, sizeof(currentTheme),
|
||||||
currentSize, sizeof(currentSize) / sizeof(WCHAR));
|
currentSize, sizeof(currentSize) / sizeof(WCHAR));
|
||||||
if (bThemeActive)
|
if (bThemeActive)
|
||||||
ok( hRes == S_OK, "Expected S_OK, got 0x%08lx\n", hRes);
|
ok( hRes == S_OK, "Expected S_OK, got 0x%08x\n", hRes);
|
||||||
else
|
else
|
||||||
ok( hRes == E_PROP_ID_UNSUPPORTED, "Expected E_PROP_ID_UNSUPPORTED, got 0x%08lx\n", hRes);
|
ok( hRes == E_PROP_ID_UNSUPPORTED, "Expected E_PROP_ID_UNSUPPORTED, got 0x%08x\n", hRes);
|
||||||
ok( GetLastError() == 0xdeadbeef,
|
ok( GetLastError() == 0xdeadbeef,
|
||||||
"Expected 0xdeadbeef, got 0x%08lx\n",
|
"Expected 0xdeadbeef, got 0x%08x\n",
|
||||||
GetLastError());
|
GetLastError());
|
||||||
|
|
||||||
SetLastError(0xdeadbeef);
|
SetLastError(0xdeadbeef);
|
||||||
|
@ -440,11 +440,11 @@ static void test_GetCurrentThemeName(void)
|
||||||
currentColor, sizeof(currentTheme) / sizeof(WCHAR),
|
currentColor, sizeof(currentTheme) / sizeof(WCHAR),
|
||||||
currentSize, sizeof(currentSize));
|
currentSize, sizeof(currentSize));
|
||||||
if (bThemeActive)
|
if (bThemeActive)
|
||||||
ok( hRes == S_OK, "Expected S_OK, got 0x%08lx\n", hRes);
|
ok( hRes == S_OK, "Expected S_OK, got 0x%08x\n", hRes);
|
||||||
else
|
else
|
||||||
ok( hRes == E_PROP_ID_UNSUPPORTED, "Expected E_PROP_ID_UNSUPPORTED, got 0x%08lx\n", hRes);
|
ok( hRes == E_PROP_ID_UNSUPPORTED, "Expected E_PROP_ID_UNSUPPORTED, got 0x%08x\n", hRes);
|
||||||
ok( GetLastError() == 0xdeadbeef,
|
ok( GetLastError() == 0xdeadbeef,
|
||||||
"Expected 0xdeadbeef, got 0x%08lx\n",
|
"Expected 0xdeadbeef, got 0x%08x\n",
|
||||||
GetLastError());
|
GetLastError());
|
||||||
|
|
||||||
/* Correct call */
|
/* Correct call */
|
||||||
|
@ -453,11 +453,11 @@ static void test_GetCurrentThemeName(void)
|
||||||
currentColor, sizeof(currentColor) / sizeof(WCHAR),
|
currentColor, sizeof(currentColor) / sizeof(WCHAR),
|
||||||
currentSize, sizeof(currentSize) / sizeof(WCHAR));
|
currentSize, sizeof(currentSize) / sizeof(WCHAR));
|
||||||
if (bThemeActive)
|
if (bThemeActive)
|
||||||
ok( hRes == S_OK, "Expected S_OK, got 0x%08lx\n", hRes);
|
ok( hRes == S_OK, "Expected S_OK, got 0x%08x\n", hRes);
|
||||||
else
|
else
|
||||||
ok( hRes == E_PROP_ID_UNSUPPORTED, "Expected E_PROP_ID_UNSUPPORTED, got 0x%08lx\n", hRes);
|
ok( hRes == E_PROP_ID_UNSUPPORTED, "Expected E_PROP_ID_UNSUPPORTED, got 0x%08x\n", hRes);
|
||||||
ok( GetLastError() == 0xdeadbeef,
|
ok( GetLastError() == 0xdeadbeef,
|
||||||
"Expected 0xdeadbeef, got 0x%08lx\n",
|
"Expected 0xdeadbeef, got 0x%08x\n",
|
||||||
GetLastError());
|
GetLastError());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -467,9 +467,9 @@ static void test_CloseThemeData(void)
|
||||||
|
|
||||||
SetLastError(0xdeadbeef);
|
SetLastError(0xdeadbeef);
|
||||||
hRes = pCloseThemeData(NULL);
|
hRes = pCloseThemeData(NULL);
|
||||||
ok( hRes == E_HANDLE, "Expected E_HANDLE, got 0x%08lx\n", hRes);
|
ok( hRes == E_HANDLE, "Expected E_HANDLE, got 0x%08x\n", hRes);
|
||||||
ok( GetLastError() == 0xdeadbeef,
|
ok( GetLastError() == 0xdeadbeef,
|
||||||
"Expected 0xdeadbeef, got 0x%08lx\n",
|
"Expected 0xdeadbeef, got 0x%08x\n",
|
||||||
GetLastError());
|
GetLastError());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue