mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 11:12:58 +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
|
@ -194,7 +194,7 @@ CNewMenu::CacheItems()
|
|||
if (pNewItem)
|
||||
{
|
||||
dwSize += wcslen(wszName) + 1;
|
||||
if (!m_pLinkItem && wcsicmp(pNewItem->pwszExt, L".lnk") == 0)
|
||||
if (!m_pLinkItem && _wcsicmp(pNewItem->pwszExt, L".lnk") == 0)
|
||||
{
|
||||
/* The unique link handler */
|
||||
m_pLinkItem = pNewItem;
|
||||
|
@ -277,7 +277,7 @@ CNewMenu::LoadCachedItems()
|
|||
pNewItem = LoadItem(wszName);
|
||||
if (pNewItem)
|
||||
{
|
||||
if (!m_pLinkItem && wcsicmp(pNewItem->pwszExt, L".lnk") == 0)
|
||||
if (!m_pLinkItem && _wcsicmp(pNewItem->pwszExt, L".lnk") == 0)
|
||||
{
|
||||
/* The unique link handler */
|
||||
m_pLinkItem = pNewItem;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue