mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
13 lines
407 B
C++
13 lines
407 B
C++
#pragma once
|
|
|
|
namespace RBX
|
|
{
|
|
typedef BOOLEAN (NTAPI *RtlDispatchExceptionPfn)(PEXCEPTION_RECORD exRec, PCONTEXT ctx);
|
|
// extern RtlDispatchExceptionPfn vehHookContinue; // moved to App because this needs to be checked.
|
|
extern DWORD* vehHookLocation;
|
|
BOOLEAN RtlDispatchExceptionHook(PEXCEPTION_RECORD exRec, PCONTEXT ctx);
|
|
|
|
void hookApi();
|
|
void unhookApi();
|
|
bool hookPreVeh();
|
|
} |