You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
321 B

#pragma once
#include "vmxon.hpp"
#include "hv_types.hpp"
#include "command.hpp"
#include "exception.hpp"
namespace handle
{
auto xsetbv(hv::pguest_registers regs) -> bool;
auto rdmsr(hv::pguest_registers regs) -> bool;
auto wrmsr(hv::pguest_registers regs) -> bool;
auto vmcall(hv::pguest_registers regs) -> bool;
}