mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 05:07:48 +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();
|
|
|
|
} |