Author: cwittich Date: Sat Jan 31 07:44:48 2009 New Revision: 39232
URL: http://svn.reactos.org/svn/reactos?rev=39232&view=rev Log: make explicit use of unicode functions
Modified: trunk/reactos/base/system/services/config.c trunk/reactos/base/system/services/rpcserver.c
Modified: trunk/reactos/base/system/services/config.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/services/config... ============================================================================== --- trunk/reactos/base/system/services/config.c [iso-8859-1] (original) +++ trunk/reactos/base/system/services/config.c [iso-8859-1] Sat Jan 31 07:44:48 2009 @@ -108,9 +108,9 @@
if (*lpDependencies == 0) { - RegDeleteValue(hServiceKey, + RegDeleteValueW(hServiceKey, L"DependOnService"); - RegDeleteValue(hServiceKey, + RegDeleteValueW(hServiceKey, L"DependOnGroup"); } else
Modified: trunk/reactos/base/system/services/rpcserver.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/services/rpcser... ============================================================================== --- trunk/reactos/base/system/services/rpcserver.c [iso-8859-1] (original) +++ trunk/reactos/base/system/services/rpcserver.c [iso-8859-1] Sat Jan 31 07:44:48 2009 @@ -497,8 +497,8 @@ it is now safe to delete the service */
/* Delete the Service Key */ - dwError = RegDeleteKey(hServicesKey, - lpService->lpServiceName); + dwError = RegDeleteKeyW(hServicesKey, + lpService->lpServiceName);
RegCloseKey(hServicesKey);