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.
11 lines
230 B
11 lines
230 B
4 years ago
|
#pragma once
|
||
|
#include "hv_types.hpp"
|
||
|
#include "segment_intrin.h"
|
||
|
#include "vmxexit_handler.h"
|
||
|
|
||
|
namespace vmcs
|
||
|
{
|
||
|
auto setup_host(void* host_rip, u64 host_rsp) -> void;
|
||
|
auto setup_guest() -> void;
|
||
|
auto setup_controls() -> void;
|
||
|
}
|