mirror of
https://github.com/zeldaret/tp
synced 2026-07-07 06:04:58 -04:00
4bd825e76c
* work on d_file_sel_warning * various cleanup * attempt to fix d_gameover * event cleanup * trk work * most of TRK done * remove asm
18 lines
262 B
C
18 lines
262 B
C
#ifndef OS_DOLPHIN_TARGET_OPTIONS_H
|
|
#define OS_DOLPHIN_TARGET_OPTIONS_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
u8 GetUseSerialIO(void);
|
|
void SetUseSerialIO(u8);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* OS_DOLPHIN_TARGET_OPTIONS_H */
|