ChatGPT custom prompts
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user