mirror of
https://github.com/cheat-engine/cheat-engine
synced 2026-08-15 02:26:08 -04:00
12 lines
No EOL
249 B
Awk
12 lines
No EOL
249 B
Awk
# An AWK script to generate an .IMP file from
|
|
# the output of dumpbin -EXPORTS
|
|
BEGIN { # first find the list of exports
|
|
do { getline } while ($1 != "ordinal");
|
|
getline;
|
|
print "UC1 MS"
|
|
}
|
|
|
|
$1 == "Summary" { exit }
|
|
|
|
{ print $1,$4 }
|
|
|