| 2700 | } |
| 2701 | |
| 2702 | static void FreePrivateVmData(void* Private) |
| 2703 | { |
| 2704 | auto* Data = reinterpret_cast<VMX::PRIVATE_VM_DATA*>(Private); |
| 2705 | delete Data->EptInterceptor; |
| 2706 | Supplementation::FreePhys(Private); |
| 2707 | } |
| 2708 | |
| 2709 | static bool IsVmxSupported() |
| 2710 | { |
no test coverage detected