diff -r c035fbbab184 -r 23fa36d480fb mood.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mood.h Sun May 20 22:15:51 2012 +0300 @@ -0,0 +1,40 @@ + +#ifndef MCABBER_MOOD_H +#define MCABBER_MOOD_H + +/* + * mood.h -- Pep mood events + * + * Copyright (C) 2009-2012 Myhailo Danylenko + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or (at + * your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 + * USA + */ + +#include + +#define NS_MOOD ( "http:/" "/jabber.org/protocol/mood" ) +#define NS_MOOD_NOTIFY ( "http:/" "/jabber.org/protocol/mood+notify" ) + +#define HOOK_MOOD_IN ( "mood-in" ) +#define HOOK_MOOD_OUT ( "mood-out" ) + +#define MOOD_ERROR_NOTCONNECTED ( 0x01 ) + +void mood_publish ( const gchar *mood, const gchar *text ); +gboolean mood_request ( const gchar *to, GError **error ); + +#endif +