I found similar questions but no answer to what I am looking for. So here goes:
For a native Win32 dll, is there a Win32 API to enumerate its export function names?
|
feedback
|
|
Totally untested, but I think it's more or less correct. (Famous last words.) | |||
feedback
|
|
I think that the only way is to parse PE header. This article is a good point to start from. | |||||
feedback
|
|
Go over to Microsoft research and grab the Detours Library. One of its examples does exactly what you are asking. The whole library basically makes detouring/rerouting win32 function calls extremely easy. Its pretty cool stuff. Edit: Also note that if you just want to look at the export table, you can (at least in visual studios) set your project properties to print out the export/import tables. I can't remember the exact option but should be easy to google. Edit2:The option is Project Properties->Linker->Debugging->Generate MapFile ->Yes(/MAP) | ||||
|
feedback
|
|
If you don't want to go to the trouble of writing your own code and would rather use a DLL that already exists for this purpose, I recommend PE File Format DLL. Comes with source code so that you can modify if you wish. No GPL to worry about. Also available is a GUI application that shows how to use the DLL. | |||
|
feedback
|
|
If you're just looking for a way to find out what functions are exported in a DLL, you can use Microsoft's dependency walker (depends.exe). This wont help you if you actually need to discover the exports programmatically, though. | |||
|
feedback
|