epoc32/include/stdapis/dbus-1.0/dbus/dbus-glib-bindings.h
branchSymbian2
changeset 2 2fe1408b6811
child 4 837f303aceeb
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/epoc32/include/stdapis/dbus-1.0/dbus/dbus-glib-bindings.h	Tue Mar 16 16:12:26 2010 +0000
     1.3 @@ -0,0 +1,656 @@
     1.4 +/*
     1.5 +* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
     1.6 +
     1.7 +* Redistribution and use in source and binary forms, with or without 
     1.8 +* modification, are permitted provided that the following conditions are met:
     1.9 +
    1.10 +* Redistributions of source code must retain the above copyright notice, this 
    1.11 +* list of conditions and the following disclaimer.
    1.12 +* Redistributions in binary form must reproduce the above copyright notice, 
    1.13 +* this list of conditions and the following disclaimer in the documentation 
    1.14 +* and/or other materials provided with the distribution.
    1.15 +* Neither the name of Nokia Corporation nor the names of its contributors 
    1.16 +* may be used to endorse or promote products derived from this software 
    1.17 +* without specific prior written permission.
    1.18 +
    1.19 +* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 
    1.20 +* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
    1.21 +* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
    1.22 +* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 
    1.23 +* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
    1.24 +* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 
    1.25 +* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 
    1.26 +* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 
    1.27 +* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
    1.28 +* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    1.29 +*
    1.30 +* Description:
    1.31 +*
    1.32 +*/
    1.33 +
    1.34 +
    1.35 +
    1.36 +/* Generated by dbus-binding-tool; do not edit! */
    1.37 +
    1.38 +#include <glib/gtypes.h>
    1.39 +#include <glib/gerror.h>
    1.40 +#include <dbus/dbus-glib.h>
    1.41 +
    1.42 +G_BEGIN_DECLS
    1.43 +
    1.44 +#ifndef DBUS_GLIB_CLIENT_WRAPPERS_org_freedesktop_DBus_Introspectable
    1.45 +#define DBUS_GLIB_CLIENT_WRAPPERS_org_freedesktop_DBus_Introspectable
    1.46 +
    1.47 +static
    1.48 +#ifdef G_HAVE_INLINE
    1.49 +inline
    1.50 +#endif
    1.51 +gboolean
    1.52 +org_freedesktop_DBus_Introspectable_introspect (DBusGProxy *proxy, char ** OUT_data, GError **error)
    1.53 +
    1.54 +{
    1.55 +  return dbus_g_proxy_call (proxy, "Introspect", error, G_TYPE_INVALID, G_TYPE_STRING, OUT_data, G_TYPE_INVALID);
    1.56 +}
    1.57 +
    1.58 +typedef void (*org_freedesktop_DBus_Introspectable_introspect_reply) (DBusGProxy *proxy, char * OUT_data, GError *error, gpointer userdata);
    1.59 +
    1.60 +static void
    1.61 +org_freedesktop_DBus_Introspectable_introspect_async_callback (DBusGProxy *proxy, DBusGProxyCall *call, void *user_data)
    1.62 +{
    1.63 +  DBusGAsyncData *data = user_data;
    1.64 +  GError *error = NULL;
    1.65 +  char * OUT_data;
    1.66 +  dbus_g_proxy_end_call (proxy, call, &error, G_TYPE_STRING, &OUT_data, G_TYPE_INVALID);
    1.67 +  (*(org_freedesktop_DBus_Introspectable_introspect_reply)data->cb) (proxy, OUT_data, error, data->userdata);
    1.68 +  return;
    1.69 +}
    1.70 +
    1.71 +static
    1.72 +#ifdef G_HAVE_INLINE
    1.73 +inline
    1.74 +#endif
    1.75 +DBusGProxyCall*
    1.76 +org_freedesktop_DBus_Introspectable_introspect_async (DBusGProxy *proxy, org_freedesktop_DBus_Introspectable_introspect_reply callback, gpointer userdata)
    1.77 +
    1.78 +{
    1.79 +  DBusGAsyncData *stuff;
    1.80 +  stuff = g_new (DBusGAsyncData, 1);
    1.81 +  stuff->cb = G_CALLBACK (callback);
    1.82 +  stuff->userdata = userdata;
    1.83 +  return dbus_g_proxy_begin_call (proxy, "Introspect", org_freedesktop_DBus_Introspectable_introspect_async_callback, stuff, g_free, G_TYPE_INVALID);
    1.84 +}
    1.85 +#endif /* defined DBUS_GLIB_CLIENT_WRAPPERS_org_freedesktop_DBus_Introspectable */
    1.86 +
    1.87 +#ifndef DBUS_GLIB_CLIENT_WRAPPERS_org_freedesktop_DBus
    1.88 +#define DBUS_GLIB_CLIENT_WRAPPERS_org_freedesktop_DBus
    1.89 +
    1.90 +static
    1.91 +#ifdef G_HAVE_INLINE
    1.92 +inline
    1.93 +#endif
    1.94 +gboolean
    1.95 +org_freedesktop_DBus_request_name (DBusGProxy *proxy, const char * IN_arg0, const guint IN_arg1, guint* OUT_arg2, GError **error)
    1.96 +
    1.97 +{
    1.98 +  return dbus_g_proxy_call (proxy, "RequestName", error, G_TYPE_STRING, IN_arg0, G_TYPE_UINT, IN_arg1, G_TYPE_INVALID, G_TYPE_UINT, OUT_arg2, G_TYPE_INVALID);
    1.99 +}
   1.100 +
   1.101 +typedef void (*org_freedesktop_DBus_request_name_reply) (DBusGProxy *proxy, guint OUT_arg2, GError *error, gpointer userdata);
   1.102 +
   1.103 +static void
   1.104 +org_freedesktop_DBus_request_name_async_callback (DBusGProxy *proxy, DBusGProxyCall *call, void *user_data)
   1.105 +{
   1.106 +  DBusGAsyncData *data = user_data;
   1.107 +  GError *error = NULL;
   1.108 +  guint OUT_arg2;
   1.109 +  dbus_g_proxy_end_call (proxy, call, &error, G_TYPE_UINT, &OUT_arg2, G_TYPE_INVALID);
   1.110 +  (*(org_freedesktop_DBus_request_name_reply)data->cb) (proxy, OUT_arg2, error, data->userdata);
   1.111 +  return;
   1.112 +}
   1.113 +
   1.114 +static
   1.115 +#ifdef G_HAVE_INLINE
   1.116 +inline
   1.117 +#endif
   1.118 +DBusGProxyCall*
   1.119 +org_freedesktop_DBus_request_name_async (DBusGProxy *proxy, const char * IN_arg0, const guint IN_arg1, org_freedesktop_DBus_request_name_reply callback, gpointer userdata)
   1.120 +
   1.121 +{
   1.122 +  DBusGAsyncData *stuff;
   1.123 +  stuff = g_new (DBusGAsyncData, 1);
   1.124 +  stuff->cb = G_CALLBACK (callback);
   1.125 +  stuff->userdata = userdata;
   1.126 +  return dbus_g_proxy_begin_call (proxy, "RequestName", org_freedesktop_DBus_request_name_async_callback, stuff, g_free, G_TYPE_STRING, IN_arg0, G_TYPE_UINT, IN_arg1, G_TYPE_INVALID);
   1.127 +}
   1.128 +static
   1.129 +#ifdef G_HAVE_INLINE
   1.130 +inline
   1.131 +#endif
   1.132 +gboolean
   1.133 +org_freedesktop_DBus_release_name (DBusGProxy *proxy, const char * IN_arg0, guint* OUT_arg1, GError **error)
   1.134 +
   1.135 +{
   1.136 +  return dbus_g_proxy_call (proxy, "ReleaseName", error, G_TYPE_STRING, IN_arg0, G_TYPE_INVALID, G_TYPE_UINT, OUT_arg1, G_TYPE_INVALID);
   1.137 +}
   1.138 +
   1.139 +typedef void (*org_freedesktop_DBus_release_name_reply) (DBusGProxy *proxy, guint OUT_arg1, GError *error, gpointer userdata);
   1.140 +
   1.141 +static void
   1.142 +org_freedesktop_DBus_release_name_async_callback (DBusGProxy *proxy, DBusGProxyCall *call, void *user_data)
   1.143 +{
   1.144 +  DBusGAsyncData *data = user_data;
   1.145 +  GError *error = NULL;
   1.146 +  guint OUT_arg1;
   1.147 +  dbus_g_proxy_end_call (proxy, call, &error, G_TYPE_UINT, &OUT_arg1, G_TYPE_INVALID);
   1.148 +  (*(org_freedesktop_DBus_release_name_reply)data->cb) (proxy, OUT_arg1, error, data->userdata);
   1.149 +  return;
   1.150 +}
   1.151 +
   1.152 +static
   1.153 +#ifdef G_HAVE_INLINE
   1.154 +inline
   1.155 +#endif
   1.156 +DBusGProxyCall*
   1.157 +org_freedesktop_DBus_release_name_async (DBusGProxy *proxy, const char * IN_arg0, org_freedesktop_DBus_release_name_reply callback, gpointer userdata)
   1.158 +
   1.159 +{
   1.160 +  DBusGAsyncData *stuff;
   1.161 +  stuff = g_new (DBusGAsyncData, 1);
   1.162 +  stuff->cb = G_CALLBACK (callback);
   1.163 +  stuff->userdata = userdata;
   1.164 +  return dbus_g_proxy_begin_call (proxy, "ReleaseName", org_freedesktop_DBus_release_name_async_callback, stuff, g_free, G_TYPE_STRING, IN_arg0, G_TYPE_INVALID);
   1.165 +}
   1.166 +static
   1.167 +#ifdef G_HAVE_INLINE
   1.168 +inline
   1.169 +#endif
   1.170 +gboolean
   1.171 +org_freedesktop_DBus_start_service_by_name (DBusGProxy *proxy, const char * IN_arg0, const guint IN_arg1, guint* OUT_arg2, GError **error)
   1.172 +
   1.173 +{
   1.174 +  return dbus_g_proxy_call (proxy, "StartServiceByName", error, G_TYPE_STRING, IN_arg0, G_TYPE_UINT, IN_arg1, G_TYPE_INVALID, G_TYPE_UINT, OUT_arg2, G_TYPE_INVALID);
   1.175 +}
   1.176 +
   1.177 +typedef void (*org_freedesktop_DBus_start_service_by_name_reply) (DBusGProxy *proxy, guint OUT_arg2, GError *error, gpointer userdata);
   1.178 +
   1.179 +static void
   1.180 +org_freedesktop_DBus_start_service_by_name_async_callback (DBusGProxy *proxy, DBusGProxyCall *call, void *user_data)
   1.181 +{
   1.182 +  DBusGAsyncData *data = user_data;
   1.183 +  GError *error = NULL;
   1.184 +  guint OUT_arg2;
   1.185 +  dbus_g_proxy_end_call (proxy, call, &error, G_TYPE_UINT, &OUT_arg2, G_TYPE_INVALID);
   1.186 +  (*(org_freedesktop_DBus_start_service_by_name_reply)data->cb) (proxy, OUT_arg2, error, data->userdata);
   1.187 +  return;
   1.188 +}
   1.189 +
   1.190 +static
   1.191 +#ifdef G_HAVE_INLINE
   1.192 +inline
   1.193 +#endif
   1.194 +DBusGProxyCall*
   1.195 +org_freedesktop_DBus_start_service_by_name_async (DBusGProxy *proxy, const char * IN_arg0, const guint IN_arg1, org_freedesktop_DBus_start_service_by_name_reply callback, gpointer userdata)
   1.196 +
   1.197 +{
   1.198 +  DBusGAsyncData *stuff;
   1.199 +  stuff = g_new (DBusGAsyncData, 1);
   1.200 +  stuff->cb = G_CALLBACK (callback);
   1.201 +  stuff->userdata = userdata;
   1.202 +  return dbus_g_proxy_begin_call (proxy, "StartServiceByName", org_freedesktop_DBus_start_service_by_name_async_callback, stuff, g_free, G_TYPE_STRING, IN_arg0, G_TYPE_UINT, IN_arg1, G_TYPE_INVALID);
   1.203 +}
   1.204 +static
   1.205 +#ifdef G_HAVE_INLINE
   1.206 +inline
   1.207 +#endif
   1.208 +gboolean
   1.209 +org_freedesktop_DBus_hello (DBusGProxy *proxy, char ** OUT_arg0, GError **error)
   1.210 +
   1.211 +{
   1.212 +  return dbus_g_proxy_call (proxy, "Hello", error, G_TYPE_INVALID, G_TYPE_STRING, OUT_arg0, G_TYPE_INVALID);
   1.213 +}
   1.214 +
   1.215 +typedef void (*org_freedesktop_DBus_hello_reply) (DBusGProxy *proxy, char * OUT_arg0, GError *error, gpointer userdata);
   1.216 +
   1.217 +static void
   1.218 +org_freedesktop_DBus_hello_async_callback (DBusGProxy *proxy, DBusGProxyCall *call, void *user_data)
   1.219 +{
   1.220 +  DBusGAsyncData *data = user_data;
   1.221 +  GError *error = NULL;
   1.222 +  char * OUT_arg0;
   1.223 +  dbus_g_proxy_end_call (proxy, call, &error, G_TYPE_STRING, &OUT_arg0, G_TYPE_INVALID);
   1.224 +  (*(org_freedesktop_DBus_hello_reply)data->cb) (proxy, OUT_arg0, error, data->userdata);
   1.225 +  return;
   1.226 +}
   1.227 +
   1.228 +static
   1.229 +#ifdef G_HAVE_INLINE
   1.230 +inline
   1.231 +#endif
   1.232 +DBusGProxyCall*
   1.233 +org_freedesktop_DBus_hello_async (DBusGProxy *proxy, org_freedesktop_DBus_hello_reply callback, gpointer userdata)
   1.234 +
   1.235 +{
   1.236 +  DBusGAsyncData *stuff;
   1.237 +  stuff = g_new (DBusGAsyncData, 1);
   1.238 +  stuff->cb = G_CALLBACK (callback);
   1.239 +  stuff->userdata = userdata;
   1.240 +  return dbus_g_proxy_begin_call (proxy, "Hello", org_freedesktop_DBus_hello_async_callback, stuff, g_free, G_TYPE_INVALID);
   1.241 +}
   1.242 +static
   1.243 +#ifdef G_HAVE_INLINE
   1.244 +inline
   1.245 +#endif
   1.246 +gboolean
   1.247 +org_freedesktop_DBus_name_has_owner (DBusGProxy *proxy, const char * IN_arg0, gboolean* OUT_arg1, GError **error)
   1.248 +
   1.249 +{
   1.250 +  return dbus_g_proxy_call (proxy, "NameHasOwner", error, G_TYPE_STRING, IN_arg0, G_TYPE_INVALID, G_TYPE_BOOLEAN, OUT_arg1, G_TYPE_INVALID);
   1.251 +}
   1.252 +
   1.253 +typedef void (*org_freedesktop_DBus_name_has_owner_reply) (DBusGProxy *proxy, gboolean OUT_arg1, GError *error, gpointer userdata);
   1.254 +
   1.255 +static void
   1.256 +org_freedesktop_DBus_name_has_owner_async_callback (DBusGProxy *proxy, DBusGProxyCall *call, void *user_data)
   1.257 +{
   1.258 +  DBusGAsyncData *data = user_data;
   1.259 +  GError *error = NULL;
   1.260 +  gboolean OUT_arg1;
   1.261 +  dbus_g_proxy_end_call (proxy, call, &error, G_TYPE_BOOLEAN, &OUT_arg1, G_TYPE_INVALID);
   1.262 +  (*(org_freedesktop_DBus_name_has_owner_reply)data->cb) (proxy, OUT_arg1, error, data->userdata);
   1.263 +  return;
   1.264 +}
   1.265 +
   1.266 +static
   1.267 +#ifdef G_HAVE_INLINE
   1.268 +inline
   1.269 +#endif
   1.270 +DBusGProxyCall*
   1.271 +org_freedesktop_DBus_name_has_owner_async (DBusGProxy *proxy, const char * IN_arg0, org_freedesktop_DBus_name_has_owner_reply callback, gpointer userdata)
   1.272 +
   1.273 +{
   1.274 +  DBusGAsyncData *stuff;
   1.275 +  stuff = g_new (DBusGAsyncData, 1);
   1.276 +  stuff->cb = G_CALLBACK (callback);
   1.277 +  stuff->userdata = userdata;
   1.278 +  return dbus_g_proxy_begin_call (proxy, "NameHasOwner", org_freedesktop_DBus_name_has_owner_async_callback, stuff, g_free, G_TYPE_STRING, IN_arg0, G_TYPE_INVALID);
   1.279 +}
   1.280 +static
   1.281 +#ifdef G_HAVE_INLINE
   1.282 +inline
   1.283 +#endif
   1.284 +gboolean
   1.285 +org_freedesktop_DBus_list_names (DBusGProxy *proxy, char *** OUT_arg0, GError **error)
   1.286 +
   1.287 +{
   1.288 +  return dbus_g_proxy_call (proxy, "ListNames", error, G_TYPE_INVALID, G_TYPE_STRV, OUT_arg0, G_TYPE_INVALID);
   1.289 +}
   1.290 +
   1.291 +typedef void (*org_freedesktop_DBus_list_names_reply) (DBusGProxy *proxy, char * *OUT_arg0, GError *error, gpointer userdata);
   1.292 +
   1.293 +static void
   1.294 +org_freedesktop_DBus_list_names_async_callback (DBusGProxy *proxy, DBusGProxyCall *call, void *user_data)
   1.295 +{
   1.296 +  DBusGAsyncData *data = user_data;
   1.297 +  GError *error = NULL;
   1.298 +  char ** OUT_arg0;
   1.299 +  dbus_g_proxy_end_call (proxy, call, &error, G_TYPE_STRV, &OUT_arg0, G_TYPE_INVALID);
   1.300 +  (*(org_freedesktop_DBus_list_names_reply)data->cb) (proxy, OUT_arg0, error, data->userdata);
   1.301 +  return;
   1.302 +}
   1.303 +
   1.304 +static
   1.305 +#ifdef G_HAVE_INLINE
   1.306 +inline
   1.307 +#endif
   1.308 +DBusGProxyCall*
   1.309 +org_freedesktop_DBus_list_names_async (DBusGProxy *proxy, org_freedesktop_DBus_list_names_reply callback, gpointer userdata)
   1.310 +
   1.311 +{
   1.312 +  DBusGAsyncData *stuff;
   1.313 +  stuff = g_new (DBusGAsyncData, 1);
   1.314 +  stuff->cb = G_CALLBACK (callback);
   1.315 +  stuff->userdata = userdata;
   1.316 +  return dbus_g_proxy_begin_call (proxy, "ListNames", org_freedesktop_DBus_list_names_async_callback, stuff, g_free, G_TYPE_INVALID);
   1.317 +}
   1.318 +static
   1.319 +#ifdef G_HAVE_INLINE
   1.320 +inline
   1.321 +#endif
   1.322 +gboolean
   1.323 +org_freedesktop_DBus_list_activatable_names (DBusGProxy *proxy, char *** OUT_arg0, GError **error)
   1.324 +
   1.325 +{
   1.326 +  return dbus_g_proxy_call (proxy, "ListActivatableNames", error, G_TYPE_INVALID, G_TYPE_STRV, OUT_arg0, G_TYPE_INVALID);
   1.327 +}
   1.328 +
   1.329 +typedef void (*org_freedesktop_DBus_list_activatable_names_reply) (DBusGProxy *proxy, char * *OUT_arg0, GError *error, gpointer userdata);
   1.330 +
   1.331 +static void
   1.332 +org_freedesktop_DBus_list_activatable_names_async_callback (DBusGProxy *proxy, DBusGProxyCall *call, void *user_data)
   1.333 +{
   1.334 +  DBusGAsyncData *data = user_data;
   1.335 +  GError *error = NULL;
   1.336 +  char ** OUT_arg0;
   1.337 +  dbus_g_proxy_end_call (proxy, call, &error, G_TYPE_STRV, &OUT_arg0, G_TYPE_INVALID);
   1.338 +  (*(org_freedesktop_DBus_list_activatable_names_reply)data->cb) (proxy, OUT_arg0, error, data->userdata);
   1.339 +  return;
   1.340 +}
   1.341 +
   1.342 +static
   1.343 +#ifdef G_HAVE_INLINE
   1.344 +inline
   1.345 +#endif
   1.346 +DBusGProxyCall*
   1.347 +org_freedesktop_DBus_list_activatable_names_async (DBusGProxy *proxy, org_freedesktop_DBus_list_activatable_names_reply callback, gpointer userdata)
   1.348 +
   1.349 +{
   1.350 +  DBusGAsyncData *stuff;
   1.351 +  stuff = g_new (DBusGAsyncData, 1);
   1.352 +  stuff->cb = G_CALLBACK (callback);
   1.353 +  stuff->userdata = userdata;
   1.354 +  return dbus_g_proxy_begin_call (proxy, "ListActivatableNames", org_freedesktop_DBus_list_activatable_names_async_callback, stuff, g_free, G_TYPE_INVALID);
   1.355 +}
   1.356 +static
   1.357 +#ifdef G_HAVE_INLINE
   1.358 +inline
   1.359 +#endif
   1.360 +gboolean
   1.361 +org_freedesktop_DBus_add_match (DBusGProxy *proxy, const char * IN_arg0, GError **error)
   1.362 +
   1.363 +{
   1.364 +  return dbus_g_proxy_call (proxy, "AddMatch", error, G_TYPE_STRING, IN_arg0, G_TYPE_INVALID, G_TYPE_INVALID);
   1.365 +}
   1.366 +
   1.367 +typedef void (*org_freedesktop_DBus_add_match_reply) (DBusGProxy *proxy, GError *error, gpointer userdata);
   1.368 +
   1.369 +static void
   1.370 +org_freedesktop_DBus_add_match_async_callback (DBusGProxy *proxy, DBusGProxyCall *call, void *user_data)
   1.371 +{
   1.372 +  DBusGAsyncData *data = user_data;
   1.373 +  GError *error = NULL;
   1.374 +  dbus_g_proxy_end_call (proxy, call, &error, G_TYPE_INVALID);
   1.375 +  (*(org_freedesktop_DBus_add_match_reply)data->cb) (proxy, error, data->userdata);
   1.376 +  return;
   1.377 +}
   1.378 +
   1.379 +static
   1.380 +#ifdef G_HAVE_INLINE
   1.381 +inline
   1.382 +#endif
   1.383 +DBusGProxyCall*
   1.384 +org_freedesktop_DBus_add_match_async (DBusGProxy *proxy, const char * IN_arg0, org_freedesktop_DBus_add_match_reply callback, gpointer userdata)
   1.385 +
   1.386 +{
   1.387 +  DBusGAsyncData *stuff;
   1.388 +  stuff = g_new (DBusGAsyncData, 1);
   1.389 +  stuff->cb = G_CALLBACK (callback);
   1.390 +  stuff->userdata = userdata;
   1.391 +  return dbus_g_proxy_begin_call (proxy, "AddMatch", org_freedesktop_DBus_add_match_async_callback, stuff, g_free, G_TYPE_STRING, IN_arg0, G_TYPE_INVALID);
   1.392 +}
   1.393 +static
   1.394 +#ifdef G_HAVE_INLINE
   1.395 +inline
   1.396 +#endif
   1.397 +gboolean
   1.398 +org_freedesktop_DBus_remove_match (DBusGProxy *proxy, const char * IN_arg0, GError **error)
   1.399 +
   1.400 +{
   1.401 +  return dbus_g_proxy_call (proxy, "RemoveMatch", error, G_TYPE_STRING, IN_arg0, G_TYPE_INVALID, G_TYPE_INVALID);
   1.402 +}
   1.403 +
   1.404 +typedef void (*org_freedesktop_DBus_remove_match_reply) (DBusGProxy *proxy, GError *error, gpointer userdata);
   1.405 +
   1.406 +static void
   1.407 +org_freedesktop_DBus_remove_match_async_callback (DBusGProxy *proxy, DBusGProxyCall *call, void *user_data)
   1.408 +{
   1.409 +  DBusGAsyncData *data = user_data;
   1.410 +  GError *error = NULL;
   1.411 +  dbus_g_proxy_end_call (proxy, call, &error, G_TYPE_INVALID);
   1.412 +  (*(org_freedesktop_DBus_remove_match_reply)data->cb) (proxy, error, data->userdata);
   1.413 +  return;
   1.414 +}
   1.415 +
   1.416 +static
   1.417 +#ifdef G_HAVE_INLINE
   1.418 +inline
   1.419 +#endif
   1.420 +DBusGProxyCall*
   1.421 +org_freedesktop_DBus_remove_match_async (DBusGProxy *proxy, const char * IN_arg0, org_freedesktop_DBus_remove_match_reply callback, gpointer userdata)
   1.422 +
   1.423 +{
   1.424 +  DBusGAsyncData *stuff;
   1.425 +  stuff = g_new (DBusGAsyncData, 1);
   1.426 +  stuff->cb = G_CALLBACK (callback);
   1.427 +  stuff->userdata = userdata;
   1.428 +  return dbus_g_proxy_begin_call (proxy, "RemoveMatch", org_freedesktop_DBus_remove_match_async_callback, stuff, g_free, G_TYPE_STRING, IN_arg0, G_TYPE_INVALID);
   1.429 +}
   1.430 +static
   1.431 +#ifdef G_HAVE_INLINE
   1.432 +inline
   1.433 +#endif
   1.434 +gboolean
   1.435 +org_freedesktop_DBus_get_name_owner (DBusGProxy *proxy, const char * IN_arg0, char ** OUT_arg1, GError **error)
   1.436 +
   1.437 +{
   1.438 +  return dbus_g_proxy_call (proxy, "GetNameOwner", error, G_TYPE_STRING, IN_arg0, G_TYPE_INVALID, G_TYPE_STRING, OUT_arg1, G_TYPE_INVALID);
   1.439 +}
   1.440 +
   1.441 +typedef void (*org_freedesktop_DBus_get_name_owner_reply) (DBusGProxy *proxy, char * OUT_arg1, GError *error, gpointer userdata);
   1.442 +
   1.443 +static void
   1.444 +org_freedesktop_DBus_get_name_owner_async_callback (DBusGProxy *proxy, DBusGProxyCall *call, void *user_data)
   1.445 +{
   1.446 +  DBusGAsyncData *data = user_data;
   1.447 +  GError *error = NULL;
   1.448 +  char * OUT_arg1;
   1.449 +  dbus_g_proxy_end_call (proxy, call, &error, G_TYPE_STRING, &OUT_arg1, G_TYPE_INVALID);
   1.450 +  (*(org_freedesktop_DBus_get_name_owner_reply)data->cb) (proxy, OUT_arg1, error, data->userdata);
   1.451 +  return;
   1.452 +}
   1.453 +
   1.454 +static
   1.455 +#ifdef G_HAVE_INLINE
   1.456 +inline
   1.457 +#endif
   1.458 +DBusGProxyCall*
   1.459 +org_freedesktop_DBus_get_name_owner_async (DBusGProxy *proxy, const char * IN_arg0, org_freedesktop_DBus_get_name_owner_reply callback, gpointer userdata)
   1.460 +
   1.461 +{
   1.462 +  DBusGAsyncData *stuff;
   1.463 +  stuff = g_new (DBusGAsyncData, 1);
   1.464 +  stuff->cb = G_CALLBACK (callback);
   1.465 +  stuff->userdata = userdata;
   1.466 +  return dbus_g_proxy_begin_call (proxy, "GetNameOwner", org_freedesktop_DBus_get_name_owner_async_callback, stuff, g_free, G_TYPE_STRING, IN_arg0, G_TYPE_INVALID);
   1.467 +}
   1.468 +static
   1.469 +#ifdef G_HAVE_INLINE
   1.470 +inline
   1.471 +#endif
   1.472 +gboolean
   1.473 +org_freedesktop_DBus_list_queued_owners (DBusGProxy *proxy, const char * IN_arg0, char *** OUT_arg1, GError **error)
   1.474 +
   1.475 +{
   1.476 +  return dbus_g_proxy_call (proxy, "ListQueuedOwners", error, G_TYPE_STRING, IN_arg0, G_TYPE_INVALID, G_TYPE_STRV, OUT_arg1, G_TYPE_INVALID);
   1.477 +}
   1.478 +
   1.479 +typedef void (*org_freedesktop_DBus_list_queued_owners_reply) (DBusGProxy *proxy, char * *OUT_arg1, GError *error, gpointer userdata);
   1.480 +
   1.481 +static void
   1.482 +org_freedesktop_DBus_list_queued_owners_async_callback (DBusGProxy *proxy, DBusGProxyCall *call, void *user_data)
   1.483 +{
   1.484 +  DBusGAsyncData *data = user_data;
   1.485 +  GError *error = NULL;
   1.486 +  char ** OUT_arg1;
   1.487 +  dbus_g_proxy_end_call (proxy, call, &error, G_TYPE_STRV, &OUT_arg1, G_TYPE_INVALID);
   1.488 +  (*(org_freedesktop_DBus_list_queued_owners_reply)data->cb) (proxy, OUT_arg1, error, data->userdata);
   1.489 +  return;
   1.490 +}
   1.491 +
   1.492 +static
   1.493 +#ifdef G_HAVE_INLINE
   1.494 +inline
   1.495 +#endif
   1.496 +DBusGProxyCall*
   1.497 +org_freedesktop_DBus_list_queued_owners_async (DBusGProxy *proxy, const char * IN_arg0, org_freedesktop_DBus_list_queued_owners_reply callback, gpointer userdata)
   1.498 +
   1.499 +{
   1.500 +  DBusGAsyncData *stuff;
   1.501 +  stuff = g_new (DBusGAsyncData, 1);
   1.502 +  stuff->cb = G_CALLBACK (callback);
   1.503 +  stuff->userdata = userdata;
   1.504 +  return dbus_g_proxy_begin_call (proxy, "ListQueuedOwners", org_freedesktop_DBus_list_queued_owners_async_callback, stuff, g_free, G_TYPE_STRING, IN_arg0, G_TYPE_INVALID);
   1.505 +}
   1.506 +static
   1.507 +#ifdef G_HAVE_INLINE
   1.508 +inline
   1.509 +#endif
   1.510 +gboolean
   1.511 +org_freedesktop_DBus_get_connection_unix_user (DBusGProxy *proxy, const char * IN_arg0, guint* OUT_arg1, GError **error)
   1.512 +
   1.513 +{
   1.514 +  return dbus_g_proxy_call (proxy, "GetConnectionUnixUser", error, G_TYPE_STRING, IN_arg0, G_TYPE_INVALID, G_TYPE_UINT, OUT_arg1, G_TYPE_INVALID);
   1.515 +}
   1.516 +
   1.517 +typedef void (*org_freedesktop_DBus_get_connection_unix_user_reply) (DBusGProxy *proxy, guint OUT_arg1, GError *error, gpointer userdata);
   1.518 +
   1.519 +static void
   1.520 +org_freedesktop_DBus_get_connection_unix_user_async_callback (DBusGProxy *proxy, DBusGProxyCall *call, void *user_data)
   1.521 +{
   1.522 +  DBusGAsyncData *data = user_data;
   1.523 +  GError *error = NULL;
   1.524 +  guint OUT_arg1;
   1.525 +  dbus_g_proxy_end_call (proxy, call, &error, G_TYPE_UINT, &OUT_arg1, G_TYPE_INVALID);
   1.526 +  (*(org_freedesktop_DBus_get_connection_unix_user_reply)data->cb) (proxy, OUT_arg1, error, data->userdata);
   1.527 +  return;
   1.528 +}
   1.529 +
   1.530 +static
   1.531 +#ifdef G_HAVE_INLINE
   1.532 +inline
   1.533 +#endif
   1.534 +DBusGProxyCall*
   1.535 +org_freedesktop_DBus_get_connection_unix_user_async (DBusGProxy *proxy, const char * IN_arg0, org_freedesktop_DBus_get_connection_unix_user_reply callback, gpointer userdata)
   1.536 +
   1.537 +{
   1.538 +  DBusGAsyncData *stuff;
   1.539 +  stuff = g_new (DBusGAsyncData, 1);
   1.540 +  stuff->cb = G_CALLBACK (callback);
   1.541 +  stuff->userdata = userdata;
   1.542 +  return dbus_g_proxy_begin_call (proxy, "GetConnectionUnixUser", org_freedesktop_DBus_get_connection_unix_user_async_callback, stuff, g_free, G_TYPE_STRING, IN_arg0, G_TYPE_INVALID);
   1.543 +}
   1.544 +static
   1.545 +#ifdef G_HAVE_INLINE
   1.546 +inline
   1.547 +#endif
   1.548 +gboolean
   1.549 +org_freedesktop_DBus_get_connection_unix_process_id (DBusGProxy *proxy, const char * IN_arg0, guint* OUT_arg1, GError **error)
   1.550 +
   1.551 +{
   1.552 +  return dbus_g_proxy_call (proxy, "GetConnectionUnixProcessID", error, G_TYPE_STRING, IN_arg0, G_TYPE_INVALID, G_TYPE_UINT, OUT_arg1, G_TYPE_INVALID);
   1.553 +}
   1.554 +
   1.555 +typedef void (*org_freedesktop_DBus_get_connection_unix_process_id_reply) (DBusGProxy *proxy, guint OUT_arg1, GError *error, gpointer userdata);
   1.556 +
   1.557 +static void
   1.558 +org_freedesktop_DBus_get_connection_unix_process_id_async_callback (DBusGProxy *proxy, DBusGProxyCall *call, void *user_data)
   1.559 +{
   1.560 +  DBusGAsyncData *data = user_data;
   1.561 +  GError *error = NULL;
   1.562 +  guint OUT_arg1;
   1.563 +  dbus_g_proxy_end_call (proxy, call, &error, G_TYPE_UINT, &OUT_arg1, G_TYPE_INVALID);
   1.564 +  (*(org_freedesktop_DBus_get_connection_unix_process_id_reply)data->cb) (proxy, OUT_arg1, error, data->userdata);
   1.565 +  return;
   1.566 +}
   1.567 +
   1.568 +static
   1.569 +#ifdef G_HAVE_INLINE
   1.570 +inline
   1.571 +#endif
   1.572 +DBusGProxyCall*
   1.573 +org_freedesktop_DBus_get_connection_unix_process_id_async (DBusGProxy *proxy, const char * IN_arg0, org_freedesktop_DBus_get_connection_unix_process_id_reply callback, gpointer userdata)
   1.574 +
   1.575 +{
   1.576 +  DBusGAsyncData *stuff;
   1.577 +  stuff = g_new (DBusGAsyncData, 1);
   1.578 +  stuff->cb = G_CALLBACK (callback);
   1.579 +  stuff->userdata = userdata;
   1.580 +  return dbus_g_proxy_begin_call (proxy, "GetConnectionUnixProcessID", org_freedesktop_DBus_get_connection_unix_process_id_async_callback, stuff, g_free, G_TYPE_STRING, IN_arg0, G_TYPE_INVALID);
   1.581 +}
   1.582 +static
   1.583 +#ifdef G_HAVE_INLINE
   1.584 +inline
   1.585 +#endif
   1.586 +gboolean
   1.587 +org_freedesktop_DBus_get_connection_se_linux_security_context (DBusGProxy *proxy, const char * IN_arg0, GArray** OUT_arg1, GError **error)
   1.588 +
   1.589 +{
   1.590 +  return dbus_g_proxy_call (proxy, "GetConnectionSELinuxSecurityContext", error, G_TYPE_STRING, IN_arg0, G_TYPE_INVALID, dbus_g_type_get_collection ("GArray", G_TYPE_UCHAR), OUT_arg1, G_TYPE_INVALID);
   1.591 +}
   1.592 +
   1.593 +typedef void (*org_freedesktop_DBus_get_connection_se_linux_security_context_reply) (DBusGProxy *proxy, GArray *OUT_arg1, GError *error, gpointer userdata);
   1.594 +
   1.595 +static void
   1.596 +org_freedesktop_DBus_get_connection_se_linux_security_context_async_callback (DBusGProxy *proxy, DBusGProxyCall *call, void *user_data)
   1.597 +{
   1.598 +  DBusGAsyncData *data = user_data;
   1.599 +  GError *error = NULL;
   1.600 +  GArray* OUT_arg1;
   1.601 +  dbus_g_proxy_end_call (proxy, call, &error, dbus_g_type_get_collection ("GArray", G_TYPE_UCHAR), &OUT_arg1, G_TYPE_INVALID);
   1.602 +  (*(org_freedesktop_DBus_get_connection_se_linux_security_context_reply)data->cb) (proxy, OUT_arg1, error, data->userdata);
   1.603 +  return;
   1.604 +}
   1.605 +
   1.606 +static
   1.607 +#ifdef G_HAVE_INLINE
   1.608 +inline
   1.609 +#endif
   1.610 +DBusGProxyCall*
   1.611 +org_freedesktop_DBus_get_connection_se_linux_security_context_async (DBusGProxy *proxy, const char * IN_arg0, org_freedesktop_DBus_get_connection_se_linux_security_context_reply callback, gpointer userdata)
   1.612 +
   1.613 +{
   1.614 +  DBusGAsyncData *stuff;
   1.615 +  stuff = g_new (DBusGAsyncData, 1);
   1.616 +  stuff->cb = G_CALLBACK (callback);
   1.617 +  stuff->userdata = userdata;
   1.618 +  return dbus_g_proxy_begin_call (proxy, "GetConnectionSELinuxSecurityContext", org_freedesktop_DBus_get_connection_se_linux_security_context_async_callback, stuff, g_free, G_TYPE_STRING, IN_arg0, G_TYPE_INVALID);
   1.619 +}
   1.620 +static
   1.621 +#ifdef G_HAVE_INLINE
   1.622 +inline
   1.623 +#endif
   1.624 +gboolean
   1.625 +org_freedesktop_DBus_reload_config (DBusGProxy *proxy, GError **error)
   1.626 +
   1.627 +{
   1.628 +  return dbus_g_proxy_call (proxy, "ReloadConfig", error, G_TYPE_INVALID, G_TYPE_INVALID);
   1.629 +}
   1.630 +
   1.631 +typedef void (*org_freedesktop_DBus_reload_config_reply) (DBusGProxy *proxy, GError *error, gpointer userdata);
   1.632 +
   1.633 +static void
   1.634 +org_freedesktop_DBus_reload_config_async_callback (DBusGProxy *proxy, DBusGProxyCall *call, void *user_data)
   1.635 +{
   1.636 +  DBusGAsyncData *data = user_data;
   1.637 +  GError *error = NULL;
   1.638 +  dbus_g_proxy_end_call (proxy, call, &error, G_TYPE_INVALID);
   1.639 +  (*(org_freedesktop_DBus_reload_config_reply)data->cb) (proxy, error, data->userdata);
   1.640 +  return;
   1.641 +}
   1.642 +
   1.643 +static
   1.644 +#ifdef G_HAVE_INLINE
   1.645 +inline
   1.646 +#endif
   1.647 +DBusGProxyCall*
   1.648 +org_freedesktop_DBus_reload_config_async (DBusGProxy *proxy, org_freedesktop_DBus_reload_config_reply callback, gpointer userdata)
   1.649 +
   1.650 +{
   1.651 +  DBusGAsyncData *stuff;
   1.652 +  stuff = g_new (DBusGAsyncData, 1);
   1.653 +  stuff->cb = G_CALLBACK (callback);
   1.654 +  stuff->userdata = userdata;
   1.655 +  return dbus_g_proxy_begin_call (proxy, "ReloadConfig", org_freedesktop_DBus_reload_config_async_callback, stuff, g_free, G_TYPE_INVALID);
   1.656 +}
   1.657 +#endif /* defined DBUS_GLIB_CLIENT_WRAPPERS_org_freedesktop_DBus */
   1.658 +
   1.659 +G_END_DECLS