listing exported functions in a DLL

NickGB nick at granger-brown.net
Fri May 7 07:48:15 EDT 2010


is there a way using ctypes to list the exported functions of a DLL?

This is what I was hoping to do...

from ctypes import *
myDLL = windll.some_dll

# what is this method?  does it exist?
list_of_exported_functions  = myDLL.list_exported_functions()




More information about the Python-list mailing list