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.

37 lines
1.5 KiB

  1. @REM Options:
  2. @REM C: Use callback for CmdCopies.
  3. @REM D: Duplex is not an optional.
  4. @REM G: For MEDIO-B1 special duplex option.
  5. @REM L: Support Colatte.
  6. @REM N: No TTFS.
  7. @REM
  8. @echo off
  9. setlocal ENABLEEXTENSIONS
  10. call :doGPD cnl850j.gpd "Canon LBP-850 LIPS4" 1 8 . .
  11. call :doGPD cnl880j.gpd "Canon LBP-880 LIPS4" 2 16 C .
  12. call :doGPD cnl470j.gpd "Canon LBP-470 LIPS4" 3 10 C lbp470.txt
  13. call :doGPD cnl870j.gpd "Canon LBP-870 LIPS4" 4 16 C lbp1610.txt
  14. call :doGPD cnl950j.gpd "Canon LBP-950 LIPS4" 5 32 CL lbp950.txt
  15. call :doGPD cnl1810j.gpd "Canon LBP-1810 LIPS4" 6 20 C lbp1610.txt
  16. call :doGPD cnl1610j.gpd "Canon LBP-1610 LIPS4" 7 16 C lbp1610.txt
  17. call :doGPD cnl1710j.gpd "Canon LBP-1710 LIPS4" 8 20 C lbp1510.txt
  18. call :doGPD cnl1510j.gpd "Canon LBP-1510 LIPS4" 9 16 CN lbp1510.txt
  19. call :doGPD cnlmeb1j.gpd "Canon MEDIO-B1 LIPS4" 10 22 G mediob1.txt
  20. call :doGPD cnlmed1j.gpd "Canon MEDIO-D1 LIPS4" 11 40 DL mediod1.txt
  21. call :doGPD cnlmee1j.gpd "Canon MEDIO-E1 LIPS4" 12 60 DL medioe1.txt
  22. call :doGPD cnlp300j.gpd "Canon LP-3000/NTTFAX D60 LIPS4" 13 16 . lp3000.txt
  23. call :doGPD cnli325j.gpd "Canon iR3250 LIPS4" 14 32 CL ir3250.txt
  24. call :doGPD cnli500j.gpd "Canon iR5000 LIPS4" 15 50 CDL ir5000.txt
  25. call :doGPD cnli600j.gpd "Canon iR6000 LIPS4" 16 60 CDL ir5000.txt
  26. endlocal
  27. if exist temp.gpd del temp.gpd
  28. if exist *.log del *.log
  29. goto :EOF
  30. :doGPD
  31. echo %1:%2:%3:%4:%5:%6
  32. gpc2gpd -S1 -Ilips1200.gpc -M%3 -Rcnl4jres.dll -O%1 -N"LIPS"
  33. awk -f lips1200.awk %2 %4 %5 %6 %1 > temp.gpd
  34. move/y temp.gpd %1
  35. goto :EOF