ftp.nice.ch/pub/next/tools/printer/JetDirectDriver.0.96.NI.bs.tar.gz#/JetDirectDriver/lp-pipe.h

This is lp-pipe.h in view mode; [Download] [Up]

/*
 * lp-pipe.h: header file with std. lp-pipe defines & portability things.
 *                              -- Justin Mason 26 Aug 94.
 */

/* #include "portable.h" */	/* from PLP src directory, for OS-specific stuff */

#define RETSIGTYPE void
typedef RETSIGTYPE plp_signal_t;


#include <errno.h>
#include <signal.h>

#ifdef HAVE_STRERROR
#define ERRSTR strerror(errno)
#else
extern char *sys_errlist[];
#define ERRSTR sys_errlist[errno]
#endif

/* the exit codes */
#define LP_SUCCESS	0
#define LP_RETRY	1
#define LP_FAILED	2

plp_signal_t kill_job ();
extern char *status_fname;

void setstatus (char *,...); 

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.