comparison src/server.h @ 5944:158196b2db19

[gaim-migrate @ 6385] Added #ifdef __cplusplus lines so that things will link right with C++. Also added some doxygen comment blocks that didn't previously exist. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Mon, 23 Jun 2003 06:40:13 +0000
parents 059d95c67cda
children fccc33d4b8fa
comparison
equal deleted inserted replaced
5943:a4f2aba0848d 5944:158196b2db19
43 */ 43 */
44 #define UC_UNAVAILABLE 1 44 #define UC_UNAVAILABLE 1
45 45
46 #include "account.h" 46 #include "account.h"
47 #include "conversation.h" 47 #include "conversation.h"
48
49 #ifdef __cplusplus
50 extern "C" {
51 #endif
48 52
49 void serv_login(GaimAccount *); 53 void serv_login(GaimAccount *);
50 void serv_close(GaimConnection *); 54 void serv_close(GaimConnection *);
51 void serv_touch_idle(GaimConnection *); 55 void serv_touch_idle(GaimConnection *);
52 int serv_send_im(GaimConnection *, char *, char *, int, int); 56 int serv_send_im(GaimConnection *, char *, char *, int, int);
102 int id, const char *name); 106 int id, const char *name);
103 void serv_got_chat_left(GaimConnection *g, int id); 107 void serv_got_chat_left(GaimConnection *g, int id);
104 void serv_got_chat_in(GaimConnection *g, int id, char *who, 108 void serv_got_chat_in(GaimConnection *g, int id, char *who,
105 int whisper, char *message, time_t mtime); 109 int whisper, char *message, time_t mtime);
106 110
111 #ifdef __cplusplus
112 }
113 #endif
114
107 #endif /* _GAIM_SERVER_H_ */ 115 #endif /* _GAIM_SERVER_H_ */