Special thanks to crwn1337 and casept for the original code
WINEDEBUG=-all wine wine_injector.exe [--edll dll.dll] [--ldll dll.dll] <exe> <optional args for exe>
You can load dll at start of the process using --edll (early load) or --ldll (late load) to load dll(s) after keypress. You can use as much --edll/--ldll as you need
- clone the repo
git clone https://github.com/crwn1337/wine_injector
- cd into the directory
cd wine_injector
- make directory 'bin'
mkdir bin
- cd into 'bin'
cd bin
- generate cmake project
cmake -DCMAKE_BUILD_TYPE=Release ..
- build cmake project
cmake --build .