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.

24 lines
612 B

  1. /\*ModelName:/ { print "*CodePage: 1252" }
  2. /{NumOfCopies.*}/ { gsub(/{NumOfCopies.*}/,"[1,32767]{NumOfCopies}") }
  3. /\*% Error:/ { next }
  4. /\*YMoveUnit:/ { next }
  5. /Option1/ { res=300 }
  6. /Option2/ { res=600 }
  7. /YMoveRelDown/ {
  8. print " *YMoveUnit: " res
  9. print " *Command: CmdYMoveRelDown"
  10. print " {"
  11. print " *CallbackID: " $5
  12. print " *Params: LIST(DestYRel)"
  13. print " }"
  14. next
  15. }
  16. /XMoveRelRight/ {
  17. print "*Command: CmdXMoveRelRight"
  18. print "{"
  19. print " *CallbackID: " $5
  20. print " *Params: LIST(DestXRel)"
  21. print "}"
  22. next
  23. }
  24. { print }