25 lines
434 B
C
25 lines
434 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#ifndef INCLUDES_H
|
||
|
|
#define INCLUDES_H
|
||
|
|
|
||
|
|
#include <iostream>
|
||
|
|
#include <iomanip>
|
||
|
|
#include <vector>
|
||
|
|
#include <functional>
|
||
|
|
#include <map>
|
||
|
|
#include <random>
|
||
|
|
#include <string>
|
||
|
|
|
||
|
|
#include <windows.h>
|
||
|
|
#include <ntstatus.h>
|
||
|
|
#include <winternl.h>
|
||
|
|
#include <intrin.h>
|
||
|
|
#include <definitions.h>
|
||
|
|
#include <enums.h>
|
||
|
|
#include <structs.h>
|
||
|
|
#include <syscalls.h>
|
||
|
|
#include <callstackspoof.h>
|
||
|
|
#include <sleep.h>
|
||
|
|
|
||
|
|
#endif
|