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.
16 lines
448 B
16 lines
448 B
BEGIN {
|
|
print "*%"
|
|
print "*% Copyright (c) 1997 - 2000 Microsoft Corporation"
|
|
print "*% All Rights Reserved."
|
|
print "*%"
|
|
}
|
|
/rcNameID/ || /OptionID/ {
|
|
if ($2 !~ /^[0-9]/) { print; next }
|
|
if ($2 == 258) id = 280
|
|
else if ($2 == 259) id = 306
|
|
else if ($2 >= 260 && $2 <= 271) id = $2 + 22
|
|
else { print "*Error: Unknown NameID: " $2; next }
|
|
gsub(/[0-9][0-9][0-9]/, id)
|
|
}
|
|
{ print }
|
|
END { print "*UseExpColorSelectCmd? : TRUE" }
|