Files
GameAnalyzer/Header.h
T
2026-05-21 23:59:33 +02:00

22 lines
433 B
C++

#pragma once
#include <iostream>
#include <algorithm>
#include <cctype>
#include <cstring>
#include <sstream>
#include <string>
#include <windows.h>
#include <psapi.h>
#include <detours.h>
// If compiling as 64-bit
#ifdef _M_X64
#pragma comment (lib, "detoursx64.lib")
#endif // _M_X64
// If compiling as 32-bit
#ifdef _M_IX86
#pragma comment (lib, "detoursx86.lib")
#endif // _M_IX86
bool analyze_process_handle(HANDLE hProcess);