home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 1 / ARM_CLUB_CD.iso / contents / apps / desktop / d / explain / Apps / h / intalk
Encoding:
Text File  |  1994-05-13  |  499 b   |  28 lines

  1. /* intalk.h */
  2.  
  3. #ifndef __intalk_h
  4. #define __intalk_h
  5.  
  6. #define intalk_MESSAGEBASE 0x48180
  7.  
  8. enum
  9. {  intalk_MBALLOONSWITCH = intalk_MESSAGEBASE, intalk_MBALLOONRQSTATE, intalk_MBALLOONSTATEIS
  10. };
  11.  
  12. typedef struct
  13. {  int show;
  14. } intalk_balloonswitch;
  15.  
  16. typedef struct
  17. {  wimp_msghdr hdr;
  18.    union
  19.    {  char chars[236];
  20.       int words[59];
  21.       intalk_balloonswitch balloonswitch;
  22.       intalk_balloonswitch balloonrqstate;
  23.       intalk_balloonswitch balloonstateis;
  24.    } data;
  25. } intalk_msgstr;
  26.  
  27. #endif
  28.