home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume26 / port-lpr / part01 / common.h < prev    next >
C/C++ Source or Header  |  1993-04-09  |  498b  |  13 lines

  1. #ifdef MAIN_PROGRAM
  2. #define STORAGE_CLASS
  3. #else
  4. #define STORAGE_CLASS extern
  5. #endif
  6.  
  7. STORAGE_CLASS char hostname[512];    /* name of this host */
  8. STORAGE_CLASS char username[100];    /* name of user submitting job */
  9. STORAGE_CLASS char email_address[512];    /* submitting user's email address */
  10. STORAGE_CLASS int debug;        /* true if we want debugging output */
  11. STORAGE_CLASS int max_net_read;        /* max # of bytes to read at a time */
  12. STORAGE_CLASS int max_net_write;    /* max # of bytes to write at a time */
  13.