home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume13 / rolodex / part01 / rolodefs.h < prev    next >
C/C++ Source or Header  |  1988-01-30  |  722b  |  33 lines

  1. /* rolodefs.h */
  2. #define VERSION "2.0.2"
  3.  
  4. #ifdef VMS
  5. #define CHUNKSIZE 100000        /* storage size for holding data file */
  6. #endif
  7.  
  8. #ifdef UNIX
  9. #define CHUNKSIZE ((unsigned)100000) /* storage size for holding data file */
  10. #endif
  11.  
  12. #ifdef MSDOS
  13. #define CHUNKSIZE ((unsigned)50000)  /* storage size for holding data file */
  14. #endif
  15.  
  16. #define NOLOCKFLAG 'l'
  17. #define SUMMARYFLAG 's'
  18. #define OTHERUSERFLAG 'u'
  19. #define READONLYFLAG 'r'
  20.  
  21. #define LEGAL_OPTIONS "lsru"
  22. #ifdef VMS
  23. #define USAGE "rolo [ person1 person2 ...] [ -l -s -r -u use_dir ] "
  24. #endif
  25.  
  26. #ifdef UNIX
  27. #define USAGE "rolo [ person1 person2 ...] [ -l -s -r -u user ] "
  28. #endif
  29.  
  30. #ifdef MSDOS
  31. #define USAGE "rolo [ person1 person2 ...] [ -l -s -r -u use_dir ] "
  32. #endif
  33.