/usr/include/geoclue/geoclue-master-client.h is in libgeoclue-dev 0.12.99-4ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 | /*
* Geoclue
* geoclue-master-client.c - Client API for accessing the Geoclue Master process
*
* Author: Iain Holmes <iain@openedhand.com>
* Copyright 2008 by Garmin Ltd. or its subsidiaries
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*
*/
#ifndef _GEOCLUE_MASTER_CLIENT_H
#define _GEOCLUE_MASTER_CLIENT_H
#include <glib-object.h>
#include <geoclue/geoclue-types.h>
#include <geoclue/geoclue-accuracy.h>
#include <geoclue/geoclue-position.h>
#include <geoclue/geoclue-address.h>
G_BEGIN_DECLS
#define GEOCLUE_MASTER_CLIENT_DBUS_INTERFACE "org.freedesktop.Geoclue.MasterClient"
#define GEOCLUE_TYPE_MASTER_CLIENT (geoclue_master_client_get_type ())
#define GEOCLUE_MASTER_CLIENT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GEOCLUE_TYPE_MASTER_CLIENT, GeoclueMasterClient))
#define GEOCLUE_IS_MASTER_CLIENT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GEOCLUE_TYPE_MASTER_CLIENT))
typedef struct _GeoclueMasterClient {
GObject parent;
} GeoclueMasterClient;
typedef struct _GeoclueMasterClientClass {
GObjectClass parent_class;
void (* address_provider_changed) (GeoclueMasterClient *client,
char *name,
char *description,
char *service,
char *path);
void (* position_provider_changed) (GeoclueMasterClient *client,
char *name,
char *description,
char *service,
char *path);
void (* invalidated) (GeoclueMasterClient *client);
} GeoclueMasterClientClass;
GType geoclue_master_client_get_type (void);
gboolean geoclue_master_client_set_requirements (GeoclueMasterClient *client,
GeoclueAccuracyLevel min_accuracy,
int min_time,
gboolean require_updates,
GeoclueResourceFlags allowed_resources,
GError **error);
typedef void (*GeoclueSetRequirementsCallback) (GeoclueMasterClient *client,
GError *error,
gpointer userdata);
void geoclue_master_client_set_requirements_async (GeoclueMasterClient *client,
GeoclueAccuracyLevel min_accuracy,
int min_time,
gboolean require_updates,
GeoclueResourceFlags allowed_resources,
GeoclueSetRequirementsCallback callback,
gpointer userdata);
GeoclueAddress *geoclue_master_client_create_address (GeoclueMasterClient *client, GError **error);
typedef void (*CreateAddressCallback) (GeoclueMasterClient *client,
GeoclueAddress *address,
GError *error,
gpointer userdata);
void geoclue_master_client_create_address_async (GeoclueMasterClient *client,
CreateAddressCallback callback,
gpointer userdata);
GeocluePosition *geoclue_master_client_create_position (GeoclueMasterClient *client, GError **error);
typedef void (*CreatePositionCallback) (GeoclueMasterClient *client,
GeocluePosition *position,
GError *error,
gpointer userdata);
void geoclue_master_client_create_position_async (GeoclueMasterClient *client,
CreatePositionCallback callback,
gpointer userdata);
gboolean geoclue_master_client_get_address_provider (GeoclueMasterClient *client,
char **name,
char **description,
char **service,
char **path,
GError **error);
typedef void (*GeoclueGetProviderCallback) (GeoclueMasterClient *client,
char *name,
char *description,
char *service,
char *path,
GError *error,
gpointer userdata);
void geoclue_master_client_get_address_provider_async (GeoclueMasterClient *client,
GeoclueGetProviderCallback callback,
gpointer userdata);
gboolean geoclue_master_client_get_position_provider (GeoclueMasterClient *client,
char **name,
char **description,
char **service,
char **path,
GError **error);
void geoclue_master_client_get_position_provider_async (GeoclueMasterClient *client,
GeoclueGetProviderCallback callback,
gpointer userdata);
G_END_DECLS
#endif
|