home *** CD-ROM | disk | FTP | other *** search
- #ifndef help_H
- #define help_H
-
- /* C header file for Help
- * written by DefMod (Jun 22 1994) on Fri Jul 8 16:41:01 1994
- * Copyright © Acorn Computers Ltd, 1994
- */
-
- /*************************************************************************
- * This source file was written by Acorn Computers Limited. It is part *
- * of the OSLib library for writing applications for RISC OS. It may be *
- * used freely in the creation of programs for RISC OS. *
- *************************************************************************/
-
- #ifndef types_H
- #include "types.h"
- #endif
-
- #ifndef os_H
- #include "os.h"
- #endif
-
- #ifndef wimp_H
- #include "wimp.h"
- #endif
-
- /************************************
- * Structure and union declarations *
- ************************************/
- typedef struct help_message_request help_message_request;
- typedef struct help_message_reply help_message_reply;
-
- /********************
- * Type definitions *
- ********************/
- struct help_message_request
- { os_coord pos;
- bits buttons;
- wimp_w w;
- wimp_i i;
- };
-
- struct help_message_reply
- { char reply [236];
- };
-
- /************************
- * Constant definitions *
- ************************/
- #define message_HELP_REQUEST 0x502u
- #define message_HELP_REPLY 0x503u
-
- #endif
-