You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To get the exported functions for a Portable Executable you can get the tables that build the exports individually or you can can just supply an ExecutableImage instance.
Example:
var image = ExecutableImage.Get(@"C:\Windows\explorer.exe");
var exports = Exports.Get(image);
Exports supports IEnumerable<T> so you can easily iterate the exported functions.