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

  1. #ifndef adjuster_H
  2. #define adjuster_H
  3.  
  4. /* C header file for Adjuster
  5.  * written by DefMod (Aug 30 1995) on Tue Sep  5 16:29:24 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 adjuster_gadget                  adjuster_gadget;
  25. typedef struct adjuster_action_clicked          adjuster_action_clicked;
  26.  
  27. /********************
  28.  * Type definitions *
  29.  ********************/
  30. struct adjuster_gadget
  31.    {  int reserved;
  32.    };
  33.  
  34. struct adjuster_action_clicked
  35.    {  bool up;
  36.    };
  37.  
  38. /************************
  39.  * Constant definitions *
  40.  ************************/
  41. #define class_ADJUSTER                          ((toolbox_class) 0x300u)
  42. #define adjuster_INCREMENT                      ((gadget_flags) 0x1u)
  43. #define adjuster_VERTICAL                       ((gadget_flags) 0x2u)
  44. #define action_ADJUSTER_CLICKED                 0x8288Cu
  45.  
  46. #endif
  47.