Share via


Use Dumpbin.exe to Review Driver Functions (Compact 7)

3/12/2014

Dumpbin.exe is a command-line utility that is included with Windows Embedded Compact 7. You can use it to review the functions that are exposed by your driver DLL. By reviewing output that is generated by the Dumpbin tool, you can verify that you are exporting the complete set of required functions for your driver.

To examine exposed functions from the driver

  1. Open your OS design project in Platform Builder.

  2. Click the Build menu, and then click Open Release Directory in Build Window.

  3. At the command prompt, type dumpbin /exports streamdriver.dll

  4. When you finish reviewing the output, type Exit to close the command prompt window.

The following output was generated by the Dumpbin tool when the exports flag was used.

ordinal hint RVA      name

      1    0 000010E6 SDT_Close = _SDT_Close
      2    1 000010DF SDT_Deinit = _SDT_Deinit
      3    2 000010FB SDT_IOControl = _SDT_IOControl
      4    3 000010DC SDT_Init = _SDT_Init
      5    4 000010E3 SDT_Open = _SDT_Open
      6    5 000010EA SDT_PreClose = _SDT_PreClose
      7    6 000010EE SDT_PreDeinit = _SDT_PreDeinit
      8    7 000010F2 SDT_Read = _SDT_Read
      9    8 000010F8 SDT_Seek = _SDT_Seek
     10    9 000010F5 SDT_Write = _SDT_Write

For more information about the Dumpbin tool, see DUMPBIN Tool.

See Also

Concepts

Add and Build a Device Driver