O.P. [?] Calling a procedure by its address
I've got a big secret project that I'm working on, but I'm kinda stuck. The thing is: I know the address of a certain procedure in a process - let's say CreateWindowExW() - and I want to call the function by its address, rather than through Interop.Call(). Can this be done?
Obviously, if there's something like a CallProcedure() function in a Windows DLL I have to use Interop.Call(), but I don't want to call CreateWindowExW directly - if ya take my meaning
|