How to know paramters type of unmamaged function
i use loadlibrarya() , getprocaddress() function address , know function (from my dll file) 3 parameters don't know types of them , how know these parameters type?
it not possible parameter types given function name in c. exported c functions name (or mangled version of name). in c++ default mangling encode parameter info such functions never exported because mangled name confusing.
the way sort of parameter info disassemble code unless code violation of licensing agreement of software owner.
michael taylor
http://blogs.msmvps.com/p3net
Visual Studio Languages , .NET Framework > Visual C#
Comments
Post a Comment