mirror of
https://github.com/reactos/reactos.git
synced 2025-04-25 16:10:29 +00:00
- DEVMGR: wcsnicmp -> _wcsnicmp
svn path=/trunk/; revision=38325
This commit is contained in:
parent
16726f509e
commit
5759ff871c
2 changed files with 3 additions and 3 deletions
|
@ -1537,7 +1537,7 @@ GetDeviceAndComputerName(LPWSTR lpString,
|
||||||
if (*lpString == L'/')
|
if (*lpString == L'/')
|
||||||
{
|
{
|
||||||
lpString++;
|
lpString++;
|
||||||
if(!wcsnicmp(lpString, L"DeviceID", 8))
|
if(!_wcsnicmp(lpString, L"DeviceID", 8))
|
||||||
{
|
{
|
||||||
lpString += 9;
|
lpString += 9;
|
||||||
if (*lpString != L'\0')
|
if (*lpString != L'\0')
|
||||||
|
@ -1553,7 +1553,7 @@ GetDeviceAndComputerName(LPWSTR lpString,
|
||||||
ret = TRUE;
|
ret = TRUE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (!wcsnicmp(lpString, L"MachineName", 11))
|
else if (!_wcsnicmp(lpString, L"MachineName", 11))
|
||||||
{
|
{
|
||||||
lpString += 12;
|
lpString += 12;
|
||||||
if (*lpString != L'\0')
|
if (*lpString != L'\0')
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<module name="devmgr" type="win32dll" baseaddress="${BASEADDRESS_DEVENUM}" installbase="system32" installname="devmgr.dll" allowwarnings="true" unicode="yes">
|
<module name="devmgr" type="win32dll" baseaddress="${BASEADDRESS_DEVENUM}" installbase="system32" installname="devmgr.dll" unicode="yes">
|
||||||
<include base="devmgr">.</include>
|
<include base="devmgr">.</include>
|
||||||
<importlibrary definition="devmgr.spec" />
|
<importlibrary definition="devmgr.spec" />
|
||||||
<library>kernel32</library>
|
<library>kernel32</library>
|
||||||
|
|
Loading…
Reference in a new issue