add stub for ControlServiceEx()

svn path=/trunk/; revision=17547
This commit is contained in:
Thomas Bluemel 2005-08-25 22:06:31 +00:00
parent 95164f7065
commit 8feae80765
2 changed files with 20 additions and 0 deletions

View file

@ -73,6 +73,7 @@ CloseServiceHandle@4
;CommandLineFromMsiDescriptor@12
;ComputeAccessTokenFromCodeAuthzLevel@20
ControlService@12
ControlServiceEx@16
;ControlTraceA@12
;ControlTraceW@12
;ConvertAccessToSecurityDescriptorA@20

View 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
*