mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 14:41:38 -04:00
22 lines
337 B
C
22 lines
337 B
C
#ifndef _DOLPHIN_TRK_H
|
|
#define _DOLPHIN_TRK_H
|
|
|
|
#include "types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif // ifdef __cplusplus
|
|
|
|
unsigned int TRKTargetContinue(void);
|
|
void TRKTargetSetStopped(unsigned int);
|
|
void TRKSwapAndGo();
|
|
|
|
void UnreserveEXI2Port();
|
|
void ReserveEXI2Port();
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif // ifdef __cplusplus
|
|
|
|
#endif
|