comparison src/protocols/jabber/message.h @ 7971:6fca0d9cc98b

[gaim-migrate @ 8648] this particular work of art is topic changing support for jabber, and support for setting the topic by just changing the text in the chat window. hopefully someone less lazy than I will implement the right function for IRC, and any other chats that do topics. committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Fri, 02 Jan 2004 06:16:44 +0000
parents 0e4894b3e2a6
children 0383e55cd658
comparison
equal deleted inserted replaced
7970:a6eb0e250417 7971:6fca0d9cc98b
48 JABBER_MESSAGE_EVENT_COMPOSING = 1 << 1 48 JABBER_MESSAGE_EVENT_COMPOSING = 1 << 1
49 } events; 49 } events;
50 GList *etc; 50 GList *etc;
51 } JabberMessage; 51 } JabberMessage;
52 52
53 void jabber_message_free(JabberMessage *jm);
54
55 void jabber_message_send(JabberMessage *jm);
53 56
54 void jabber_message_parse(JabberStream *js, xmlnode *packet); 57 void jabber_message_parse(JabberStream *js, xmlnode *packet);
55 int jabber_message_send_im(GaimConnection *gc, const char *who, const char *msg, 58 int jabber_message_send_im(GaimConnection *gc, const char *who, const char *msg,
56 GaimConvImFlags flags); 59 GaimConvImFlags flags);
57 int jabber_message_send_chat(GaimConnection *gc, int id, const char *message); 60 int jabber_message_send_chat(GaimConnection *gc, int id, const char *message);
58 61
59 int jabber_send_typing(GaimConnection *gc, const char *who, int typing); 62 int jabber_send_typing(GaimConnection *gc, const char *who, int typing);
60 63
64
61 #endif /* _GAIM_JABBER_MESSAGE_H_ */ 65 #endif /* _GAIM_JABBER_MESSAGE_H_ */