1
0
Fork 0
mirror of https://github.com/jugeeya/UltimateTrainingModpack.git synced 2025-01-20 09:20:13 +00:00
UltimateTrainingModpack/source/saltysd_dynamic.h
Shivam Dutt 1f9d492626 Updated to latest version of code-mod-framework
Fixed formatting and indentation
2019-05-27 17:08:56 -05:00

19 lines
665 B
C

#ifndef SALTYSD_DYNAMIC_H
#define SALTYSD_DYNAMIC_H
#include <stdint.h>
#include "useful.h"
extern "C" {
uint64_t SaltySDCore_GetSymbolAddr(void* base, char* name) LINKABLE;
uint64_t SaltySDCore_FindSymbol(char* name) LINKABLE;
uint64_t SaltySDCore_FindSymbolBuiltin(char* name) LINKABLE;
void SaltySDCore_RegisterModule(void* base) LINKABLE;
void SaltySDCore_RegisterBuiltinModule(void* base) LINKABLE;
void SaltySDCore_DynamicLinkModule(void* base) LINKABLE;
void SaltySDCore_ReplaceModuleImport(void* base, char* name, void* new_replace) LINKABLE;
void SaltySDCore_ReplaceImport(char* name, void* new_replace) LINKABLE;
}
#endif // SALTYSD_DYNAMIC_H