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()

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to