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.

16 lines
452 B

  1. /#define rmj/ {rmj = $3}
  2. /#define rmm/ {rmm = $3}
  3. /#define rup/ {rup = $3}
  4. /#define szVerName/ {szVerName = substr($3, 2, length($3)-2)}
  5. /#define szVerUser/ {szVerUser = substr($3, 2, length($3)-2)}
  6. END {
  7. printf "DESCRIPTION 'Microsoft (R) Jet Engine Version %s", rmj
  8. if (rmm != 0 || rup != 0)
  9. printf ".%02d", rmm
  10. if (rup != 0)
  11. printf ".%04d", rup
  12. if (szVerUser != "")
  13. printf " (%s)", szVerUser
  14. printf "'\n"
  15. }