| 241 | } |
| 242 | |
| 243 | bool TF2Tools::QueryInterfaceDrop(SMInterface *pInterface) |
| 244 | { |
| 245 | if (pInterface == g_pBinTools) |
| 246 | { |
| 247 | return false; |
| 248 | } |
| 249 | |
| 250 | if (pInterface == g_pSDKHooks) |
| 251 | { |
| 252 | return false; |
| 253 | } |
| 254 | |
| 255 | if (pInterface == g_pSDKTools) |
| 256 | { |
| 257 | g_pSDKTools = NULL; |
| 258 | } |
| 259 | |
| 260 | return IExtensionInterface::QueryInterfaceDrop(pInterface); |
| 261 | } |
| 262 | |
| 263 | void TF2Tools::NotifyInterfaceDrop(SMInterface *pInterface) |
| 264 | { |
no outgoing calls
no test coverage detected