Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
DetourCreateProcessWithDllsW with LPCWSTR dll names #82
Comments
|
I think it comes down to UPDATE_IMPORTS_XX in In my case I currently just copy the DLL to the target directory if needed, though have also considered using |
|
use LPCSTR is because createwth.cpp use IAT to inject your dlls to destination process, so the imported dll name items must be ANSI version string,so it is not a problem. |
Hello Detours Team,
currently, it is not possible to call DetourCreateProcessWithDllsW with wide character dll names, because DetourCreateProcessWithDllsW uses LPCSTR and StringCchLengthA to count the dll name length. Please change the DetourCreateProcessWithDllsW, so that it can consume wide chars for dll names respectively.
Thank you!
Detours/src/creatwth.cpp
Line 1505 in edc8b07
The text was updated successfully, but these errors were encountered: