view mcabber/mcabber/xmpp_muc.h @ 1900:5dc0fd8225e3

Display a warning when the configuration file hasn't been updated Display a message when the jid is missing and the 'username' option is still set in the configuration file.
author Mikael Berthe <mikael@lilotux.net>
date Wed, 14 Apr 2010 21:01:31 +0200
parents e6d355e50d7a
children 1a01a7ef4e43
line wrap: on
line source

#ifndef __MCABBER_XMPP_MUC_H__
#define __MCABBER_XMPP_MUC_H__ 1

typedef struct {
  char *to;
  char *from;
  char *passwd;
  char *reason;
} event_muc_invitation;

void destroy_event_muc_invitation(event_muc_invitation *invitation);
void roompresence(gpointer room, void *presencedata);
void got_muc_message(const char *from, LmMessageNode *x);
void handle_muc_presence(const char *from, LmMessageNode * xmldata,
                         const char *roomjid, const char *rname,
                         enum imstatus ust, const char *ustmsg,
                         time_t usttime, char bpprio);

#endif /* __MCABBER_XMPP_MUC_H__ */

/* vim: set et cindent cinoptions=>2\:2(0 ts=2 sw=2:  For Vim users... */