mirror of
https://github.com/klezVirus/DriverJack
synced 2026-06-06 16:04:32 +00:00
8 lines
290 B
C++
8 lines
290 B
C++
#include <windows.h>
|
|
#include <stdio.h>
|
|
#include <string>
|
|
|
|
BOOL __stdcall DoStopSvc(LPCWSTR szSvcName);
|
|
BOOL __stdcall StopDependentServices(SC_HANDLE schSCManager, SC_HANDLE schService);
|
|
BOOL __stdcall DoStartSvc(LPCWSTR szSvcName);
|
|
BOOL __stdcall DoReStartSvcAsync(std::string szSvcName); |