spidey-decomp/reloc.h

13 lines
221 B
C
Raw Normal View History

2024-05-23 17:19:28 +00:00
#pragma once
#ifndef RELOC_H
#define RELOC_H
2024-05-29 16:19:17 +00:00
#include "export.h"
EXPORT void Reloc_Unload(char*);
EXPORT void Reloc_Unload(unsigned int);
2024-07-14 13:32:44 +00:00
EXPORT void Reloc_CallUserFunction(const char*, u32, const u32*, u32*);
2024-05-29 16:19:17 +00:00
#endif