mirror of
https://github.com/reactos/reactos.git
synced 2025-04-21 20:50:29 +00:00
make explicit use of unicode functions
svn path=/trunk/; revision=39232
This commit is contained in:
parent
da4305f0d2
commit
5d4d38c175
2 changed files with 4 additions and 4 deletions
|
@ -108,9 +108,9 @@ ScmWriteDependencies(HKEY hServiceKey,
|
||||||
|
|
||||||
if (*lpDependencies == 0)
|
if (*lpDependencies == 0)
|
||||||
{
|
{
|
||||||
RegDeleteValue(hServiceKey,
|
RegDeleteValueW(hServiceKey,
|
||||||
L"DependOnService");
|
L"DependOnService");
|
||||||
RegDeleteValue(hServiceKey,
|
RegDeleteValueW(hServiceKey,
|
||||||
L"DependOnGroup");
|
L"DependOnGroup");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
|
@ -497,8 +497,8 @@ DWORD RCloseServiceHandle(
|
||||||
it is now safe to delete the service */
|
it is now safe to delete the service */
|
||||||
|
|
||||||
/* Delete the Service Key */
|
/* Delete the Service Key */
|
||||||
dwError = RegDeleteKey(hServicesKey,
|
dwError = RegDeleteKeyW(hServicesKey,
|
||||||
lpService->lpServiceName);
|
lpService->lpServiceName);
|
||||||
|
|
||||||
RegCloseKey(hServicesKey);
|
RegCloseKey(hServicesKey);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue