Mercurial > pidgin.yaz
view plugins/crazychat/crazychat.h @ 12216:4d3119205a33
[gaim-migrate @ 14518]
Remove GaimConvImFlags and GaimConvChatFlags - use GaimMessageFlags
everywhere instead.
Add a new GAIM_MESSAGE_IMAGES flag, and set it when sending a message
containing images.
When sending a message, the core will now always send "html" to the prpls,
just like it expects to receive html from the prpls for received messages.
This will allow text prpls such as SILC to support IM images and differentiate
them from user input. Previously gaim_unescape_html() was used before passing
the message to the prpl, now the prpl does this itself if it needs it.
I think I updated all the prpls correctly, but I'm not so sure about sametime.
committer: Tailor Script <tailor@pidgin.im>
author | Stu Tomlinson <stu@nosnilmot.com> |
---|---|
date | Thu, 24 Nov 2005 20:47:46 +0000 |
parents | 8bcd4d4ccef6 |
children |
line wrap: on
line source
#ifndef __CRAZYCHAT_H__ #define __CRAZYCHAT_H__ #include <glib.h> #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <gtk/gtk.h> #include "filter.h" #include "gaim.h" #ifdef HAVE_CONFIG_H # include "config.h" #endif struct crazychat; /* --- type definitions --- */ typedef enum { INVITE = 0, ACCEPT, ACCEPTED, CONNECTED } CC_STATE; /** * Finds the CrazyChat session with the handle. * @param cc global crazychat data structure * @param handle the peer name * @return the cc_session if found, or NULL */ struct cc_session *cc_find_session(struct crazychat *cc, char *handle); /** * Adds a new session with a peer, unless a peer session already exists. * Makes a deep copy of the handle. * @param cc global crazychat data structure * @param handle the peer name * @return the new/old cc_session */ struct cc_session *cc_add_session(struct crazychat *cc, char *handle); /** * Removes a crazychat session with a peer. * @param cc global crazychat data structure * @param session the cc_session to remove */ void cc_remove_session(struct crazychat *cc, struct cc_session *session); #endif /* __CRAZYCHAT_H__ */