Add a one liner script to show symbols exported from a DLL.
This is useful to check if ABI wasn't accidentally broken between two micro wxMSW releases. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76070 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
13e571eb98
commit
8ef0ed2198
1 changed files with 2 additions and 0 deletions
2
misc/scripts/show_dll_exports
Executable file
2
misc/scripts/show_dll_exports
Executable file
|
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
dumpbin.exe /exports $1 | sed -nre 's/^ +[0-9]+ +[0-9A-F]+ [0-9A-F]{8} (.*)$/\1/p' | sort
|
||||
Loading…
Add table
Add a link
Reference in a new issue