Files
2025-09-18 17:55:52 -04:00

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();
}