mirror of
https://github.com/LouisShark/chatgpt_system_prompt.git
synced 2025-07-05 14:20:33 -04:00
16 lines
270 B
C++
16 lines
270 B
C++
#include "InputHandler.hpp"
|
|
#include "Process.hpp"
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
using namespace DLL_Injector;
|
|
|
|
InjectionData iData;
|
|
|
|
// Handle console input.
|
|
if (HandleInput(argc, argv, iData) == -1)
|
|
return -1;
|
|
|
|
// Inject DLL.
|
|
return InjectDLL(iData);
|
|
}
|