mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 22:02:14 +00:00
[REACTOS] Use the ISO C and C++ conformant names: _wcsicmp, _stricmp
Stop using non-conforming wcsicmp, stricmp, strcasecmp
This commit is contained in:
parent
fb9571ee3c
commit
e4930be4ff
87 changed files with 293 additions and 293 deletions
|
@ -61,7 +61,7 @@ static void TestAdviseAndCanonical(PCIDLIST_ABSOLUTE pidlFolder, UINT cidl, PCUI
|
|||
|
||||
|
||||
#define ok_wstri(x, y) \
|
||||
ok(wcsicmp(x, y) == 0, "Wrong string. Expected '%S', got '%S'\n", y, x)
|
||||
ok(_wcsicmp(x, y) == 0, "Wrong string. Expected '%S', got '%S'\n", y, x)
|
||||
|
||||
static void TestHIDA(PVOID pData, SIZE_T Size, LPCWSTR ExpectRoot, LPCWSTR ExpectPath1, LPCWSTR ExpectPath2)
|
||||
{
|
||||
|
|
|
@ -148,7 +148,7 @@ static WCHAR evVar[MAX_PATH];
|
|||
ok(hr == expectedHr,
|
||||
"IShellLink::GetPath(%d), flags 0x%lx, got hr = 0x%lx, expected 0x%lx\n",
|
||||
i, flags, hr, expectedHr);
|
||||
ok(wcsicmp(wPathOut, expectedPathOut) == 0,
|
||||
ok(_wcsicmp(wPathOut, expectedPathOut) == 0,
|
||||
"IShellLink::GetPath(%d), flags 0x%lx, in %S, got %S, expected %S\n",
|
||||
i, flags, testDef->pathIn, wPathOut, expectedPathOut);
|
||||
}
|
||||
|
|
|
@ -64,7 +64,7 @@ static void TestAdviseAndCanonical(PCIDLIST_ABSOLUTE pidlFolder, UINT cidl, PCUI
|
|||
|
||||
|
||||
#define ok_wstri(x, y) \
|
||||
ok(wcsicmp(x, y) == 0, "Wrong string. Expected '%S', got '%S'\n", y, x)
|
||||
ok(_wcsicmp(x, y) == 0, "Wrong string. Expected '%S', got '%S'\n", y, x)
|
||||
|
||||
static void TestHIDA(PVOID pData, SIZE_T Size, LPCWSTR ExpectRoot, LPCWSTR ExpectPath1, LPCWSTR ExpectPath2)
|
||||
{
|
||||
|
|
|
@ -66,7 +66,7 @@ static void TestAdviseAndCanonical(PCIDLIST_ABSOLUTE pidlFolder, UINT cidl, PCUI
|
|||
|
||||
|
||||
#define ok_wstri(x, y) \
|
||||
ok(wcsicmp(x, y) == 0, "Wrong string. Expected '%S', got '%S'\n", y, x)
|
||||
ok(_wcsicmp(x, y) == 0, "Wrong string. Expected '%S', got '%S'\n", y, x)
|
||||
|
||||
static void TestHIDA(PVOID pData, SIZE_T Size, LPCWSTR ExpectRoot, LPCWSTR ExpectPath1, LPCWSTR ExpectPath2)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue