| 18 | } |
| 19 | |
| 20 | bool ProxyFuncVFTable::installHook() { |
| 21 | return (m_isInited) && WriteToProtectedMem(m_pTarget, &m_pSubstFunc, NULL, sizeof(m_pSubstFunc)); |
| 22 | } |
| 23 | |
| 24 | bool ProxyFuncVFTable::removeHook() { |
| 25 | return (m_isInited) && WriteToProtectedMem(m_pTarget, &m_pOriginalFunc, NULL, sizeof(m_pOriginalFunc)); |
nothing calls this directly
no test coverage detected