diff options
| author | auth12 <[email protected]> | 2021-07-04 01:15:09 +0100 |
|---|---|---|
| committer | auth12 <[email protected]> | 2021-07-04 01:15:09 +0100 |
| commit | 661b73df47caae2cc62a9a2f7b85eb925ff1f80b (patch) | |
| tree | 79ab09cc3b9877b52fe32186ba3c0c354d0120bd /sysmap/src/include.h | |
| download | archived-sysmap-661b73df47caae2cc62a9a2f7b85eb925ff1f80b.tar.xz archived-sysmap-661b73df47caae2cc62a9a2f7b85eb925ff1f80b.zip | |
initial commit
Diffstat (limited to 'sysmap/src/include.h')
| -rw-r--r-- | sysmap/src/include.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/sysmap/src/include.h b/sysmap/src/include.h new file mode 100644 index 0000000..ebd4953 --- /dev/null +++ b/sysmap/src/include.h @@ -0,0 +1,28 @@ +#pragma once + +#include <algorithm> +#include <array> +#include <chrono> +#include <cstring> +#include <fstream> +#include <functional> +#include <iostream> +#include <memory> +#include <sstream> +#include <string> +#include <thread> +#include <vector> +#include <unordered_map> +#include <map> +#include <utility> +#include <filesystem> + +#include <phnt_windows.h> +#include <phnt.h> + +using namespace std::chrono_literals; + +using u8 = uint8_t; +using u16 = uint16_t; +using u32 = uint32_t; +using u64 = uint64_t;
\ No newline at end of file |