mirror of
https://github.com/BanjoRecomp/BanjoRecomp
synced 2026-05-31 08:51:35 -04:00
12 lines
308 B
C
12 lines
308 B
C
#ifndef __RECOMP_FUNCS_H__
|
|
#define __RECOMP_FUNCS_H__
|
|
|
|
#include "patch_helpers.h"
|
|
|
|
DECLARE_FUNC(void, recomp_load_overlays, u32 rom, void* ram, u32 size);
|
|
DECLARE_FUNC(void, recomp_puts, const char* data, u32 size);
|
|
DECLARE_FUNC(void, recomp_exit);
|
|
DECLARE_FUNC(void, recomp_error, const char* str);
|
|
|
|
#endif
|