home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 1 / crawlyvol1.bin / bbs / jet_conf / resource.h < prev    next >
C/C++ Source or Header  |  1993-05-10  |  906b  |  41 lines

  1. /*
  2.  * RESOURCE.H
  3.  *
  4.  * header-module of resource.c (part of jet_conf.prg)
  5.  * initializes jet_conf resources;
  6.  *
  7.  */
  8.  
  9. /*--- includes              ---*/
  10.  
  11. /*--- defines               ---*/
  12.  
  13. #define        MAXTREE        13
  14. #define        menutree    TREE_ADDR[0]
  15. #define        info_box    TREE_ADDR[1]
  16. #define        syst_box    TREE_ADDR[2]
  17. #define        doma_box    TREE_ADDR[3]
  18. #define        addr_box    TREE_ADDR[4]
  19. #define        flag_box    TREE_ADDR[5]
  20. #define        path_box    TREE_ADDR[6]
  21. #define        arch_box    TREE_ADDR[7]
  22. #define        lklb_box    TREE_ADDR[8]
  23. #define        link_box    TREE_ADDR[9]
  24. #define        akas_box    TREE_ADDR[10]
  25. #define        raka_box    TREE_ADDR[11]
  26. #define        popup        TREE_ADDR[12]
  27.  
  28. /*--- types                 ---*/
  29.  
  30. /*--- variables             ---*/
  31.  
  32. GLOBAL OBJECT    *TREE_ADDR[MAXTREE];
  33.  
  34. /*--- prototypes            ---*/
  35.  
  36. GLOBAL WORD rsc_init( WORD nkc_version );
  37. GLOBAL VOID rsc_exit( VOID );
  38.  
  39. /*--- End of resource.h module  ---*/
  40.  
  41.