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