mirror of
https://github.com/LouisShark/chatgpt_system_prompt.git
synced 2025-07-05 14:20:33 -04:00
20 lines
296 B
C++
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
|