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:
16
src/driver/ept.hpp
Normal file
16
src/driver/ept.hpp
Normal 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;
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user