Mercurial > pidgin
comparison src/server.c @ 1920:5bed3bc833b5
[gaim-migrate @ 1930]
in addition, frombase64 mods, needed for buddy icon in toc.
committer: Tailor Script <tailor@pidgin.im>
| author | Eric Warmenhoven <eric@warmenhoven.org> |
|---|---|
| date | Wed, 30 May 2001 18:26:52 +0000 |
| parents | fe79493094e7 |
| children | 6a9109c79034 |
comparison
equal
deleted
inserted
replaced
| 1919:4dcaa4afc6c0 | 1920:5bed3bc833b5 |
|---|---|
| 299 | 299 |
| 300 void serv_chat_whisper(struct gaim_connection *g, int id, char *who, char *message) | 300 void serv_chat_whisper(struct gaim_connection *g, int id, char *who, char *message) |
| 301 { | 301 { |
| 302 if (g->prpl && g->prpl->chat_whisper) | 302 if (g->prpl && g->prpl->chat_whisper) |
| 303 (*g->prpl->chat_whisper)(g, id, who, message); | 303 (*g->prpl->chat_whisper)(g, id, who, message); |
| 304 } | |
| 305 | |
| 306 void serv_chat_set_topic(struct gaim_connection *g, int id, char *topic) | |
| 307 { | |
| 308 if (g->prpl && g->prpl->chat_set_topic) | |
| 309 (*g->prpl->chat_set_topic)(g, id, topic); | |
| 304 } | 310 } |
| 305 | 311 |
| 306 void serv_chat_send(struct gaim_connection *g, int id, char *message) | 312 void serv_chat_send(struct gaim_connection *g, int id, char *message) |
| 307 { | 313 { |
| 308 if (g->prpl && g->prpl->chat_send) | 314 if (g->prpl && g->prpl->chat_send) |
