|
Hi hajir !
An Exe can have a export table, can export functions and also export variables too (uses __declspec(dllexport) in VC++), not have to be a DLL. We can call the Exe's export functions with LoadLibrary and GetProcAddress.
We can use IDA to decompile/extract the ASM code of the require function.
Regards,
TQN
Last edited by TQN; 01-09-2005 at 09:45.
|