2024-03-03 07:36:14 +00:00
|
|
|
#ifndef __RECOMP_FUNCS_H__
|
|
|
|
#define __RECOMP_FUNCS_H__
|
|
|
|
|
|
|
|
#include "patch_helpers.h"
|
|
|
|
|
2024-05-18 02:23:48 +00:00
|
|
|
DECLARE_FUNC(void, recomp_load_overlays, u32 rom, void* ram, u32 size);
|
2024-03-03 07:36:14 +00:00
|
|
|
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);
|
2024-04-05 16:25:30 +00:00
|
|
|
DECLARE_FUNC(u32, recomp_get_pending_set_time);
|
2024-05-04 17:08:14 +00:00
|
|
|
DECLARE_FUNC(s32, recomp_autosave_enabled);
|
2024-03-03 07:36:14 +00:00
|
|
|
|
|
|
|
#endif
|