home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / prog_c / suplib.lzh / SUPLIB / INCLUDE / LOCAL / SUBLIB.H < prev    next >
Text File  |  1991-08-16  |  317b  |  21 lines

  1.  
  2. /*
  3.  *  SUBLIB.H
  4.  *
  5.  */
  6.  
  7. #define SUBHDR    struct _SUBHDR
  8.  
  9. #define SUBMAGIC    0x4D44
  10.  
  11. SUBHDR {
  12.     NODE    Node;    /*  link node + name    */
  13.     uword   DSize;    /*  size of header    */
  14.     uword   Magic;    /*  Magic        */
  15.     uword   NameLen;
  16.     uword   RefCnt;    /*  # of references    */
  17.     uword   Flags;
  18.     uword   Version;
  19. };
  20.  
  21.