home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume30 / sendopr / part01 / sendoprd.h < prev    next >
C/C++ Source or Header  |  1992-06-20  |  802b  |  46 lines

  1. /*
  2.  * $Author: reggers $
  3.  * $Date: 91/11/18 09:44:38 $
  4.  * $Header: /ccs/export/share/ftp/pub/unix/utilities/sendoprd/RCS/sendoprd.h,v 1.1 91/11/18 09:44:38 reggers Exp $
  5.  *
  6.  * Various defines used by this code. Customize here.
  7. */
  8.  
  9. #ifndef        DISPLAY
  10. #define        DISPLAY        "operator:0.0"
  11. #endif
  12.  
  13. /* where is the Xmessage service, what should it be titled? */
  14.  
  15. #ifndef        XMESSAGE
  16. #define        XMESSAGE    "/usr/bin/X11/xmessage"
  17. #endif
  18.  
  19. #ifndef        NAME
  20. #define        NAME        "Important"
  21. #endif
  22.  
  23. #ifndef        TITLE
  24. #define        TITLE        "Important"
  25. #endif
  26.  
  27. /* where are files spooled for processing? */
  28.  
  29. #ifndef        SPOOL
  30. #define        SPOOL        "/usr/spool/sendoprd/"
  31. #endif
  32.  
  33. #ifndef        BUSYLOCK
  34. #define        BUSYLOCK    "./.busy"
  35. #endif
  36.  
  37. #ifndef        SPLRC
  38. #define        SPLRC        "./.splrc"
  39. #endif
  40.  
  41. /* file creation mask */
  42.  
  43. #ifndef        UMASK
  44. #define        UMASK        037
  45. #endif
  46.