home *** CD-ROM | disk | FTP | other *** search
- /*
- ** Message Header
- */
-
- #include <sys/types.h>
-
- #include "include/mui.h"
-
- #ifndef AMSTER_MSG_H
- #define AMSTER_MSG_H
-
- struct msgdata {
- u_long *msglist;
- u_long *msgstr;
- };
-
- struct ChatMessage {
- char TStamp[11];
- char *Nick;
- char *Msg;
- };
-
- MUIF msg_dispatch(REG(a0) struct IClass *cl,REG(a2) Object *obj,REG(a1) Msg msg);
-
- #define MSG_OPEN 0x4001
- #define MSG_GOT 0x4002
- #define MSG_SAY 0x4003
- #define MSG_WHOIS 0x4004
- #define MSG_WHOWAS 0x4005
-
- extern void msg_got(struct msgdata *data, char *nick, char *msg);
- extern void msg_gotwhois(char *buf);
-
-
-
- #endif /* AMSTER_MSG_H */
-