Category : Recently Uploaded Files
Archive   : SNIP9503.ZIP
Filename : PRINTQ.C

 
Output of file : PRINTQ.C contained in archive : SNIP9503.ZIP
/* printq.c 12-22-91 Robert Mashlan, Public Domain

A small program that utilizes the prnspool module,
which is an interface to the DOS program PRINT.COM

*/

#include "prnspool.h"
#include
#include

int main(int argc, char **argv )
{
char far *files;
int i;
int addfiles = 1;

if (!printspool_installed())
{
printf("print.com not installed\n");
return 0;
}
for (i = 1; i < argc; i++)
{
if (stricmp(argv[i],"/T") == 0)
printspool_cancel(); /* cancel all files in queue */
else if (stricmp(argv[i],"/C") == 0)
addfiles = 0; /* cancel all listed files */
else if (stricmp(argv[i],"/P") == 0)
addfiles = 1; /* add all listed files */
else
/* here the specified file should really have the full pathname */
{
if (addfiles)
printspool_submit(argv[i]);
else printspool_remove(argv[i]);
if (printspool_errno)
puts(printspool_errlist[printspool_errno]);
}
}
printf("files currently in queue:\n");
for (files = printspool_getqueue(); *files; files += 64)
printf("\t%Fs\n", files);
printspool_endhold();
return 0;
}


  3 Responses to “Category : Recently Uploaded Files
Archive   : SNIP9503.ZIP
Filename : PRINTQ.C

  1. Very nice! Thank you for this wonderful archive. I wonder why I found it only now. Long live the BBS file archives!

  2. This is so awesome! 😀 I’d be cool if you could download an entire archive of this at once, though.

  3. But one thing that puzzles me is the “mtswslnkmcjklsdlsbdmMICROSOFT” string. There is an article about it here. It is definitely worth a read: http://www.os2museum.com/wp/mtswslnk/