Skip to content

lyhaxx/SetWindowsHookEx-Injector

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 

Repository files navigation

SetWindowsHookEx-Injector

SetWindowsHookEx Injector with example

  • hookloader.exe = injector
  • test.dll = example dll
  1. Just add this to your dll: extern "C" __declspec(dllexport) int NextHook(int code, WPARAM wParam, LPARAM lParam) { return CallNextHookEx(NULL, code, wParam, lParam); }

  2. Edit your game window in hookloader/main.cpp: HWND hwnd = FindWindow(L"UnrealWindow", NULL); //<-- game window class example for valorant here

  3. Compile & done

Usage: hookloader.exe (dllname).dll or drag (dllname).dll into hookloader.exe

About

Fork of DrNseven/SetWidowsHookEx-Injector

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 100.0%