summaryrefslogtreecommitdiff
path: root/contrib/winedbg-map
blob: d257c64c93ee5ba2763814220aae861ce51c54df (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
# usage: winedbg-map wpid
# Get windows process map information

# --file doesn't work for some reason
winedbg << EOF | sed 's/Wine-dbg>//g' | tail -n +3
attach $1
info map
detach
EOF