system-prompts/prompts/gpts/knowledge/CodeGPT Decompiler & Cheat Developer/Process.hpp
2024-01-26 10:41:24 -08:00

20 lines
296 B
C++

#pragma once
#include <string>
#include <Windows.h>
namespace DLL_Injector
{
struct InjectionData
{
DWORD procID;
std::string procName;
BOOL isX64;
std::string dllPath;
};
DWORD GetProcessID(const char* procName);
int InjectDLL(InjectionData& data);
} // namespace DLL_Injector