1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/ofdbus/dbus-glib/dbus/dbus-gutils.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,57 @@
1.4 +/* -*- mode: C; c-file-style: "gnu" -*- */
1.5 +/* dbus-gutils.h Utils shared between convenience lib and installed lib
1.6 + *
1.7 + * Copyright (C) 2003 Red Hat, Inc.
1.8 + *
1.9 + * Licensed under the Academic Free License version 2.1
1.10 + *
1.11 + * This program is free software; you can redistribute it and/or modify
1.12 + * it under the terms of the GNU General Public License as published by
1.13 + * the Free Software Foundation; either version 2 of the License, or
1.14 + * (at your option) any later version.
1.15 + *
1.16 + * This program is distributed in the hope that it will be useful,
1.17 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
1.18 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1.19 + * GNU General Public License for more details.
1.20 + *
1.21 + * You should have received a copy of the GNU General Public License
1.22 + * along with this program; if not, write to the Free Software
1.23 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
1.24 + *
1.25 + */
1.26 +
1.27 +#ifndef DBUS_GLIB_UTILS_H
1.28 +#define DBUS_GLIB_UTILS_H
1.29 +
1.30 +#ifndef DOXYGEN_SHOULD_SKIP_THIS
1.31 +
1.32 +#include <dbus/dbus.h>
1.33 +#include <glib-object.h>
1.34 +
1.35 +G_BEGIN_DECLS
1.36 +
1.37 +char **_dbus_gutils_split_path (const char *path);
1.38 +
1.39 +char *_dbus_gutils_wincaps_to_uscore (const char *uscore);
1.40 +
1.41 +/* These munge the pointer to enforce that a plain cast won't work,
1.42 + * accessor functions must be used; i.e. to ensure the ABI
1.43 + * reflects our encapsulation.
1.44 + */
1.45 +#define _DBUS_POINTER_SHIFT(p) ((void*) (((char*)p) + sizeof (void*)))
1.46 +#define _DBUS_POINTER_UNSHIFT(p) ((void*) (((char*)p) - sizeof (void*)))
1.47 +
1.48 +#define DBUS_CONNECTION_FROM_G_CONNECTION(x) ((DBusConnection*) _DBUS_POINTER_UNSHIFT(x))
1.49 +#define DBUS_MESSAGE_FROM_G_MESSAGE(x) ((DBusMessage*) _DBUS_POINTER_UNSHIFT(x))
1.50 +#define DBUS_PENDING_CALL_FROM_G_PENDING_CALL(x) ((DBusPendingCall*) _DBUS_POINTER_UNSHIFT(x))
1.51 +
1.52 +#define DBUS_G_CONNECTION_FROM_CONNECTION(x) ((DBusGConnection*) _DBUS_POINTER_SHIFT(x))
1.53 +#define DBUS_G_MESSAGE_FROM_MESSAGE(x) ((DBusGMessage*) _DBUS_POINTER_SHIFT(x))
1.54 +#define DBUS_G_PENDING_CALL_FROM_PENDING_CALL(x) ((DBusGPendingCall*) _DBUS_POINTER_SHIFT(x))
1.55 +
1.56 +G_END_DECLS
1.57 +
1.58 +#endif /* DBUS_GLIB_UTILS_H */
1.59 +
1.60 +#endif /* DOXYGEN_SHOULD_SKIP_THIS */