pep_tune.h.in
author Myhailo Danylenko <isbear@ukrpost.net>
Mon, 21 May 2012 19:10:25 +0300
changeset 31 e404cd1c7077
permissions -rw-r--r--
Drop publish_*, rework build system * use foreach and lists in cmake * put hook and option names in cmake configurable variables * put module descriptions into cmake variables * use cmake-provided options in .rc * use cmake-provided module description in header and avv files * rename headers to pep_*.h * remove publish_*() * api versions for pep_* bumped to 2 (incompatible) * update documentation * rework & optimize tune outgoing handler (ex-tune_publish) * ignore backup files at installation


#ifndef MCABBER_TUNE_H
#define MCABBER_TUNE_H

/*
 * tune.h               -- Pep tune events
 *
 * Copyright (C) 2009-2012 Myhailo Danylenko <isbear@ukrpost.net>
 *
 * 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 <glib.h>

#define NS_TUNE        ( "http:/" "/jabber.org/protocol/tune"        )
#define NS_TUNE_NOTIFY ( "http:/" "/jabber.org/protocol/tune+notify" )

#define TUNE_ERROR_NOTCONNECTED ( 0x01 )

#define OPT_TUNE_PAUSE_IS_STOP "${OPT_TUNE_PAUSE_IS_STOP}"
#define OPT_TUNE_INTERVAL      "${OPT_TUNE_INTERVAL}"

#define HOOK_TUNE_IN  ( "${HOOK_TUNE_IN}"  )
#define HOOK_TUNE_OUT ( "${HOOK_TUNE_OUT}" )

typedef struct {
	const gchar *name;
	gchar       *value;
} tune_pair_t;

gboolean pep_tune_request ( const gchar *to, GError **err );

#endif