Is there a way to retrieve the whole export list in IDA using python script ?
I know how to do it for functions,imports,strings ... but i can't find a way to retrieve the export list.
This should get you a list of all export info(name,ordinal,address)
def BuildExports():
return list(idautils.Entries())






