mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
47 lines
1.1 KiB
C
47 lines
1.1 KiB
C
/*
|
|
* PROJECT: ReactOS Services
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
* FILE: base/system/sc/delete.c
|
|
* PURPOSE: Delete a service
|
|
* COPYRIGHT: Copyright 2005 - 2006 Ged Murphy <gedmurphy@gmail.com>
|
|
*
|
|
*/
|
|
|
|
#include "sc.h"
|
|
|
|
BOOL Delete(LPCTSTR ServiceName)
|
|
{
|
|
SC_HANDLE hSCManager = NULL;
|
|
SC_HANDLE hSc = NULL;
|
|
|
|
#ifdef SCDBG
|
|
_tprintf(_T("service to delete - %s\n\n"), ServiceName);
|
|
#endif
|
|
|
|
hSCManager = OpenSCManager(NULL,
|
|
NULL,
|
|
SC_MANAGER_CONNECT);
|
|
if (hSCManager != NULL)
|
|
{
|
|
hSc = OpenService(hSCManager, ServiceName, DELETE);
|
|
if (hSc != NULL)
|
|
{
|
|
if (DeleteService(hSc))
|
|
{
|
|
_tprintf(_T("[SC] DeleteService SUCCESS\n"));
|
|
|
|
CloseServiceHandle(hSc);
|
|
CloseServiceHandle(hSCManager);
|
|
|
|
return TRUE;
|
|
}
|
|
}
|
|
}
|
|
|
|
ReportLastError();
|
|
|
|
if (hSc) CloseServiceHandle(hSc);
|
|
if (hSCManager) CloseServiceHandle(hSCManager);
|
|
|
|
return FALSE;
|
|
}
|