Tagged Questions
1
vote
1answer
102 views
prevent hook dll loading
Is there a way to way set process security permissions or some other way to disable Windows from loading global window hook dlls?
I don't want to disable SetWindowsHookEx, I just want to disable the ...
1
vote
1answer
581 views
Hook keyboard from injected DLL using KeyboardProc / SetWindowsHookEx
Note: I am working in plain C. Not C++, not C#.
I am working on a mod. I've already written a working DLL-injector, as well as the DLL to be injected. Everything is going well, apart from the ...
0
votes
1answer
312 views
Hooking Win32 windows creation/resize/querying sizes
I'm trying to "stretch" an existing application.
The goal is to make an existing application become larger without changing the code of that application.
A cosntraint is that the stretched ...