mirror of
https://github.com/encounter/tp.git
synced 2026-03-30 11:40:53 -07:00
a6e76c0841
* some wii OS fixes * remove old dol2asm comments * remove dol2asm.h * remove function address comments * normalize ATTRIBUTE_ALIGN usage * DECL_WEAK macro * fix gcc attribute weak macro * wrap more mwcc specific things in ifdefs * fixes * fix revo sdk version flags * fixes
21 lines
405 B
C++
21 lines
405 B
C++
#ifndef D_MSG_D_MSG_UNIT_H
|
|
#define D_MSG_D_MSG_UNIT_H
|
|
|
|
#include "JSystem/JMessage/JMessage.h"
|
|
|
|
class dMsgUnit_c {
|
|
public:
|
|
dMsgUnit_c();
|
|
void setTag(int, int, char*, bool);
|
|
|
|
virtual ~dMsgUnit_c();
|
|
};
|
|
|
|
extern dMsgUnit_c g_msg_unit;
|
|
|
|
inline void dMsgUnit_setTag(int param_0, int param_1, char* param_2) {
|
|
g_msg_unit.setTag(param_0, param_1, param_2, true);
|
|
}
|
|
|
|
#endif /* D_MSG_D_MSG_UNIT_H */
|