sl@0: /* -*- mode: C; c-file-style: "gnu" -*- */ sl@0: /* dbus-glib-lowlevel.h GLib integration details that require dbus/dbus.h sl@0: * sl@0: * Copyright (C) 2002, 2003 CodeFactory AB sl@0: * Copyright (C) 2003, 2004 Red Hat, Inc. sl@0: * Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved. sl@0: * Licensed under the Academic Free License version 2.1 sl@0: * sl@0: * This program is free software; you can redistribute it and/or modify sl@0: * it under the terms of the GNU General Public License as published by sl@0: * the Free Software Foundation; either version 2 of the License, or sl@0: * (at your option) any later version. sl@0: * sl@0: * This program is distributed in the hope that it will be useful, sl@0: * but WITHOUT ANY WARRANTY; without even the implied warranty of sl@0: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the sl@0: * GNU General Public License for more details. sl@0: * sl@0: * You should have received a copy of the GNU General Public License sl@0: * along with this program; if not, write to the Free Software sl@0: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA sl@0: * sl@0: */ sl@0: #ifndef DBUS_GLIB_LOWLEVEL_H sl@0: #define DBUS_GLIB_LOWLEVEL_H sl@0: sl@0: #include sl@0: #include sl@0: sl@0: G_BEGIN_DECLS sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: void dbus_set_g_error (GError **gerror, sl@0: DBusError *derror); sl@0: sl@0: #define DBUS_TYPE_CONNECTION (dbus_connection_get_g_type ()) sl@0: #define DBUS_TYPE_MESSAGE (dbus_message_get_g_type ()) sl@0: #define DBUS_TYPE_PENDING_CALL (dbus_pending_call_get_g_type ()) sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: GType dbus_connection_get_g_type (void) G_GNUC_CONST; sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: GType dbus_message_get_g_type (void) G_GNUC_CONST; sl@0: GType dbus_pending_call_get_g_type (void) G_GNUC_CONST; sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: void dbus_connection_setup_with_g_main (DBusConnection *connection, sl@0: GMainContext *context); sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: void dbus_server_setup_with_g_main (DBusServer *server, sl@0: GMainContext *context); sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: void dbus_g_proxy_send (DBusGProxy *proxy, sl@0: DBusMessage *message, sl@0: dbus_uint32_t *client_serial); sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: DBusConnection* dbus_g_connection_get_connection (DBusGConnection *gconnection); sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: DBusGConnection* dbus_connection_get_g_connection (DBusConnection *connection); sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: DBusMessage* dbus_g_message_get_message (DBusGMessage *gmessage); sl@0: sl@0: /* dbus_g_pending_call_get_pending_call() deliberately skipped for now; sl@0: * not sure it makes sense to use any of the DBusPendingCall functions sl@0: * on the wrapped pending call (once we have the right exported sl@0: * g-functions anyhow) sl@0: */ sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: gchar* dbus_g_method_get_sender (DBusGMethodInvocation *context); sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: DBusMessage* dbus_g_method_get_reply (DBusGMethodInvocation *context); sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: void dbus_g_method_send_reply (DBusGMethodInvocation *context, sl@0: DBusMessage *reply); sl@0: sl@0: G_END_DECLS sl@0: sl@0: #endif /* DBUS_GLIB_LOWLEVEL_H */ sl@0: sl@0: sl@0: