HyperDbg/examples/user/hyperdbg_app/header/pch.h
2026-06-13 14:20:32 +02:00

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"