mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
27 lines
337 B
C
27 lines
337 B
C
#ifndef TRK_H
|
|
#define TRK_H
|
|
#include "types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"{
|
|
#endif
|
|
|
|
typedef enum {
|
|
TRKSuccess = 0,
|
|
TRKError100 = 0x100,
|
|
TRKError301 = 0x301,
|
|
TRKError302 = 0x302,
|
|
TRKError500 = 0x500
|
|
}TRKResult;
|
|
|
|
typedef struct TRKEvent{
|
|
u8 mEventType;
|
|
int mMax;
|
|
int mBufferIndex;
|
|
}TRKEvent;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|