| 6 | #include <array> |
| 7 | |
| 8 | struct HookData { |
| 9 | void** vtblEntryPtr; |
| 10 | void* newFn; |
| 11 | void* oldFn; |
| 12 | }; |
| 13 | |
| 14 | enum { MaxHooks = 32 }; |
| 15 | std::array<HookData, MaxHooks> g_methodHooks; |
nothing calls this directly
no outgoing calls
no test coverage detected