home *** CD-ROM | disk | FTP | other *** search
/ 17 Bit Software 1: Collection A / 17Bit_Collection_A.iso / files / 1036.dms / 1036.adf / Dec_ln03 / dospecial.c < prev    next >
C/C++ Source or Header  |  1977-12-31  |  750b  |  29 lines

  1. /* DEC LN03+ special printer functions */
  2.  
  3. /******* printer.device/printers/DEC_LN03+_special_functions **********
  4.  *
  5.  *      Name
  6.  *      DEC LN03+ special functions implemented:
  7.  *              written by Bernie Mentink Christchurch N.Z 1/2/88
  8.  *
  9.  *      None as yet!!
  10.  *************************************************************************/
  11.  
  12. #include        "exec/types.h"
  13. #include        "devices/printer.h"
  14. #include        "devices/prtbase.h"
  15.  
  16. extern struct PrinterData *PD;
  17.  
  18. long
  19. DoSpecial(command,outputBuffer,vline,currentVMI,crlfFlag,Parms)
  20. register char outputBuffer[];
  21. register UWORD *command;
  22. register BYTE *vline;
  23. register UBYTE *currentVMI;     /* used for color on this printer */
  24. BYTE *crlfFlag;
  25. UBYTE Parms[];
  26. {
  27.      return(0);
  28. }
  29.