| 188 | #if defined _M_IX86 |
| 189 | void* g_RtlInsertInvertedFunctionTable = nullptr; |
| 190 | void* GetRtlInsertInvertedFunctionTable() |
| 191 | { |
| 192 | if (!g_RtlInsertInvertedFunctionTable) |
| 193 | g_RtlInsertInvertedFunctionTable = FindNtDllSymbol(GetRtlInsertInvertedFunctionTableOffset()); |
| 194 | return g_RtlInsertInvertedFunctionTable; |
| 195 | } |
| 196 | |
| 197 | void* g_LdrpInvertedFunctionTable = nullptr; |
| 198 | void* GetLdrpInvetedFunctionTable() |
no test coverage detected