| 29 | static constexpr char kOpenRCT2UserAgent[] = "OpenRCT2/" kOpenRCT2Version; |
| 30 | |
| 31 | static void ThrowWin32Exception(const char* methodName) |
| 32 | { |
| 33 | auto errorCode = GetLastError(); |
| 34 | auto msg = String::stdFormat("%s failed, error: %d.", methodName, errorCode); |
| 35 | throw std::runtime_error(msg); |
| 36 | } |
| 37 | |
| 38 | static const wchar_t* GetVerb(Method method) |
| 39 | { |
no test coverage detected