home *** CD-ROM | disk | FTP | other *** search
/ Executor 2.0 / executorv2.0.iso / pc / dos / extra / source / browser / browser.hqx / Browser / bndl.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-09-19  |  359 b   |  19 lines

  1. #if !defined(_BNDL_H_)
  2. #define _BNDL_H_
  3.  
  4. #include "bndl_private.h"
  5.  
  6. typedef struct
  7. {
  8.   OSType owner;
  9.   INTEGER id;
  10.   INTEGER n_sections_minus_1;
  11.   bndl_section_t section[1]; /* would like to put 0 here */
  12. } bndl_t;
  13.  
  14. extern void process_bndl (bndl_t **bndl_h, OSType creator);
  15.  
  16. extern icn_sharp_hand map_type_and_creator (OSType type, OSType creator);
  17.  
  18. #endif
  19.