HyperDbg/hyperdbg/script-engine/pch.h
2024-07-28 20:42:48 +09:00

41 lines
815 B
C

/**
* @file pch.h
* @author M.H. Gholamrezaei (mh@hyperdbg.org)
*
* @details Pre-compiled headers
* @version 0.1
* @date 2020-10-22
*
* @copyright This project is released under the GNU Public License v3.
*
*/
#pragma once
//
// Environment headers
//
#include "platform/user/header/Environment.h"
//
// Exclude rarely-used stuff from Windows headers
//
#define WIN32_LEAN_AND_MEAN
//
// Windows Header Files
//
#include <windows.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
#include "SDK/imports/user/HyperDbgSymImports.h"
#include "SDK/headers/HardwareDebugger.h"
#include "common.h"
#include "scanner.h"
#include "globals.h"
#include "..\include\SDK\headers\ScriptEngineCommonDefinitions.h"
#include "script-engine.h"
#include "parse-table.h"
#include "type.h"