24 lines
375 B
C
24 lines
375 B
C
#ifndef METROTRK_PORTABLE_MSG_H
|
|
#define METROTRK_PORTABLE_MSG_H
|
|
|
|
#include "PowerPC_EABI_Support/MetroTRK/trk.h"
|
|
#include "dolphin/types.h"
|
|
|
|
typedef struct _TRK_Msg {
|
|
u8 _00[8];
|
|
u32 m_msgLength;
|
|
u32 _0C;
|
|
u32 m_msg;
|
|
} TRK_Msg;
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
DSError TRKMessageSend(TRK_Msg* msg);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* METROTRK_PORTABLE_MSG_H */
|