blob: 87632faf1b154700f9685dcf85ea573bddc99505 (
plain)
1
2
3
4
5
6
7
|
#pragma once
#include <windows.h>
void WaitUntilServiceStopped(SC_HANDLE service, DWORD maxWaitMs);
void PokeService(const std::wstring &serviceName, bool stopService, bool deleteService);
|