mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 00:05:42 +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
|
@ -3121,10 +3121,10 @@ IsSupportedActivePartition(
|
|||
ASSERT(*Volume->Info.FileSystem);
|
||||
|
||||
/* NOTE: Please keep in sync with the RegisteredFileSystems list! */
|
||||
if (wcsicmp(Volume->Info.FileSystem, L"FAT") == 0 ||
|
||||
wcsicmp(Volume->Info.FileSystem, L"FAT32") == 0 ||
|
||||
// wcsicmp(Volume->Info.FileSystem, L"NTFS") == 0 ||
|
||||
wcsicmp(Volume->Info.FileSystem, L"BTRFS") == 0)
|
||||
if (_wcsicmp(Volume->Info.FileSystem, L"FAT") == 0 ||
|
||||
_wcsicmp(Volume->Info.FileSystem, L"FAT32") == 0 ||
|
||||
// _wcsicmp(Volume->Info.FileSystem, L"NTFS") == 0 ||
|
||||
_wcsicmp(Volume->Info.FileSystem, L"BTRFS") == 0)
|
||||
{
|
||||
return TRUE;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue