Leaked source code of windows server 2003
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.

26 lines
741 B

  1. BEGIN {
  2. print "*%"
  3. print "*% Copyright (c) 1997 - 2000 Microsoft Corporation"
  4. print "*% All Rights Reserved."
  5. print "*%"
  6. }
  7. /rcNameID/ || /OptionID/ {
  8. if ($2 !~ /^[0-9]/) { print; next }
  9. if ($2 == 258) id = 288
  10. else if ($2 == 259) id = 306
  11. else if ($2 == 260) id = 280
  12. else if ($2 == 261) id = 291
  13. else if ($2 == 262) id = 284
  14. else if ($2 == 263) id = 285
  15. else if ($2 == 264) id = 286
  16. else if ($2 == 265) id = 292
  17. else if ($2 == 266) id = 294
  18. else if ($2 == 267) id = 295
  19. else if ($2 == 268) id = 301
  20. else if ($2 == 269) id = 302
  21. else if ($2 == 270) id = 303
  22. else { print "*Error: Unknown NameID: " $2; next }
  23. gsub(/[0-9][0-9][0-9]/, id)
  24. }
  25. { print }
  26. END { print "*UseExpColorSelectCmd? : TRUE" }