--- trunk/reactos/lib/advapi32/service/scm.c 2005-10-24 12:49:05 UTC (rev 18734)
+++ trunk/reactos/lib/advapi32/service/scm.c 2005-10-24 12:55:54 UTC (rev 18735)
@@ -121,6 +121,7 @@
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 @@
}
return TRUE;
+#else
+ DPRINT1("ChangeServiceConfigW temporarily disabled\n");
+ SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
+ return FALSE;
+#endif
}