1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +01:00

Stub Execute() for Win32

This commit is contained in:
Gymnasiast
2020-12-13 17:41:24 +01:00
parent 9058f00bfa
commit 09c6339bd4

View File

@@ -524,9 +524,15 @@ namespace Platform
bool FindApp(const std::string& app, std::string* output)
{
log_warning("FindApp not implemented for Windows!");
log_warning("FindApp() not implemented for Windows!");
return false;
}
int32_t Execute(const std::string& command, std::string* output)
{
log_warning("Execute() not implemented for Windows!");
return -1;
}
} // namespace Platform
#endif