mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-08-31 10:07:02 +00:00
- Improve Precompiled header usage - Change "Output Directory" and "Intermediate Directory" of all projects to the same values - Discard pdb files from release file
23 lines
388 B
C
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"
|