Guest User

aHacker

a guest
Apr 28th, 2012
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #include "Functions.h"
  2. #include "Define.h"
  3.  
  4.  
  5. #define false 0
  6. #define true 1
  7.  
  8. bool aHacker()
  9. {
  10.     FILE *fp = fopen("main.exe", "rt");
  11.     int pragma = file_exists(fp);
  12.     if(fp == NULL)
  13.     {
  14.         Log("Arquivo main.exe não encontrado.");
  15.         ExitProcess(1);
  16.         return false;
  17.     }
  18.     else
  19.     {
  20.  
  21.          ShellExecute(0,"open","main.exe",0,0,SW_SHOWNORMAL) ;
  22.          MessageBox(NULL, "Main.exe Ativado", "By bgarcia.", MB_OK);
  23.          return true;
  24.     }
  25.     while(pragma != -1)
  26. };
Add Comment
Please, Sign In to add comment