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

  1. #ifndef label_H
  2. #define label_H
  3.  
  4. /* C header file for Label
  5.  * written by DefMod (Aug 30 1995) on Tue Sep  5 16:29:15 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 label_gadget                     label_gadget;
  25.  
  26. /********************
  27.  * Type definitions *
  28.  ********************/
  29. struct label_gadget
  30.    {  toolbox_msg_reference label;
  31.    };
  32.  
  33. /************************
  34.  * Constant definitions *
  35.  ************************/
  36. #define class_LABEL                             ((toolbox_class) 0x140u)
  37. #define label_NO_BOX                            0x1u
  38. #define label_RJUSTIFIED                        0x2u
  39. #define label_HCENTRED                          0x4u
  40.  
  41. #endif
  42.