mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-12 21:14:38 -04:00
4df8ccc871
* Reorganize files into libs/{dolphin,JSystem,PowerPC_EABI_Support,revolution,TRK_MINNOW_DOLPHIN}
* Update configure.py and project.py for new libs structure
* Refactor `#include <dolphin/x.h>` -> `<x.h>`
* Remove `__REVOLUTION_SDK__` forwards from dolphin
* Fix dolphin/ references in revolution
* Wrap `#include <dolphin.h>` in `!__REVOLUTION_SDK__`
* Always build TRK against dolphin headers
* Resolve revolution SDK header resolution issues
14 lines
212 B
C
14 lines
212 B
C
#ifndef METROTRK_PORTABLE_MSG_H
|
|
#define METROTRK_PORTABLE_MSG_H
|
|
|
|
#include <types.h>
|
|
|
|
typedef struct _TRK_Msg {
|
|
u8 _00[8];
|
|
u32 m_msgLength;
|
|
u32 _0C;
|
|
u32 m_msg;
|
|
} TRK_Msg;
|
|
|
|
#endif /* METROTRK_PORTABLE_MSG_H */
|