mirror of
https://github.com/Mr-Wiseguy/Zelda64Recomp.git
synced 2025-02-16 21:50:08 +00:00
12 lines
272 B
C
12 lines
272 B
C
#ifndef __PATCHES_H__
|
|
#define __PATCHES_H__
|
|
|
|
// TODO fix renaming symbols in patch recompilation
|
|
#define osRecvMesg osRecvMesg_recomp
|
|
#define osSendMesg osSendMesg_recomp
|
|
#include "global.h"
|
|
#include "rt64_extended_gbi.h"
|
|
|
|
int recomp_printf(const char* fmt, ...);
|
|
|
|
#endif
|