add stub for ControlServiceEx()
authorThomas Bluemel <thomas@reactsoft.com>
Thu, 25 Aug 2005 22:06:31 +0000 (22:06 +0000)
committerThomas Bluemel <thomas@reactsoft.com>
Thu, 25 Aug 2005 22:06:31 +0000 (22:06 +0000)
svn path=/trunk/; revision=17547

reactos/lib/advapi32/advapi32.def
reactos/lib/advapi32/service/scm.c

index 55757f2..0b30693 100644 (file)
@@ -73,6 +73,7 @@ CloseServiceHandle@4
 ;CommandLineFromMsiDescriptor@12
 ;ComputeAccessTokenFromCodeAuthzLevel@20
 ControlService@12
+ControlServiceEx@16
 ;ControlTraceA@12
 ;ControlTraceW@12
 ;ConvertAccessToSecurityDescriptorA@20
index 1de3e6a..5e91b2f 100644 (file)
@@ -194,6 +194,25 @@ ControlService(SC_HANDLE        hService,
 }
 
 
+/**********************************************************************
+ *  ControlServiceEx
+ *
+ * @unimplemented
+ */
+BOOL STDCALL
+ControlServiceEx(IN SC_HANDLE hService,
+                 IN DWORD dwControl,
+                 IN DWORD dwInfoLevel,
+                 IN OUT PVOID pControlParams)
+{
+    DPRINT1("ControlServiceEx(0x%p, 0x%x, 0x%x, 0x%p) UNIMPLEMENTED!\n",
+            hService, dwControl, dwInfoLevel, pControlParams);
+    SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
+    return FALSE;
+}
+
+
+
 /**********************************************************************
  *  CreateServiceA
  *