mirror of
https://github.com/zeldaret/tp
synced 2026-06-01 09:47:52 -04:00
1114b13da8
* d_a_alldie / d_a_tboxSw / d_a_tag_gstart / d_a_tag_hstop * dolphin OS work / cleanup * dolphin GX work / cleanup * finish changing dolphin files to C * more files into C * match rest of MSL_C math functions * more dolphin files converted to C * remove asm * d_bg_w work * remove asm * d_a_alink work / kytag14
18 lines
297 B
C
18 lines
297 B
C
#ifndef METROTRK_PORTABLE_MSGBUF_H
|
|
#define METROTRK_PORTABLE_MSGBUF_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
typedef struct TRKBuffer {
|
|
u8 _00[4];
|
|
u32 _04;
|
|
s32 _08;
|
|
u32 _0C;
|
|
u32 _10;
|
|
u8 m_buffer[0x87C];
|
|
} TRKBuffer;
|
|
|
|
s32 TRKSetBufferPosition(TRKBuffer*, u32);
|
|
|
|
#endif /* METROTRK_PORTABLE_MSGBUF_H */
|