mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
9 lines
197 B
C++
9 lines
197 B
C++
#pragma once
|
|
|
|
namespace RBX {
|
|
// Returns the new entry point
|
|
void* hotpatchHook(void* origFunction, void* hookFunction);
|
|
void* hotpatchUnhook(void* pfn);
|
|
bool hookingApiHooked();
|
|
|
|
} |