mirror of
https://github.com/krystalgamer/spidey-decomp.git
synced 2024-11-23 13:29:48 +00:00
13 lines
221 B
C
13 lines
221 B
C
#pragma once
|
|
|
|
#ifndef RELOC_H
|
|
#define RELOC_H
|
|
|
|
#include "export.h"
|
|
|
|
EXPORT void Reloc_Unload(char*);
|
|
EXPORT void Reloc_Unload(unsigned int);
|
|
EXPORT void Reloc_CallUserFunction(const char*, u32, const u32*, u32*);
|
|
|
|
#endif
|