Skip to content

Commit 72064eb

Browse files
committed
Update README
1 parent e22c0d9 commit 72064eb

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# DLL Proxy Generator
2-
This project creates a new DLL which sits between a program and the original DLL. This way you can intercept all DLL calls (this is also a way to auto inject code).
3-
Program -> Your proxy DLL -> Original DLL
2+
This project creates a new DLL which sits between a game and the original DLL. This way you can intercept all DLL calls.
3+
Game -> Your proxy DLL -> Original DLL
44
Based on ProxiFy, by Kristoffer Blasiak (https://www.codeproject.com/Articles/1179147/ProxiFy-Automatic-Proxy-DLL-Generation).
55
## Build
66

@@ -29,5 +29,9 @@ If your DLL is 64 bits (from [ProxiFy](https://www.codeproject.com/Articles/1179
2929
Now go to the dllmain.cpp file and find DllMain, you'll have to set up the original DLL path (you should use Process Explorer to find out the DLL path, use [this guide](https://kb.froglogic.com/misc/getting-list-of-loaded-dlls/)) and your code there.
3030

3131
### Use the new DLL
32-
Copy your new proxy inside the program directory.
33-
If everything is working, your program will launch up and work fine (best sign ever).
32+
Copy your new proxy inside the game directory.
33+
If everything is working, your game will launch up and work fine (best sign ever).
34+
35+
Usage examples:
36+
* 32 bits: Soon
37+
* 64 bits: Soon

0 commit comments

Comments
 (0)