comparison src/server.h @ 7118:bf630f7dfdcd

[gaim-migrate @ 7685] Here's a commit that I think will make faceprint happy. GaimWindow -> GaimConvWindow, GaimIm -> GaimConvIm, GaimChat -> GaimConvChat, GaimBlistChat -> GaimChat, and updated the API functions as well. Plugin authors are going to hunt me down and murder me. I can feel it.. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Thu, 02 Oct 2003 02:54:07 +0000
parents 0ffd540660df
children fa6395637e2c
comparison
equal deleted inserted replaced
7117:943085b0ff8b 7118:bf630f7dfdcd
37 #endif 37 #endif
38 38
39 void serv_login(GaimAccount *); 39 void serv_login(GaimAccount *);
40 void serv_close(GaimConnection *); 40 void serv_close(GaimConnection *);
41 void serv_touch_idle(GaimConnection *); 41 void serv_touch_idle(GaimConnection *);
42 int serv_send_im(GaimConnection *, const char *, const char *, GaimImFlags); 42 int serv_send_im(GaimConnection *, const char *, const char *, GaimConvImFlags);
43 void serv_get_info(GaimConnection *, const char *); 43 void serv_get_info(GaimConnection *, const char *);
44 void serv_get_dir(GaimConnection *, const char *); 44 void serv_get_dir(GaimConnection *, const char *);
45 void serv_set_idle(GaimConnection *, int); 45 void serv_set_idle(GaimConnection *, int);
46 void serv_set_info(GaimConnection *, const char *); 46 void serv_set_info(GaimConnection *, const char *);
47 void serv_set_away(GaimConnection *, const char *, const char *); 47 void serv_set_away(GaimConnection *, const char *, const char *);
79 void serv_got_typing(GaimConnection *gc, const char *name, int timeout, 79 void serv_got_typing(GaimConnection *gc, const char *name, int timeout,
80 GaimTypingState state); 80 GaimTypingState state);
81 void serv_set_buddyicon(GaimConnection *gc, const char *filename); 81 void serv_set_buddyicon(GaimConnection *gc, const char *filename);
82 void serv_got_typing_stopped(GaimConnection *gc, const char *name); 82 void serv_got_typing_stopped(GaimConnection *gc, const char *name);
83 void serv_got_im(GaimConnection *gc, const char *who, const char *msg, 83 void serv_got_im(GaimConnection *gc, const char *who, const char *msg,
84 GaimImFlags imflags, time_t mtime); 84 GaimConvImFlags imflags, time_t mtime);
85 void serv_got_update(GaimConnection *gc, const char *name, int loggedin, 85 void serv_got_update(GaimConnection *gc, const char *name, int loggedin,
86 int evil, time_t signon, time_t idle, int type); 86 int evil, time_t signon, time_t idle, int type);
87 void serv_finish_login(GaimConnection *gc); 87 void serv_finish_login(GaimConnection *gc);
88 void serv_got_chat_invite(GaimConnection *gc, const char *name, 88 void serv_got_chat_invite(GaimConnection *gc, const char *name,
89 const char *who, const char *message, 89 const char *who, const char *message,