| 291 | } |
| 292 | |
| 293 | std::string GetAppleWinVersionAndBuild(void) |
| 294 | { |
| 295 | std::string debugStr = |
| 296 | #ifdef _DEBUG |
| 297 | ", debug"; |
| 298 | #else |
| 299 | ""; |
| 300 | #endif |
| 301 | return StrFormat("AppleWin version: %s (%d-bit build%s)", g_VERSIONSTRING.c_str(), GetCompilationTarget(), debugStr.c_str()); |
| 302 | } |
| 303 | |
| 304 | bool SetCurrentImageDir(const std::string& pszImageDir) |
| 305 | { |
no test coverage detected