mirror of
https://github.com/Mr-Wiseguy/Zelda64Recomp.git
synced 2024-11-07 15:15:05 +01:00
13 lines
430 B
C
13 lines
430 B
C
|
#ifndef __RECOMP_FUNCS_H__
|
||
|
#define __RECOMP_FUNCS_H__
|
||
|
|
||
|
#include "patch_helpers.h"
|
||
|
|
||
|
DECLARE_FUNC(void, recomp_puts, const char* data, u32 size);
|
||
|
DECLARE_FUNC(void, recomp_exit);
|
||
|
DECLARE_FUNC(void, recomp_handle_quicksave_actions, OSMesgQueue* enter_mq, OSMesgQueue* exit_mq);
|
||
|
DECLARE_FUNC(void, recomp_handle_quicksave_actions_main, OSMesgQueue* enter_mq, OSMesgQueue* exit_mq);
|
||
|
DECLARE_FUNC(u16, recomp_get_pending_warp);
|
||
|
|
||
|
#endif
|