Mon, 27 Aug 2007 01:36:21 +0000
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
instead of manually writing to the conversation window, as suggested by sadrul
at http://pidgin.im/pipermail/devel/2007-August/002935.html. Yahoo and MSN
already use this flag to indicate an attention/notify-type message.
Also split off half of serv_got_attention() into serv_send_attention(), see
http://pidgin.im/pipermail/devel/2007-August/002940.html.
Now the attention API integrates well with the patch to add
PURPLE_MESSAGE_NOTIFY at http://hiks.net/drop/adium/libgaim.diff.
See also: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1672389&group_id=235
| 5872 | 1 | /** |
| 2 | * @file server.h Server API | |
| 3 | * @ingroup core | |
| 4 | * | |
| 15884 | 5 | * purple |
| 5872 | 6 | * |
| 15884 | 7 | * Purple is the legal property of its developers, whose names are too numerous |
| 8046 | 8 | * to list here. Please refer to the COPYRIGHT file distributed with this |
| 9 | * source distribution. | |
|
6787
7d8e0ba98f68
[gaim-migrate @ 7326]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
10 | * |
| 5872 | 11 | * This program is free software; you can redistribute it and/or modify |
| 12 | * it under the terms of the GNU General Public License as published by | |
| 13 | * the Free Software Foundation; either version 2 of the License, or | |
| 14 | * (at your option) any later version. | |
| 15 | * | |
| 16 | * This program is distributed in the hope that it will be useful, | |
| 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 19 | * GNU General Public License for more details. | |
| 20 | * | |
| 21 | * You should have received a copy of the GNU General Public License | |
| 22 | * along with this program; if not, write to the Free Software | |
| 23 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 24 | */ | |
| 15884 | 25 | #ifndef _PURPLE_SERVER_H_ |
| 26 | #define _PURPLE_SERVER_H_ | |
| 5872 | 27 | |
| 28 | #include "account.h" | |
| 29 | #include "conversation.h" | |
|
9718
aeee69c6c784
[gaim-migrate @ 10579]
Mark Doliner <markdoliner@pidgin.im>
parents:
9584
diff
changeset
|
30 | #include "prpl.h" |
| 5872 | 31 | |
|
5944
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
32 | #ifdef __cplusplus |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
33 | extern "C" { |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
34 | #endif |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
35 | |
|
13844
835b8f7b3d1d
[gaim-migrate @ 16295]
Mark Doliner <markdoliner@pidgin.im>
parents:
13295
diff
changeset
|
36 | /** |
|
835b8f7b3d1d
[gaim-migrate @ 16295]
Mark Doliner <markdoliner@pidgin.im>
parents:
13295
diff
changeset
|
37 | * Send a typing message to a given user over a given connection. |
|
835b8f7b3d1d
[gaim-migrate @ 16295]
Mark Doliner <markdoliner@pidgin.im>
parents:
13295
diff
changeset
|
38 | * |
|
835b8f7b3d1d
[gaim-migrate @ 16295]
Mark Doliner <markdoliner@pidgin.im>
parents:
13295
diff
changeset
|
39 | * TODO: Could probably move this into the conversation API. |
|
835b8f7b3d1d
[gaim-migrate @ 16295]
Mark Doliner <markdoliner@pidgin.im>
parents:
13295
diff
changeset
|
40 | * |
|
16262
1d9b65303dfc
Doxygen updates. This eliminated all the warnings from Doxygen.
Richard Laager <rlaager@pidgin.im>
parents:
15997
diff
changeset
|
41 | * @param gc The connection over which to send the typing notification. |
|
1d9b65303dfc
Doxygen updates. This eliminated all the warnings from Doxygen.
Richard Laager <rlaager@pidgin.im>
parents:
15997
diff
changeset
|
42 | * @param name The user to send the typing notification to. |
|
15997
ff97c5f69196
A little doxygen love and some tiny gaim->purpleisms
Mark Doliner <markdoliner@pidgin.im>
parents:
15884
diff
changeset
|
43 | * @param state One of PURPLE_TYPING, PURPLE_TYPED, or PURPLE_NOT_TYPING. |
| 15884 | 44 | * @return A quiet-period, specified in seconds, where Purple will not |
|
13844
835b8f7b3d1d
[gaim-migrate @ 16295]
Mark Doliner <markdoliner@pidgin.im>
parents:
13295
diff
changeset
|
45 | * send any additional typing notification messages. Most |
|
835b8f7b3d1d
[gaim-migrate @ 16295]
Mark Doliner <markdoliner@pidgin.im>
parents:
13295
diff
changeset
|
46 | * protocols should return 0, which means that no additional |
| 15884 | 47 | * PURPLE_TYPING messages need to be sent. If this is 5, for |
| 48 | * example, then Purple will wait five seconds, and if the Purple | |
| 49 | * user is still typing then Purple will send another PURPLE_TYPING | |
|
13844
835b8f7b3d1d
[gaim-migrate @ 16295]
Mark Doliner <markdoliner@pidgin.im>
parents:
13295
diff
changeset
|
50 | * message. |
|
835b8f7b3d1d
[gaim-migrate @ 16295]
Mark Doliner <markdoliner@pidgin.im>
parents:
13295
diff
changeset
|
51 | */ |
| 15884 | 52 | unsigned int serv_send_typing(PurpleConnection *gc, const char *name, PurpleTypingState state); |
|
13844
835b8f7b3d1d
[gaim-migrate @ 16295]
Mark Doliner <markdoliner@pidgin.im>
parents:
13295
diff
changeset
|
53 | |
| 15884 | 54 | void serv_move_buddy(PurpleBuddy *, PurpleGroup *, PurpleGroup *); |
| 55 | int serv_send_im(PurpleConnection *, const char *, const char *, PurpleMessageFlags flags); | |
|
19639
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
56 | |
|
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
57 | /** Get information about an account's attention commands, from the prpl. |
|
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
58 | * |
|
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
59 | * @return The attention command numbered 'code' from the prpl's attention_types, or NULL. |
|
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
60 | */ |
|
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
61 | PurpleAttentionType *purple_get_attention_type_from_code(PurpleAccount *account, guint type_code); |
|
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
62 | |
|
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
63 | /** Send an attention request message. |
|
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
64 | * |
|
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
65 | * @param gc The connection to send the message on. |
|
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
66 | * @param who Whose attention to request. |
|
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
67 | * @param type An index into the prpl's attention_types list determining the type |
|
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
68 | * of the attention request command to send. 0 if prpl only defines one |
|
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
69 | * (for example, Yahoo and MSN), but some protocols define more (MySpaceIM). |
|
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
70 | * |
|
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
71 | * Note that you can't send arbitrary PurpleAttentionType's, because there is |
|
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
72 | * only a fixed set of attention commands. |
|
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
73 | */ |
|
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
74 | void serv_send_attention(PurpleConnection *gc, const char *who, guint type_code); |
|
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
75 | |
|
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
76 | /** Process an incoming attention message. |
|
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
77 | * |
|
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
78 | * @param gc The connection that received the attention message. |
|
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
79 | * @param who Who requested your attention. |
|
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
80 | * @param type An index into the prpl's attention_types list determining the type |
|
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
81 | * of the attention request command to send. |
|
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
82 | */ |
|
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
83 | void serv_got_attention(PurpleConnection *gc, const char *who, guint type_code); |
|
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
84 | |
| 15884 | 85 | void serv_get_info(PurpleConnection *, const char *); |
| 86 | void serv_set_info(PurpleConnection *, const char *); | |
|
13844
835b8f7b3d1d
[gaim-migrate @ 16295]
Mark Doliner <markdoliner@pidgin.im>
parents:
13295
diff
changeset
|
87 | |
| 15884 | 88 | void serv_add_permit(PurpleConnection *, const char *); |
| 89 | void serv_add_deny(PurpleConnection *, const char *); | |
| 90 | void serv_rem_permit(PurpleConnection *, const char *); | |
| 91 | void serv_rem_deny(PurpleConnection *, const char *); | |
| 92 | void serv_set_permit_deny(PurpleConnection *); | |
| 93 | void serv_chat_invite(PurpleConnection *, int, const char *, const char *); | |
| 94 | void serv_chat_leave(PurpleConnection *, int); | |
| 95 | void serv_chat_whisper(PurpleConnection *, int, const char *, const char *); | |
| 96 | int serv_chat_send(PurpleConnection *, int, const char *, PurpleMessageFlags flags); | |
| 97 | void serv_alias_buddy(PurpleBuddy *); | |
| 98 | void serv_got_alias(PurpleConnection *gc, const char *who, const char *alias); | |
|
19639
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
99 | |
|
13844
835b8f7b3d1d
[gaim-migrate @ 16295]
Mark Doliner <markdoliner@pidgin.im>
parents:
13295
diff
changeset
|
100 | |
|
835b8f7b3d1d
[gaim-migrate @ 16295]
Mark Doliner <markdoliner@pidgin.im>
parents:
13295
diff
changeset
|
101 | /** |
| 15884 | 102 | * Receive a typing message from a remote user. Either PURPLE_TYPING |
| 103 | * or PURPLE_TYPED. If the user has stopped typing then use | |
|
13844
835b8f7b3d1d
[gaim-migrate @ 16295]
Mark Doliner <markdoliner@pidgin.im>
parents:
13295
diff
changeset
|
104 | * serv_got_typing_stopped instead. |
|
835b8f7b3d1d
[gaim-migrate @ 16295]
Mark Doliner <markdoliner@pidgin.im>
parents:
13295
diff
changeset
|
105 | * |
|
835b8f7b3d1d
[gaim-migrate @ 16295]
Mark Doliner <markdoliner@pidgin.im>
parents:
13295
diff
changeset
|
106 | * TODO: Could probably move this into the conversation API. |
|
835b8f7b3d1d
[gaim-migrate @ 16295]
Mark Doliner <markdoliner@pidgin.im>
parents:
13295
diff
changeset
|
107 | * |
|
16262
1d9b65303dfc
Doxygen updates. This eliminated all the warnings from Doxygen.
Richard Laager <rlaager@pidgin.im>
parents:
15997
diff
changeset
|
108 | * @param gc The connection on which the typing message was received. |
|
1d9b65303dfc
Doxygen updates. This eliminated all the warnings from Doxygen.
Richard Laager <rlaager@pidgin.im>
parents:
15997
diff
changeset
|
109 | * @param name The name of the remote user. |
|
13844
835b8f7b3d1d
[gaim-migrate @ 16295]
Mark Doliner <markdoliner@pidgin.im>
parents:
13295
diff
changeset
|
110 | * @param timeout If this is a number greater than 0, then |
| 15884 | 111 | * Purple will wait this number of seconds and then |
| 112 | * set this buddy to the PURPLE_NOT_TYPING state. This | |
|
13844
835b8f7b3d1d
[gaim-migrate @ 16295]
Mark Doliner <markdoliner@pidgin.im>
parents:
13295
diff
changeset
|
113 | * is used by protocols that send repeated typing messages |
|
835b8f7b3d1d
[gaim-migrate @ 16295]
Mark Doliner <markdoliner@pidgin.im>
parents:
13295
diff
changeset
|
114 | * while the user is composing the message. |
|
16262
1d9b65303dfc
Doxygen updates. This eliminated all the warnings from Doxygen.
Richard Laager <rlaager@pidgin.im>
parents:
15997
diff
changeset
|
115 | * @param state The typing state received |
|
13844
835b8f7b3d1d
[gaim-migrate @ 16295]
Mark Doliner <markdoliner@pidgin.im>
parents:
13295
diff
changeset
|
116 | */ |
| 15884 | 117 | void serv_got_typing(PurpleConnection *gc, const char *name, int timeout, |
| 118 | PurpleTypingState state); | |
|
13844
835b8f7b3d1d
[gaim-migrate @ 16295]
Mark Doliner <markdoliner@pidgin.im>
parents:
13295
diff
changeset
|
119 | |
|
835b8f7b3d1d
[gaim-migrate @ 16295]
Mark Doliner <markdoliner@pidgin.im>
parents:
13295
diff
changeset
|
120 | /** |
|
835b8f7b3d1d
[gaim-migrate @ 16295]
Mark Doliner <markdoliner@pidgin.im>
parents:
13295
diff
changeset
|
121 | * TODO: Could probably move this into the conversation API. |
|
835b8f7b3d1d
[gaim-migrate @ 16295]
Mark Doliner <markdoliner@pidgin.im>
parents:
13295
diff
changeset
|
122 | */ |
| 15884 | 123 | void serv_got_typing_stopped(PurpleConnection *gc, const char *name); |
|
13844
835b8f7b3d1d
[gaim-migrate @ 16295]
Mark Doliner <markdoliner@pidgin.im>
parents:
13295
diff
changeset
|
124 | |
| 15884 | 125 | void serv_got_im(PurpleConnection *gc, const char *who, const char *msg, |
| 126 | PurpleMessageFlags flags, time_t mtime); | |
|
15203
1a092806f344
[gaim-migrate @ 17927]
Mark Doliner <markdoliner@pidgin.im>
parents:
15043
diff
changeset
|
127 | |
|
1a092806f344
[gaim-migrate @ 17927]
Mark Doliner <markdoliner@pidgin.im>
parents:
15043
diff
changeset
|
128 | /** |
|
1a092806f344
[gaim-migrate @ 17927]
Mark Doliner <markdoliner@pidgin.im>
parents:
15043
diff
changeset
|
129 | * @param data The hash function should be g_str_hash() and the equal |
|
1a092806f344
[gaim-migrate @ 17927]
Mark Doliner <markdoliner@pidgin.im>
parents:
15043
diff
changeset
|
130 | * function should be g_str_equal(). |
|
1a092806f344
[gaim-migrate @ 17927]
Mark Doliner <markdoliner@pidgin.im>
parents:
15043
diff
changeset
|
131 | */ |
|
15997
ff97c5f69196
A little doxygen love and some tiny gaim->purpleisms
Mark Doliner <markdoliner@pidgin.im>
parents:
15884
diff
changeset
|
132 | void serv_join_chat(PurpleConnection *, GHashTable *data); |
|
15203
1a092806f344
[gaim-migrate @ 17927]
Mark Doliner <markdoliner@pidgin.im>
parents:
15043
diff
changeset
|
133 | |
|
1a092806f344
[gaim-migrate @ 17927]
Mark Doliner <markdoliner@pidgin.im>
parents:
15043
diff
changeset
|
134 | /** |
|
1a092806f344
[gaim-migrate @ 17927]
Mark Doliner <markdoliner@pidgin.im>
parents:
15043
diff
changeset
|
135 | * @param data The hash function should be g_str_hash() and the equal |
|
1a092806f344
[gaim-migrate @ 17927]
Mark Doliner <markdoliner@pidgin.im>
parents:
15043
diff
changeset
|
136 | * function should be g_str_equal(). |
|
1a092806f344
[gaim-migrate @ 17927]
Mark Doliner <markdoliner@pidgin.im>
parents:
15043
diff
changeset
|
137 | */ |
|
15997
ff97c5f69196
A little doxygen love and some tiny gaim->purpleisms
Mark Doliner <markdoliner@pidgin.im>
parents:
15884
diff
changeset
|
138 | void serv_reject_chat(PurpleConnection *, GHashTable *data); |
|
15203
1a092806f344
[gaim-migrate @ 17927]
Mark Doliner <markdoliner@pidgin.im>
parents:
15043
diff
changeset
|
139 | |
|
1a092806f344
[gaim-migrate @ 17927]
Mark Doliner <markdoliner@pidgin.im>
parents:
15043
diff
changeset
|
140 | /** |
|
16262
1d9b65303dfc
Doxygen updates. This eliminated all the warnings from Doxygen.
Richard Laager <rlaager@pidgin.im>
parents:
15997
diff
changeset
|
141 | * Called by a prpl when an account is invited into a chat. |
|
1d9b65303dfc
Doxygen updates. This eliminated all the warnings from Doxygen.
Richard Laager <rlaager@pidgin.im>
parents:
15997
diff
changeset
|
142 | * |
|
1d9b65303dfc
Doxygen updates. This eliminated all the warnings from Doxygen.
Richard Laager <rlaager@pidgin.im>
parents:
15997
diff
changeset
|
143 | * @param gc The connection on which the invite arrived. |
|
1d9b65303dfc
Doxygen updates. This eliminated all the warnings from Doxygen.
Richard Laager <rlaager@pidgin.im>
parents:
15997
diff
changeset
|
144 | * @param name The name of the chat you're being invited to. |
|
1d9b65303dfc
Doxygen updates. This eliminated all the warnings from Doxygen.
Richard Laager <rlaager@pidgin.im>
parents:
15997
diff
changeset
|
145 | * @param who The username of the person inviting the account. |
|
1d9b65303dfc
Doxygen updates. This eliminated all the warnings from Doxygen.
Richard Laager <rlaager@pidgin.im>
parents:
15997
diff
changeset
|
146 | * @param message The optional invite message. |
|
1d9b65303dfc
Doxygen updates. This eliminated all the warnings from Doxygen.
Richard Laager <rlaager@pidgin.im>
parents:
15997
diff
changeset
|
147 | * @param data The components necessary if you want to call serv_join_chat(). |
|
1d9b65303dfc
Doxygen updates. This eliminated all the warnings from Doxygen.
Richard Laager <rlaager@pidgin.im>
parents:
15997
diff
changeset
|
148 | * The hash function should be g_str_hash() and the equal |
|
1d9b65303dfc
Doxygen updates. This eliminated all the warnings from Doxygen.
Richard Laager <rlaager@pidgin.im>
parents:
15997
diff
changeset
|
149 | * function should be g_str_equal(). |
|
15203
1a092806f344
[gaim-migrate @ 17927]
Mark Doliner <markdoliner@pidgin.im>
parents:
15043
diff
changeset
|
150 | */ |
| 15884 | 151 | void serv_got_chat_invite(PurpleConnection *gc, const char *name, |
| 5872 | 152 | const char *who, const char *message, |
| 153 | GHashTable *data); | |
|
15203
1a092806f344
[gaim-migrate @ 17927]
Mark Doliner <markdoliner@pidgin.im>
parents:
15043
diff
changeset
|
154 | |
| 15884 | 155 | PurpleConversation *serv_got_joined_chat(PurpleConnection *gc, |
| 5872 | 156 | int id, const char *name); |
| 15884 | 157 | void serv_got_chat_left(PurpleConnection *g, int id); |
| 158 | void serv_got_chat_in(PurpleConnection *g, int id, const char *who, | |
| 159 | PurpleMessageFlags flags, const char *message, time_t mtime); | |
| 160 | void serv_send_file(PurpleConnection *gc, const char *who, const char *file); | |
| 5872 | 161 | |
|
5944
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
162 | #ifdef __cplusplus |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
163 | } |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
164 | #endif |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
165 | |
| 15884 | 166 | #endif /* _PURPLE_SERVER_H_ */ |