comctl32: Fix lstrncmpiW() so its return value is standard and use the CSTR_XXX macros.

oldstable
Francois Gouget 2012-06-20 00:53:56 +02:00 committed by Alexandre Julliard
parent 58d7011133
commit bede13b335
1 changed files with 1 additions and 4 deletions

View File

@ -559,11 +559,8 @@ static inline int textcmpWT(LPCWSTR aw, LPCWSTR bt, BOOL isW)
static inline int lstrncmpiW(LPCWSTR s1, LPCWSTR s2, int n)
{
int res;
n = min(min(n, lstrlenW(s1)), lstrlenW(s2));
res = CompareStringW(LOCALE_USER_DEFAULT, NORM_IGNORECASE, s1, n, s2, n);
return res ? res - sizeof(WCHAR) : res;
return CompareStringW(LOCALE_USER_DEFAULT, NORM_IGNORECASE, s1, n, s2, n) - CSTR_EQUAL;
}
/******** Debugging functions *****************************************/