Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include "Functions.h"
- #include "Define.h"
- #define false 0
- #define true 1
- bool aHacker()
- {
- FILE *fp = fopen("main.exe", "rt");
- int pragma = file_exists(fp);
- if(fp == NULL)
- {
- Log("Arquivo main.exe não encontrado.");
- ExitProcess(1);
- return false;
- }
- else
- {
- ShellExecute(0,"open","main.exe",0,0,SW_SHOWNORMAL) ;
- MessageBox(NULL, "Main.exe Ativado", "By bgarcia.", MB_OK);
- return true;
- }
- while(pragma != -1)
- };
Add Comment
Please, Sign In to add comment