mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
647 B
22 lines
647 B
BEGIN {
|
|
"echotime /t" | getline date
|
|
|
|
print "/***********************************************************************"
|
|
print "* Microsoft (R) 32-Bit Incremental Linker"
|
|
print "*"
|
|
print "* Copyright (C) Microsoft Corp 1992-1996. All rights reserved."
|
|
print "*"
|
|
print "* File: errdat.h"
|
|
print "*"
|
|
print "* File Comments:"
|
|
print "*"
|
|
print "* Generated from link32er.txt " date
|
|
print "*"
|
|
print "***********************************************************************/"
|
|
print ""
|
|
}
|
|
/^LNK.*: / {
|
|
n = split( $0, a, "::" )
|
|
code = a[1]
|
|
printf "%u,\n", substr(code, 4, length(code)-3)+0
|
|
}
|