Mercurial > pidgin.yaz
view pidgin/plugins/crazychat/crazychat.h @ 21822:37f0b6291374
merge of '1d77c730a1160c77d14354d4ce61455e59c94fbc'
and '7db30ca464c9869b5f2058907f65de643c11b7b3'
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Wed, 12 Dec 2007 00:15:23 +0000 |
parents | 32c366eeeb99 |
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 "purple.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__ */