1
0
mirror of https://github.com/momo5502/hypervisor.git synced 2025-07-03 17:51:52 +00:00

Prepare ept hooking

This commit is contained in:
momo5502
2022-04-12 20:05:51 +02:00
parent c7e29af2b5
commit dfa1172f34
9 changed files with 84 additions and 13 deletions

16
src/driver/ept.hpp Normal file
View File

@ -0,0 +1,16 @@
#pragma once
namespace vmx
{
class ept
{
public:
ept();
~ept();
ept(ept&&) = delete;
ept(const ept&) = delete;
ept& operator=(ept&&) = delete;
ept& operator=(const ept&) = delete;
};
}