home *** CD-ROM | disk | FTP | other *** search
- #ifndef keyboardshortcut_H
- #define keyboardshortcut_H
-
- /* C header file for KeyboardShortcut
- * written by DefMod (Aug 30 1995) on Tue Sep 5 16:29:16 1995
- * Jonathan Coxhead, Acorn Computers Ltd
- */
-
- #ifndef types_H
- #include "types.h"
- #endif
-
- #ifndef toolbox_H
- #include "toolbox.h"
- #endif
-
- /************************************
- * Structure and union declarations *
- ************************************/
- typedef struct keyboardshortcut_object keyboardshortcut_object;
-
- /********************
- * Type definitions *
- ********************/
- typedef bits keyboardshortcut_flags;
-
- struct keyboardshortcut_object
- { keyboardshortcut_flags flags;
- int c;
- bits action;
- toolbox_string_reference name;
- };
-
- /************************
- * Constant definitions *
- ************************/
- #define keyboardshortcut_SHOW_AS_MENU ((keyboardshortcut_flags) 0x1u)
-
- #endif
-