Implemented StrCmpNIA like the other StrCmpXX functions.
This commit is contained in:
parent
7c7f155be3
commit
bd63880ca9
|
@ -140,7 +140,7 @@ init COMCTL32_LibMain
|
||||||
350 stdcall StrChrA(str str) COMCTL32_StrChrA
|
350 stdcall StrChrA(str str) COMCTL32_StrChrA
|
||||||
351 stdcall StrRChrA(str str long) COMCTL32_StrRChrA
|
351 stdcall StrRChrA(str str long) COMCTL32_StrRChrA
|
||||||
352 stdcall StrCmpNA(str str long) COMCTL32_StrCmpNA
|
352 stdcall StrCmpNA(str str long) COMCTL32_StrCmpNA
|
||||||
353 stub StrCmpNIA
|
353 stdcall StrCmpNIA(str str long) COMCTL32_StrCmpNIA
|
||||||
354 stdcall StrStrA(str str) COMCTL32_StrStrA
|
354 stdcall StrStrA(str str) COMCTL32_StrStrA
|
||||||
355 stdcall StrStrIA(str str) COMCTL32_StrStrIA
|
355 stdcall StrStrIA(str str) COMCTL32_StrStrIA
|
||||||
356 stdcall StrCSpnA(str str) COMCTL32_StrCSpnA
|
356 stdcall StrCSpnA(str str) COMCTL32_StrCSpnA
|
||||||
|
|
|
@ -1996,6 +1996,14 @@ INT WINAPI COMCTL32_StrCmpNA( LPCSTR lpStr1, LPCSTR lpStr2, int nChar) {
|
||||||
return strncmp(lpStr1, lpStr2, nChar);
|
return strncmp(lpStr1, lpStr2, nChar);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**************************************************************************
|
||||||
|
* StrCmpNA [COMCTL32.352]
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
INT WINAPI COMCTL32_StrCmpNIA( LPCSTR lpStr1, LPCSTR lpStr2, int nChar) {
|
||||||
|
return strncasecmp(lpStr1, lpStr2, nChar);
|
||||||
|
}
|
||||||
|
|
||||||
/**************************************************************************
|
/**************************************************************************
|
||||||
* StrCmpNW [COMCTL32.360]
|
* StrCmpNW [COMCTL32.360]
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue