mirror of
https://github.com/diasurgical/devilution.git
synced 2026-06-20 05:46:12 +00:00
49a6f4f9fc
Add definitions, other junk.
12 lines
271 B
C
12 lines
271 B
C
//HEADER_GOES_HERE
|
|
#ifndef __TMSG_H__
|
|
#define __TMSG_H__
|
|
|
|
extern TMsg *sgpTimedMsgHead;
|
|
|
|
int __fastcall tmsg_get(unsigned char *pbMsg, char bLen);
|
|
void __fastcall tmsg_add(unsigned char *pbMsg, char bLen);
|
|
void __cdecl tmsg_cleanup();
|
|
|
|
#endif /* __TMSG_H__ */
|