harryn4484
February 13th, 2003, 01:40 PM
I have a 16 bit dll and associated .lib and .map files. How do I find the entry points for the various functions. One is giving me a GPF but I cannot relate the address to a function entry point.
|
Click to See Complete Forum and Search --> : 16 bit dll entry points harryn4484 February 13th, 2003, 01:40 PM I have a 16 bit dll and associated .lib and .map files. How do I find the entry points for the various functions. One is giving me a GPF but I cannot relate the address to a function entry point. Mike Harnad February 13th, 2003, 03:06 PM From Platform SDK, try using: FARPROC GetProcAddress( HMODULE hModule, // handle to DLL module LPCSTR lpProcName // function name harryn4484 February 13th, 2003, 03:16 PM Sorry probably didn't make myself clear. I have the address of the GPF I need to analyze the Dll itself. Mike Harnad February 14th, 2003, 07:41 AM Try using the Depends.exe program that comes with Visual C++. From within Windows Explorer, right click the mouse and select "view dependencies". The program will display entry points for the functions in the dll. codeguru.com
Copyright Internet.com Inc., All Rights Reserved. |