- Add error messages to prevent silent failing, no functionality change.

svn path=/trunk/; revision=26667
This commit is contained in:
Aleksey Bragin 2007-05-09 20:52:08 +00:00
parent 33ea79c7fe
commit 959a4b6f1e

View file

@ -97,13 +97,22 @@ StartCustomService(
hSCManager = OpenSCManager(NULL, NULL, 0);
if (!hSCManager)
{
ERR("WL: Failed to OpenSCManager\n");
goto cleanup;
}
hService = OpenServiceW(hSCManager, ServiceName, SERVICE_START);
if (!hService)
{
ERR("WL: Failed to open the service\n");
goto cleanup;
}
if (!StartServiceW(hService, 0, NULL))
{
ERR("WL: Failed to start the service\n");
goto cleanup;
}
ret = TRUE;