config.h.in
author Myhailo Danylenko <isbear@ukrpost.net>
Wed, 20 Jan 2010 19:59:55 +0200
changeset 22 6d0d6bbf98d0
child 26 91987ea19f24
permissions -rw-r--r--
Use xmpp_is_online and unregiste_reply_handler


#ifndef LOCAL_CONFIG_H
#define LOCAL_CONFIG_H

#cmakedefine HAVE_LM_CONNECTION_UNREGISTER_REPLY_HANDLER

#cmakedefine HAVE_XMPP_IS_ONLINE

#ifndef HAVE_XMPP_IS_ONLINE
inline gboolean xmpp_is_online (void)
{
	if (lconnection && lm_connection_is_authenticated (lconnection))
		return TRUE;
	else
		return FALSE;
}
#endif

#endif