| 2294 | } |
| 2295 | |
| 2296 | int Debugger::FatalError(LPCTSTR aMessage) |
| 2297 | { |
| 2298 | g_Debugger.Disconnect(); |
| 2299 | |
| 2300 | if (IDNO == MessageBox(g_hWnd, aMessage, g_script.mFileSpec, MB_YESNO | MB_ICONSTOP | MB_SETFOREGROUND | MB_APPLMODAL)) |
| 2301 | { |
| 2302 | // This might not exit, depending on OnExit: |
| 2303 | g_script.ExitApp(EXIT_CLOSE); |
| 2304 | } |
| 2305 | return DEBUGGER_E_INTERNAL_ERROR; |
| 2306 | } |
| 2307 | |
| 2308 | const char *Debugger::sBase64Chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; |
| 2309 |
nothing calls this directly
no test coverage detected