mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 21:13:01 +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
|
@ -204,7 +204,7 @@ BOOL COpenWithList::SaveApp(SApp *pApp)
|
|||
COpenWithList::SApp *COpenWithList::Find(LPCWSTR pwszFilename)
|
||||
{
|
||||
for (UINT i = 0; i < m_cApp; ++i)
|
||||
if (wcsicmp(m_pApp[i].wszFilename, pwszFilename) == 0)
|
||||
if (_wcsicmp(m_pApp[i].wszFilename, pwszFilename) == 0)
|
||||
return &m_pApp[i];
|
||||
return NULL;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue