[ros-diffs] [gschneider] 47021: [MKHIVE] wcsicmp -> _wcsicmp, should fix buildbot build

gschneider at svn.reactos.org gschneider at svn.reactos.org
Sun Apr 25 22:26:37 CEST 2010


Author: gschneider
Date: Sun Apr 25 22:26:37 2010
New Revision: 47021

URL: http://svn.reactos.org/svn/reactos?rev=47021&view=rev
Log:
[MKHIVE] wcsicmp -> _wcsicmp, should fix buildbot build

Modified:
    trunk/reactos/tools/mkhive/reginf.c

Modified: trunk/reactos/tools/mkhive/reginf.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/tools/mkhive/reginf.c?rev=47021&r1=47020&r2=47021&view=diff
==============================================================================
--- trunk/reactos/tools/mkhive/reginf.c [iso-8859-1] (original)
+++ trunk/reactos/tools/mkhive/reginf.c [iso-8859-1] Sun Apr 25 22:26:37 2010
@@ -53,32 +53,32 @@
 static BOOL
 GetRootKey (PWCHAR Name)
 {
-	if (!wcsicmp (Name, L"HKCR"))
+	if (!_wcsicmp (Name, L"HKCR"))
 	{
 		wcscpy (Name, L"\\Registry\\Machine\\SOFTWARE\\Classes\\");
 		return TRUE;
 	}
 
-	if (!wcsicmp (Name, L"HKCU"))
+	if (!_wcsicmp (Name, L"HKCU"))
 	{
 		wcscpy (Name, L"\\Registry\\User\\.DEFAULT\\");
 		return TRUE;
 	}
 
-	if (!wcsicmp (Name, L"HKLM"))
+	if (!_wcsicmp (Name, L"HKLM"))
 	{
 		wcscpy (Name, L"\\Registry\\Machine\\");
 		return TRUE;
 	}
 
-	if (!wcsicmp (Name, L"HKU"))
+	if (!_wcsicmp (Name, L"HKU"))
 	{
 		wcscpy (Name, L"\\Registry\\User\\");
 		return TRUE;
 	}
 
 #if 0
-	if (!wcsicmp (Name, L"HKR"))
+	if (!_wcsicmp (Name, L"HKR"))
 		return FALSE;
 #endif
 
@@ -138,7 +138,7 @@
 		len = wcslen (Strings) + 1;
 
 		for (p = Buffer; *p != 0; p += wcslen (p) + 1)
-			if (!wcsicmp (p, Strings))
+			if (!_wcsicmp (p, Strings))
 				break;
 
 		if (*p == 0)  /* not found, need to append it */




More information about the Ros-diffs mailing list