mirror of
https://github.com/ioquake/jedi-outcast.git
synced 2024-11-10 07:11:42 +00:00
14 lines
239 B
C++
14 lines
239 B
C++
// AlertErrHandler.cpp
|
|
|
|
#include <afxwin.h>
|
|
#include "Module.h"
|
|
#include "AlertErrHandler.h"
|
|
|
|
bool gbParseError = false;
|
|
|
|
void CAlertErrHandler::Error(int theError, LPCTSTR errString)
|
|
{
|
|
gbParseError = true;
|
|
AfxMessageBox(errString);
|
|
}
|
|
|