Advertisement
Guest User

Untitled

a guest
Aug 13th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.39 KB | None | 0 0
  1. #include <windows.h> // Includes
  2. #include <stdio.h> // Includes
  3.  
  4. BOOL WINAPI DllMain(HINSTANCE module, DWORD dwReason, LPVOID lpvReserved) // WinAPI Call
  5. {
  6.    if(dwReason == DLL_PROCESS_ATTACH) // Process Attatch
  7.    {
  8.       LoadLibrary(L"Meine DLL.dll"); //Deine DLL (Muss sich mit der HID.dll im gleichen Ordner befinden, sonst noch Ordner angeben) 'String
  9.    }
  10. return TRUE; //return :3
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement