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.
18 lines
356 B
18 lines
356 B
|
8 years ago
|
//HEADER_GOES_HERE
|
||
|
|
#ifndef __ERROR_H__
|
||
|
|
#define __ERROR_H__
|
||
|
|
|
||
|
|
extern char msgtable[80];
|
||
|
|
extern char msgdelay; // weak
|
||
|
|
extern char msgflag; // weak
|
||
|
|
extern char msgcnt; // weak
|
||
|
|
|
||
|
|
void __fastcall InitDiabloMsg(char e);
|
||
|
|
void __cdecl ClrDiabloMsg();
|
||
|
|
void __cdecl DrawDiabloMsg();
|
||
|
|
|
||
|
|
/* data */
|
||
|
|
extern char *MsgStrings[44];
|
||
|
|
|
||
|
|
#endif /* __ERROR_H__ */
|