You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.0 KiB
66 lines
1.0 KiB
#include <stdarg.h> |
|
|
|
#include "../types.h" |
|
#include "stubs.h" |
|
|
|
char empty_string = 0; |
|
|
|
void TermMsg(char *pszFmt, ...) |
|
{ |
|
char buf[256]; |
|
|
|
va_list args; |
|
va_start(args, pszFmt); |
|
|
|
vsnprintf(buf, sizeof(buf), pszFmt, args); |
|
|
|
eprintf("%s: %s\n", __FUNCTION__, buf); |
|
abort(); |
|
} |
|
|
|
void __fastcall ErrDlg(int template_id, int error_code, char *log_file_path, int log_line_nr) |
|
{ |
|
UNIMPLEMENTED(); |
|
} |
|
|
|
void __fastcall ErrOkDlg(int template_id, int error_code, char *log_file_path, int log_line_nr) |
|
{ |
|
UNIMPLEMENTED(); |
|
} |
|
|
|
void __fastcall DirErrorDlg(char *error) |
|
{ |
|
UNIMPLEMENTED(); |
|
} |
|
|
|
bool __cdecl InsertCDDlg() |
|
{ |
|
UNIMPLEMENTED(); |
|
} |
|
|
|
void __fastcall FileErrDlg(char *error) |
|
{ |
|
UNIMPLEMENTED(); |
|
} |
|
|
|
void __fastcall DDErrMsg(int error_code, int log_line_nr, char *log_file_path) |
|
{ |
|
UNIMPLEMENTED(); |
|
} |
|
|
|
void __fastcall DiskFreeDlg(char *error) |
|
{ |
|
UNIMPLEMENTED(); |
|
} |
|
|
|
void DrawDlg(char *pszFmt, ...) |
|
{ |
|
UNIMPLEMENTED(); |
|
} |
|
|
|
char *__cdecl TraceLastError() |
|
{ |
|
DUMMY(); |
|
|
|
return NULL; |
|
}
|
|
|