Running DllImport commands from CreateRemoteThread
Posted
by Gbps
on Stack Overflow
See other posts from Stack Overflow
or by Gbps
Published on 2010-06-12T22:47:25Z
Indexed on
2010/06/12
22:52 UTC
Read the original article
Hit count: 355
I have a function named Msg
that's imported from a dll named tier0.dll
. I can DllImport
this just fine, but the command only works when the dll is attached to another process which can complete the Msg command. Using CreateRemoteThread
, it is possible that I could call Msg
using C# while still letting it have access to the variables of the attached process it needs to complete the command? Thanks!
© Stack Overflow or respective owner