home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 1 / crawlyvol1.bin / bbs / jet_conf / special.h < prev   
Text File  |  1993-05-10  |  1KB  |  78 lines

  1. /*
  2.  * SPECIAL.H
  3.  *
  4.  * header-module with special data types (part of jet_conf.prg)
  5.  *
  6.  */
  7.  
  8. /*--- includes              ---*/
  9.  
  10. /*--- defines               ---*/
  11.  
  12. #define        MAX_LINKS        100
  13.  
  14. /*--- types                 ---*/
  15.  
  16. typedef struct
  17. {
  18.     WORD    zone;
  19.     LONG    net;
  20.     LONG    node;
  21.     LONG    point;
  22.     BYTE    domain[13];
  23. } ADDR;
  24.  
  25. typedef struct
  26. {
  27.     ADDR    adr;
  28.     LONG    fake;
  29.     BYTE    group[16];
  30. } AKA;
  31.  
  32. typedef struct
  33. {
  34.     BYTE    show_addr[64];
  35.     BYTE    sysop[31];
  36.     BYTE    pw[9];
  37.     BYTE    af_pw[9];
  38.     BYTE    arcmode[10];
  39.     BYTE    packcmd[16];
  40.     BYTE    pkttype[10];
  41.     BYTE    intlmode[5];
  42.     BOOLEAN    forceintl;
  43.     BYTE    ctrlmode[5];
  44.     BYTE    outbmode[10];
  45.     BYTE    netmtype[5];
  46.     BYTE    echotype[5];
  47.     BOOLEAN    extranet;
  48.     BOOLEAN    routenet;
  49.     BOOLEAN    dummypkt;
  50.     BOOLEAN    autoarea;
  51.     BYTE    areagrp[16];
  52.     BOOLEAN    autodarea;
  53.     BYTE    dareagrp[16];
  54.     BOOLEAN    fwdreq;
  55.     BOOLEAN    nonotify;
  56.     BOOLEAN    passive;
  57.     BYTE    passivgrp[16];
  58.     BOOLEAN    crashok;
  59.     BYTE    groups[16];
  60.     AKA        aka[5];
  61.     AKA        raka[5];
  62.     ADDR    usealias;
  63.     BYTE    rem_af_list[16];
  64.     BYTE    rem_af_name[16];
  65.     BYTE    rem_af_pw[9];
  66.     BOOLEAN    noreaddr;
  67.     BYTE    autocon[41];
  68.     BOOLEAN    noroute;
  69. } LINK_STRUCT;
  70.  
  71. /*--- variables             ---*/
  72.  
  73. GLOBAL    LINK_STRUCT    *links;
  74.  
  75. /*--- prototypes            ---*/
  76.  
  77. /*--- End of special.h module  ---*/
  78.