1
0
mirror of https://github.com/momo5502/hypervisor.git synced 2025-08-30 13:43:16 +00:00
Files
hypervisor/src/driver/std_include.hpp
2022-12-27 13:30:20 +01:00

22 lines
393 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"
// Not sure if this is good, but fuck it.
using process_id = uint32_t;