mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
19 lines
268 B
C
19 lines
268 B
C
#ifndef TRK_SERPOLL
|
|
#define TRK_SERPOLL
|
|
#include "types.h"
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void TRKGetInput();
|
|
TRKResult TRKInitializeSerialHandler();
|
|
TRKResult TRKTerminateSerialHandler();
|
|
|
|
extern u8* gTRKInputPendingPtr;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|