mirror of
https://github.com/momo5502/hypervisor.git
synced 2025-04-19 13:42:55 +00:00
19 lines
321 B
C++
19 lines
321 B
C++
#pragma once
|
|
|
|
#include <ntddk.h>
|
|
#include <intrin.h>
|
|
#include <Ntstrsafe.h>
|
|
|
|
#pragma warning(push)
|
|
#pragma warning(disable: 4201)
|
|
#include <ia32.hpp>
|
|
#pragma warning(pop)
|
|
|
|
#define STRINGIFY_(a) #a
|
|
#define STRINGIFY(a) STRINGIFY_(a)
|
|
|
|
#include "stdint.hpp"
|
|
#include "nt_ext.hpp"
|
|
#include "new.hpp"
|
|
#include "exception.hpp"
|