mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-01 01:08:48 -04:00
8b4808da8a
* TRK full match * remove trk asm * ar done * cleanup some dolphin headers * more dolphin cleanup * cleanup / GD fully matched * almost all of GX fully matched * GX / Mtx full matched * most of OS done * pad done * most of VI * remove asm * forgot couple vec funcs * couple JUtility matches
19 lines
331 B
C
19 lines
331 B
C
#ifndef METROTRK_PORTABLE_MSGBUF_H
|
|
#define METROTRK_PORTABLE_MSGBUF_H
|
|
|
|
#include "trk.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
DSError TRKSetBufferPosition(TRKBuffer* msg, u32 pos);
|
|
void* TRKGetBuffer(int);
|
|
void TRKResetBuffer(TRKBuffer* msg, BOOL keepData);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* METROTRK_PORTABLE_MSGBUF_H */
|