Exemple #1
0
void ErrorHandler::OpenError(const char *FileName)
{
#ifndef SILENT
  OpenErrorMsg(FileName);
  Throw(OPEN_ERROR);
#endif
}
Exemple #2
0
void ErrorHandler::OpenError(const char *FileName,const wchar *FileNameW)
{
#ifndef SILENT
  OpenErrorMsg(FileName);
  Throw(RARX_OPEN);
#endif
}
Exemple #3
0
void ErrorHandler::OpenError(string sParfileName, const char *FileName)
{
#ifndef SILENT
    OpenErrorMsg(sParfileName,FileName);
    Throw(OPEN_ERROR);
#endif
}
Exemple #4
0
void ErrorHandler::OpenError(const wchar *FileName)
{
#ifndef SILENT
  OpenErrorMsg(FileName);
  Exit(RARX_OPEN);
#endif
}
Exemple #5
0
void ErrorHandler::OpenErrorMsg(const char *FileName,const wchar *FileNameW)
{
  OpenErrorMsg(NULL,NULL,FileName,FileNameW);
}
Exemple #6
0
void ErrorHandler::OpenErrorMsg(const char *FileName)
{
  OpenErrorMsg(NULL,FileName);
}
Exemple #7
0
void ErrorHandler::OpenErrorMsg(string sParfileName, const char *FileName)
{
    OpenErrorMsg(sParfileName,NULL,FileName);
}