Visual Studio: Finds exported functions, variables and classes in a DLL
Requirement:
- Microsoft Windows (XP – in this experiment)
- Microsoft Visual Studio (2005 – in this experiment)
The simplest method to verify exported functions, variables and classes is to use Visual Studio Command Line:
- Open Visual Studio Command Line
Start > All Programs > Microsoft Visual Studio 2005 > Visual Studio Tools > Visual Studio 2005 Command Prompt - Go to the compiled DLL directory, usually in debug or release folder.
e.g. C:\XanderTan\Workspace\VS2005\File\debug - Type: dumpbin -exports <dllname>.dll
e.g. dumpbin -exports filebreakerlib.dll
Here is the example:




