mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 18:52:57 +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
|
@ -202,7 +202,7 @@ MMixerGetMixerByName(
|
|||
MixerInfo = (LPMIXER_INFO)CONTAINING_RECORD(Entry, MIXER_INFO, Entry);
|
||||
|
||||
DPRINT1("MixerName %S MixerName %S\n", MixerInfo->MixCaps.szPname, MixerName);
|
||||
if (wcsicmp(MixerInfo->MixCaps.szPname, MixerName) == 0)
|
||||
if (_wcsicmp(MixerInfo->MixCaps.szPname, MixerName) == 0)
|
||||
{
|
||||
*OutMixerInfo = MixerInfo;
|
||||
return MM_STATUS_SUCCESS;
|
||||
|
@ -764,7 +764,7 @@ MMixerGetDataByDeviceName(
|
|||
while(Entry != &MixerList->MixerData)
|
||||
{
|
||||
MixerData = (LPMIXER_DATA)CONTAINING_RECORD(Entry, MIXER_DATA, Entry);
|
||||
if (wcsicmp(&DeviceName[2], &MixerData->DeviceName[2]) == 0)
|
||||
if (_wcsicmp(&DeviceName[2], &MixerData->DeviceName[2]) == 0)
|
||||
{
|
||||
/* found entry */
|
||||
return MixerData;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue