| 145 | { |
| 146 | |
| 147 | __declspec(dllexport) NTSTATUS ServiceInstaller_InstallService(LPCSTR lpServiceName, LPCSTR lpDisplayName, LPCSTR lpPath) |
| 148 | { |
| 149 | return ServiceInstaller::InstallService(lpServiceName, lpDisplayName, lpPath); |
| 150 | } |
| 151 | __declspec(dllexport) NTSTATUS ServiceInstaller_UninstallService(LPCSTR lpServiceName) |
| 152 | { |
| 153 | return ServiceInstaller::UninstallService(lpServiceName); |
nothing calls this directly
no test coverage detected