home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / programming / oslib / oslib_1 / OSLib / Toolbox / h / labelledbo < prev    next >
Encoding:
Text File  |  1995-09-05  |  941 b   |  41 lines

  1. #ifndef labelledbox_H
  2. #define labelledbox_H
  3.  
  4. /* C header file for LabelledBox
  5.  * written by DefMod (Aug 30 1995) on Tue Sep  5 16:29:14 1995
  6.  * Jonathan Coxhead, Acorn Computers Ltd
  7.  */
  8.  
  9. #ifndef types_H
  10. #include "types.h"
  11. #endif
  12.  
  13. #ifndef toolbox_H
  14. #include "toolbox.h"
  15. #endif
  16.  
  17. #ifndef gadget_H
  18. #include "gadget.h"
  19. #endif
  20.  
  21. /************************************
  22.  * Structure and union declarations *
  23.  ************************************/
  24. typedef struct labelledbox_gadget               labelledbox_gadget;
  25.  
  26. /********************
  27.  * Type definitions *
  28.  ********************/
  29. struct labelledbox_gadget
  30.    {  toolbox_msg_reference label;
  31.    };
  32.  
  33. /************************
  34.  * Constant definitions *
  35.  ************************/
  36. #define class_LABELLED_BOX                      ((toolbox_class) 0x100u)
  37. #define labelledbox_SPRITE                      ((gadget_flags) 0x1u)
  38. #define labelledbox_SPRITE_IS_FILLED            ((gadget_flags) 0x2u)
  39.  
  40. #endif
  41.