home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 June
/
SIMTEL_0692.cdr
/
msdos
/
printer
/
printq11.arc
/
PRINTQ.H
< prev
next >
Wrap
Text File
|
1987-03-21
|
961b
|
19 lines
/****************************************************************************/
/* 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);