Advertisement
Guest User

Untitled

a guest
May 19th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. // MAIN HEADER
  2. #include "main.h"
  3.  
  4. // DLL MAIN
  5. BOOL WINAPI DllMain(HMODULE hModule, DWORD reason_for_call, LPVOID lpReserved)
  6. {
  7. if(reason_for_call == DLL_PROCESS_ATTACH)
  8. {
  9. // INITIALIZER(S)
  10. UpdateAlert(); // Alerts users of updates.
  11.  
  12. StarcraftHookingAPI();
  13. ConfigurationInitializer(hModule);
  14. StarcraftInput();
  15.  
  16. // RemoveGameName();
  17. SelectionExploit();
  18. DrophackProtect();
  19. LockDownBypass();
  20. }
  21. return true;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement