mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-08-26 17:04:00 +00:00
45 lines
731 B
C++
45 lines
731 B
C++
/**
|
|
* @file pch.h
|
|
* @author Sina Karvandi (sina@hyperdbg.org)
|
|
* @brief Pre-compiled headers for reversing machine's module
|
|
* @details
|
|
*
|
|
* @version 0.2
|
|
* @date 2023-02-01
|
|
*
|
|
* @copyright This project is released under the GNU Public License v3.
|
|
*
|
|
*/
|
|
#pragma once
|
|
|
|
//
|
|
// Environment headers
|
|
//
|
|
#include "platform/general/header/Environment.h"
|
|
|
|
//
|
|
// Windows SDK headers
|
|
//
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
//
|
|
// Scope definitions
|
|
//
|
|
#define HYPERDBG_USER_MODE_REVERSING_MODULE
|
|
|
|
#include <Windows.h>
|
|
|
|
#include <iostream>
|
|
#include <stdio.h>
|
|
#include <string>
|
|
|
|
//
|
|
// HyperDbg SDK headers
|
|
//
|
|
#include "SDK/HyperDbgSdk.h"
|
|
#include "SDK/imports/user/HyperDbgLibImports.h"
|
|
|
|
//
|
|
// Other internal headers
|
|
//
|
|
#include "example-ipt.h"
|