MCPcopy Create free account
hub / github.com/aliasIsolation/aliasIsolation / HookData

Class HookData

src/dll/methodHook.cpp:8–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6#include <array>
7
8struct HookData {
9 void** vtblEntryPtr;
10 void* newFn;
11 void* oldFn;
12};
13
14enum { MaxHooks = 32 };
15std::array<HookData, MaxHooks> g_methodHooks;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected