mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 04:45:43 +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
|
@ -777,7 +777,7 @@ KspAddObjectCreateItemToList(
|
|||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
if (!wcsicmp(ObjectClass, CreateEntry->CreateItem->ObjectClass.Buffer))
|
||||
if (!_wcsicmp(ObjectClass, CreateEntry->CreateItem->ObjectClass.Buffer))
|
||||
{
|
||||
/* the same object class already exists */
|
||||
return STATUS_OBJECT_NAME_COLLISION;
|
||||
|
|
|
@ -372,7 +372,7 @@ KspCreateDeviceReference(
|
|||
DeviceEntry = (PBUS_DEVICE_ENTRY)CONTAINING_RECORD(Entry, BUS_DEVICE_ENTRY, Entry);
|
||||
|
||||
/* check if name matches */
|
||||
if (!wcsicmp(DeviceEntry->DeviceName, DeviceName))
|
||||
if (!_wcsicmp(DeviceEntry->DeviceName, DeviceName))
|
||||
{
|
||||
/* item already exists */
|
||||
ItemExists = TRUE;
|
||||
|
@ -1941,7 +1941,7 @@ KsServiceBusEnumCreateRequest(
|
|||
DeviceEntry = (PBUS_DEVICE_ENTRY)CONTAINING_RECORD(Entry, BUS_DEVICE_ENTRY, Entry);
|
||||
|
||||
/* check if name matches */
|
||||
if (!wcsicmp(DeviceEntry->DeviceName, IoStack->FileObject->FileName.Buffer + 1))
|
||||
if (!_wcsicmp(DeviceEntry->DeviceName, IoStack->FileObject->FileName.Buffer + 1))
|
||||
{
|
||||
/* item already exists */
|
||||
ItemExists = TRUE;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue