Commit 81f75c18 authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

kernel32/tests: Fix failures on WinMe.

parent b16983c1
...@@ -2053,7 +2053,7 @@ static void test_EnumSystemLanguageGroupsA(void) ...@@ -2053,7 +2053,7 @@ static void test_EnumSystemLanguageGroupsA(void)
/* No enumeration proc */ /* No enumeration proc */
SetLastError(0); SetLastError(0);
ret = pEnumSystemLanguageGroupsA(0, LGRPID_INSTALLED, 0); ret = pEnumSystemLanguageGroupsA(0, LGRPID_INSTALLED, 0);
if (!ret && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED) if (ret && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
{ {
win_skip("EnumSystemLanguageGroupsA is not implemented\n"); win_skip("EnumSystemLanguageGroupsA is not implemented\n");
return; return;
...@@ -2179,7 +2179,7 @@ static void test_EnumUILanguageA(void) ...@@ -2179,7 +2179,7 @@ static void test_EnumUILanguageA(void)
SetLastError(ERROR_SUCCESS); SetLastError(ERROR_SUCCESS);
ret = pEnumUILanguagesA(luilocale_proc1A, 0, 0); ret = pEnumUILanguagesA(luilocale_proc1A, 0, 0);
if (!ret && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED) if (ret && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
{ {
win_skip("EnumUILanguagesA is not implemented\n"); win_skip("EnumUILanguagesA is not implemented\n");
return; return;
......
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