Author: tkreuzer Date: Sat Dec 20 20:40:09 2008 New Revision: 38216
URL: http://svn.reactos.org/svn/reactos?rev=38216&view=rev Log: use _wcsicmp instead of non-standard wcscmpi
Modified: trunk/rostests/apitests/w32knapi/ntuser/NtUserSystemParametersInfo.c
Modified: trunk/rostests/apitests/w32knapi/ntuser/NtUserSystemParametersInfo.c URL: http://svn.reactos.org/svn/reactos/trunk/rostests/apitests/w32knapi/ntuser/N... ============================================================================== --- trunk/rostests/apitests/w32knapi/ntuser/NtUserSystemParametersInfo.c [iso-8859-1] (original) +++ trunk/rostests/apitests/w32knapi/ntuser/NtUserSystemParametersInfo.c [iso-8859-1] Sat Dec 20 20:40:09 2008 @@ -305,7 +305,7 @@ TEST(bTemp == 0); cbSize = sizeof(szReg); TEST(QueryUserRegValueW(L"Control Panel\Sound", L"Beep", &szReg, &cbSize, NULL) == ERROR_SUCCESS); - TEST(wcscmpi(szReg, L"No") == 0); + TEST(_wcsicmp(szReg, L"No") == 0);
/* Value 1 */ NtUserSystemParametersInfo(SPI_SETBEEP, 1, NULL, SPIF_UPDATEINIFILE); @@ -313,7 +313,7 @@ TEST(bTemp == 1); cbSize = sizeof(szReg); TEST(QueryUserRegValueW(L"Control Panel\Sound", L"Beep", &szReg, &cbSize, NULL) == ERROR_SUCCESS); - TEST(wcscmpi(szReg, L"Yes") == 0); + TEST(_wcsicmp(szReg, L"Yes") == 0);
/* Value 2 */ NtUserSystemParametersInfo(SPI_SETBEEP, 2, NULL, SPIF_UPDATEINIFILE); @@ -321,7 +321,7 @@ TEST(bTemp == 1); cbSize = sizeof(szReg); TEST(QueryUserRegValueW(L"Control Panel\Sound", L"Beep", &szReg, &cbSize, NULL) == ERROR_SUCCESS); - TEST(wcscmpi(szReg, L"Yes") == 0); + TEST(_wcsicmp(szReg, L"Yes") == 0);
/* Restore original value */ NtUserSystemParametersInfo(SPI_SETBEEP, 0, &bOrig, SPIF_UPDATEINIFILE);