Temporary workaround to fix build

svn path=/trunk/; revision=18735
This commit is contained in:
Gé van Geldorp 2005-10-24 12:55:54 +00:00
parent 6a15dd3664
commit 4e08771dcb

View file

@ -121,6 +121,7 @@ ChangeServiceConfigW(SC_HANDLE hService,
LPCWSTR lpPassword,
LPCWSTR lpDisplayName)
{
#if 0 /* Temporarily deactivated to fix the build (ScmrChangeServiceConfigW is missing */
DWORD dwError;
DWORD dwDependenciesLength = 0;
DWORD dwLength;
@ -168,6 +169,11 @@ ChangeServiceConfigW(SC_HANDLE hService,
}
return TRUE;
#else
DPRINT1("ChangeServiceConfigW temporarily disabled\n");
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
#endif
}