home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 1 / RISC_DISC_1.iso / pd_share / code / oslib / h / help < prev    next >
Encoding:
Text File  |  1994-07-08  |  1.3 KB  |  54 lines

  1. #ifndef help_H
  2. #define help_H
  3.  
  4. /* C header file for Help
  5.  * written by DefMod (Jun 22 1994) on Fri Jul  8 16:41:01 1994
  6.  * Copyright © Acorn Computers Ltd, 1994
  7.  */
  8.  
  9. /*************************************************************************
  10.  * This source file was written by Acorn Computers Limited. It is part   *
  11.  * of the OSLib library for writing applications for RISC OS. It may be  *
  12.  * used freely in the creation of programs for RISC OS.                  *
  13.  *************************************************************************/
  14.  
  15. #ifndef types_H
  16.    #include "types.h"
  17. #endif
  18.  
  19. #ifndef os_H
  20.    #include "os.h"
  21. #endif
  22.  
  23. #ifndef wimp_H
  24.    #include "wimp.h"
  25. #endif
  26.  
  27. /************************************
  28.  * Structure and union declarations *
  29.  ************************************/
  30. typedef struct help_message_request             help_message_request;
  31. typedef struct help_message_reply               help_message_reply;
  32.  
  33. /********************
  34.  * Type definitions *
  35.  ********************/
  36. struct help_message_request
  37.    {  os_coord pos;
  38.       bits buttons;
  39.       wimp_w w;
  40.       wimp_i i;
  41.    };
  42.  
  43. struct help_message_reply
  44.    {  char reply [236];
  45.    };
  46.  
  47. /************************
  48.  * Constant definitions *
  49.  ************************/
  50. #define message_HELP_REQUEST                    0x502u
  51. #define message_HELP_REPLY                      0x503u
  52.  
  53. #endif
  54.