moving custom instructions

This commit is contained in:
Elias Bachaalany
2024-03-08 10:31:22 -08:00
parent a6ba81aa0e
commit f70541dcbe
1430 changed files with 852 additions and 1409 deletions

View File

@@ -0,0 +1,16 @@
#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);
}