blob: fa2d707a6176c03c11cf8468f411a8089a876154 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef __CONN_LOCATION_H__
#define __CONN_LOCATION_H__
#include "connection.h"
#include <extensions/extensions.h>
G_BEGIN_DECLS
void location_iface_init (gpointer g_iface, gpointer iface_data);
void conn_location_properties_getter (GObject *object, GQuark interface,
GQuark name, GValue *value, gpointer getter_data);
gboolean conn_location_properties_setter (GObject *object, GQuark interface,
GQuark name, const GValue *value, gpointer setter_data, GError **error);
void conn_location_init (GabbleConnection *conn);
G_END_DECLS
#endif /* __CONN_LOCATION_H__ */
|