mirror of
https://github.com/Mr-Wiseguy/Zelda64Recomp.git
synced 2024-11-05 22:35:06 +01:00
25 lines
447 B
C
25 lines
447 B
C
#ifndef __PATCH_HELPERS_H__
|
|
#define __PATCH_HELPERS_H__
|
|
|
|
#ifdef MIPS
|
|
#include "ultra64.h"
|
|
#else
|
|
#include "librecomp/recomp.h"
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
# define EXTERNC extern "C"
|
|
#else
|
|
# define EXTERNC
|
|
#endif
|
|
|
|
#ifdef MIPS
|
|
# define DECLARE_FUNC(type, name, ...) \
|
|
EXTERNC type name(__VA_ARGS__)
|
|
#else // MIPS
|
|
# define DECLARE_FUNC(type, name, ...) \
|
|
EXTERNC void name(uint8_t* rdram, recomp_context* ctx)
|
|
#endif
|
|
|
|
#endif
|