mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-07-04 03:12:48 -04:00
82a28f7a23
* 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 */
|