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

  1. #ifndef keyboardshortcut_H
  2. #define keyboardshortcut_H
  3.  
  4. /* C header file for KeyboardShortcut
  5.  * written by DefMod (Aug 30 1995) on Tue Sep  5 16:29:16 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. /************************************
  18.  * Structure and union declarations *
  19.  ************************************/
  20. typedef struct keyboardshortcut_object          keyboardshortcut_object;
  21.  
  22. /********************
  23.  * Type definitions *
  24.  ********************/
  25. typedef bits keyboardshortcut_flags;
  26.  
  27. struct keyboardshortcut_object
  28.    {  keyboardshortcut_flags flags;
  29.       int c;
  30.       bits action;
  31.       toolbox_string_reference name;
  32.    };
  33.  
  34. /************************
  35.  * Constant definitions *
  36.  ************************/
  37. #define keyboardshortcut_SHOW_AS_MENU           ((keyboardshortcut_flags) 0x1u)
  38.  
  39. #endif
  40.