home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1998 September / PCO_0998.ISO / filesbbs / dos / sbbs_src.exe / SBBS / ARS_DEFS.H next >
Encoding:
C/C++ Source or Header  |  1997-04-13  |  1.3 KB  |  73 lines

  1. /* ARS_DEFS.H */
  2.  
  3. /* Developed 1990-1997 by Rob Swindell; PO Box 501, Yorba Linda, CA 92885 */
  4.  
  5. #ifndef _ARS_DEFS_H
  6. #define _ARS_DEFS_H
  7.  
  8. /************************************************************************/
  9. /* Synchronet Access Requirement Strings fucntion prototypes and type    */
  10. /* definitions                                                            */
  11. /************************************************************************/
  12.  
  13. #include <stdio.h>
  14. #include <stdlib.h>
  15. #include <string.h>
  16. #include <ctype.h>
  17.  
  18. #include "gen_defs.h"
  19.  
  20. char *arstr(ushort *count, char *str);
  21.  
  22. enum {                              /* Access requirement binaries */
  23.      AR_NULL
  24.     ,AR_OR
  25.     ,AR_NOT
  26.     ,AR_EQUAL
  27.     ,AR_BEGNEST
  28.     ,AR_ENDNEST
  29.     ,AR_LEVEL
  30.     ,AR_AGE
  31.     ,AR_BPS
  32.     ,AR_NODE
  33.     ,AR_TLEFT
  34.     ,AR_TUSED
  35.     ,AR_USER
  36.     ,AR_TIME
  37.     ,AR_PCR
  38.     ,AR_FLAG1
  39.     ,AR_FLAG2
  40.     ,AR_FLAG3
  41.     ,AR_FLAG4
  42.     ,AR_EXEMPT
  43.     ,AR_REST
  44.     ,AR_SEX
  45.     ,AR_UDR
  46.     ,AR_UDFR
  47.     ,AR_EXPIRE
  48.     ,AR_CREDIT
  49.     ,AR_DAY
  50.     ,AR_ANSI
  51.     ,AR_RIP
  52.     ,AR_LOCAL
  53.     ,AR_GROUP
  54.     ,AR_SUB
  55.     ,AR_LIB
  56.     ,AR_DIR
  57.     ,AR_EXPERT
  58.     ,AR_SYSOP
  59.     ,AR_QUIET
  60.     ,AR_MAIN_CMDS
  61.     ,AR_FILE_CMDS
  62.     ,AR_RANDOM
  63.     ,AR_LASTON
  64.     ,AR_LOGONS
  65.     ,AR_WIP
  66.     ,AR_SUBCODE
  67.     ,AR_DIRCODE
  68.     ,AR_OS2
  69.     ,AR_DOS
  70.     };
  71.  
  72. #endif        /* Don't add anything after this line */
  73.