pep_geoloc.h.in
author Myhailo Danylenko <isbear@ukrpost.net>
Fri, 14 Nov 2014 01:51:58 +0200
changeset 44 636ef7fe3d5b
parent 31 e404cd1c7077
permissions -rw-r--r--
Use build-time variable in sources


#ifndef MCABBER_GEOLOC_H
#define MCABBER_GEOLOC_H

/*
 * geoloc.h             -- Pep geographical location 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_GEOLOC        ( "http:/" "/jabber.org/protocol/geoloc"        )
#define NS_GEOLOC_NOTIFY ( "http:/" "/jabber.org/protocol/geoloc+notify" )

#define OPT_GEOLOC_INTERVAL "${OPT_GEOLOC_INTERVAL}"

#define HOOK_GEOLOC_IN  ( "${HOOK_GEOLOC_IN}"  )
#define HOOK_GEOLOC_OUT ( "${HOOK_GEOLOC_OUT}" )

#define GEOLOC_ERROR_NOTCONNECTED ( 0x01 )

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

gboolean pep_geoloc_request ( const gchar *to, GError **error );

#endif