home *** CD-ROM | disk | FTP | other *** search
- /* intalk.h */
-
- #ifndef __intalk_h
- #define __intalk_h
-
- #include "wimp.h"
-
- #define intalk_MESSAGEBASE 0x48180
-
- enum
- { intalk_MBALLOONSWITCH = intalk_MESSAGEBASE,
- intalk_MBALLOONRQSTATE,
- intalk_MBALLOONSTATEIS,
-
- intalk_MOPTIONSCHANGED,
-
- intalk_MCLIENTSERVER,
-
- intalk_MRETURNCODE
- };
-
- typedef struct
- { int show;
- } intalk_balloonswitch;
-
- typedef struct
- { int rc;
- char progname[32];
- } intalk_returncode;
-
- typedef struct
- { wimp_msghdr hdr;
- union
- { char chars[236];
- int words[59];
- intalk_balloonswitch balloonswitch;
- intalk_balloonswitch balloonrqstate;
- intalk_balloonswitch balloonstateis;
- intalk_returncode returncode;
- } data;
- } intalk_msgstr;
-
- #endif
-