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.
32 lines
1.2 KiB
32 lines
1.2 KiB
//HEADER_GOES_HERE |
|
#ifndef __APPFAT_H__ |
|
#define __APPFAT_H__ |
|
|
|
extern char sz_error_buf[256]; |
|
extern int terminating; // weak |
|
extern int cleanup_thread_id; // weak |
|
|
|
char *GetErrorStr(DWORD error_code); |
|
void TraceErrorDD(HRESULT hError, char *pszBuffer, DWORD dwMaxChars); |
|
void TraceErrorDS(HRESULT hError, char *pszBuffer, DWORD dwMaxChars); |
|
char *TraceLastError(); |
|
void __cdecl app_fatal(const char *pszFmt, ...); |
|
void MsgBox(const char *pszFmt, va_list va); |
|
void FreeDlg(); |
|
void __cdecl DrawDlg(char *pszFmt, ...); |
|
#ifdef _DEBUG |
|
void assert_fail(int nLineNo, const char *pszFile, const char *pszFail); |
|
#endif |
|
void DDErrMsg(DWORD error_code, int log_line_nr, char *log_file_path); |
|
void DSErrMsg(DWORD error_code, int log_line_nr, char *log_file_path); |
|
void center_window(HWND hDlg); |
|
void ErrDlg(int template_id, DWORD error_code, char *log_file_path, int log_line_nr); |
|
BOOL __stdcall FuncDlg(HWND hDlg, UINT uMsg, WPARAM wParam, char *text); |
|
void TextDlg(HWND hDlg, char *text); |
|
void ErrOkDlg(int template_id, DWORD error_code, char *log_file_path, int log_line_nr); |
|
void FileErrDlg(const char *error); |
|
void DiskFreeDlg(char *error); |
|
BOOL InsertCDDlg(); |
|
void DirErrorDlg(char *error); |
|
|
|
#endif /* __APPFAT_H__ */
|
|
|