Mercurial > pidgin.yaz
diff src/prpl.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 | dece74f05509 |
| children | 1930e3d00ecd |
line wrap: on
line diff
--- a/src/prpl.h Thu Oct 02 02:15:36 2003 +0000 +++ b/src/prpl.h Thu Oct 02 02:54:07 2003 +0000 @@ -92,9 +92,9 @@ */ typedef enum { - GAIM_IM_AUTO_RESP = 0x0001, /**< Auto response. */ - GAIM_IM_IMAGES = 0x0002 /**< Contains images. */ -} GaimImFlags; + GAIM_CONV_IM_AUTO_RESP = 0x0001, /**< Auto response. */ + GAIM_CONV_IM_IMAGES = 0x0002 /**< Contains images. */ +} GaimConvImFlags; /** * Protocol options @@ -243,7 +243,7 @@ void (*close)(GaimConnection *); int (*send_im)(GaimConnection *, const char *who, const char *message, - GaimImFlags flags); + GaimConvImFlags flags); void (*set_info)(GaimConnection *, const char *info); int (*send_typing)(GaimConnection *, const char *name, int typing); void (*get_info)(GaimConnection *, const char *who);
