| 13 | #include <sys/stat.h> |
| 14 | |
| 15 | static std::string GetIcingaInstallPath(void) |
| 16 | { |
| 17 | char szFileName[MAX_PATH]; |
| 18 | if (!GetModuleFileName(nullptr, szFileName, sizeof(szFileName))) |
| 19 | return ""; |
| 20 | |
| 21 | if (!PathRemoveFileSpec(szFileName)) |
| 22 | return ""; |
| 23 | |
| 24 | if (!PathRemoveFileSpec(szFileName)) |
| 25 | return ""; |
| 26 | |
| 27 | return szFileName; |
| 28 | } |
| 29 | |
| 30 | |
| 31 | static bool ExecuteCommand(const std::string& app, const std::string& arguments) |
no outgoing calls
no test coverage detected