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.
37 lines
1.7 KiB
37 lines
1.7 KiB
/* |
|
* UNPUBLISHED -- Rights reserved under the copyright laws of the |
|
* United States. Use of a copyright notice is precautionary only and |
|
* does not imply publication or disclosure. |
|
* |
|
* THIS DOCUMENTATION CONTAINS CONFIDENTIAL AND PROPRIETARY INFORMATION |
|
* OF BLIZZARD ENTERTAINMENT. ANY DUPLICATION, MODIFICATION, |
|
* DISTRIBUTION, OR DISCLOSURE IS STRICTLY PROHIBITED WITHOUT THE PRIOR |
|
* EXPRESS WRITTEN PERMISSION OF BLIZZARD ENTERTAINMENT. |
|
*/ |
|
|
|
//appfat |
|
extern int appfat_terminated; // weak |
|
extern char sz_error_buf[256]; |
|
extern int terminating; // weak |
|
extern int cleanup_thread_id; // weak |
|
extern char empty_string; |
|
|
|
char *__fastcall GetErr(int error_code); |
|
void __fastcall GetDDErr(int error_code, char *error_buf, int error_buf_len); |
|
void __fastcall GetDSErr(int error_code, char *error_buf, int error_buf_len); |
|
char *__cdecl GetLastErr(); |
|
void TermMsg(char *pszFmt, ...); |
|
void __fastcall MsgBox(char *pszFmt, va_list va); |
|
void __cdecl FreeDlg(); |
|
void DrawDlg(char *pszFmt, ...); |
|
void __fastcall DDErrDlg(int error_code, int log_line_nr, char *log_file_path); |
|
void __fastcall DSErrDlg(int error_code, int log_line_nr, char *log_file_path); |
|
void __fastcall CenterDlg(HWND hDlg); |
|
void __fastcall TermDlg(int template_id, int error_code, char *log_file_path, int log_line_nr); |
|
bool __stdcall FuncDlg(HWND hDlg, UINT uMsg, WPARAM wParam, char *text); |
|
void __fastcall TextDlg(HWND hDlg, char *text); |
|
void __fastcall ErrDlg(template_id template_id, int error_code, char *log_file_path, int log_line_nr); |
|
void __fastcall FileErrDlg(char *error); |
|
void __fastcall DiskFreeDlg(char *error); |
|
bool __cdecl InsertCDDlg(); |
|
void __fastcall DirErrDlg(char *error);
|
|
|