From 8ef0ed2198cb329b885ec6a7e258bd03dfa56d72 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 2 Mar 2014 23:40:50 +0000 Subject: [PATCH] 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 --- misc/scripts/show_dll_exports | 2 ++ 1 file changed, 2 insertions(+) create mode 100755 misc/scripts/show_dll_exports diff --git a/misc/scripts/show_dll_exports b/misc/scripts/show_dll_exports new file mode 100755 index 0000000000..9b66478e60 --- /dev/null +++ b/misc/scripts/show_dll_exports @@ -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