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?
|
|
|
|
|
|
|
Totally untested, but I think it's more or less correct. (Famous last words.) |
||
|
|
|
|
I think that the only way is to parse PE header. This article is a good point to start from. |
||
|
|
|
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) |
|||
|
|
|
|
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. |
||
|
|