home *** CD-ROM | disk | FTP | other *** search
- /****************************************************************************/
- /* PRINTQ.H --- Support Routines for PRINT.COM Multiplex Interrupt */
- /****************************************************************************/
- /* These routines provide support for the print queue multiplex interrupt. */
- /* They are for use with Microsoft C v4.0. */
- /* */
- /* Version 1.1 --- 21 Mar 1987, Scott Ainsworth. */
- /****************************************************************************/
-
- #define PQSizeMax 32 /* Maximum number of PRINT.COM entries */
- #define PQEntrySize 64 /* size of 1 entry in bytes */
-
- int PrintInstalled (void);
- int PrintSubmit (char *);
- void PrintCancel (char *);
- void PrintCancelAll (void);
- void PrintStatus (char * far*, unsigned int *);
- void PrintStatusEnd (void);
-