HyperDbg/hyperdbg/script-engine/pch.h
Behrooz Abbassi f817cbb801
Refactor: Improve projects configurations
- Improve Precompiled header usage
- Change "Output Directory" and "Intermediate Directory" of all projects to the same values
- Discard pdb files from release file
2022-05-04 16:38:21 -07:00

23 lines
388 B
C

#pragma once
//
// 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 "common.h"
#include "scanner.h"
#include "globals.h"
#include "ScriptEngineCommonDefinitions.h"
#include "script-engine.h"
#include "parse-table.h"