summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/SDL2/src/core/linux/SDL_dbus.h
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/SDL2/src/core/linux/SDL_dbus.h')
-rw-r--r--3rdparty/SDL2/src/core/linux/SDL_dbus.h82
1 files changed, 82 insertions, 0 deletions
diff --git a/3rdparty/SDL2/src/core/linux/SDL_dbus.h b/3rdparty/SDL2/src/core/linux/SDL_dbus.h
new file mode 100644
index 00000000000..c064381a0c0
--- /dev/null
+++ b/3rdparty/SDL2/src/core/linux/SDL_dbus.h
@@ -0,0 +1,82 @@
+/*
+ Simple DirectMedia Layer
+ Copyright (C) 1997-2016 Sam Lantinga <slouken@libsdl.org>
+
+ This software is provided 'as-is', without any express or implied
+ warranty. In no event will the authors be held liable for any damages
+ arising from the use of this software.
+
+ Permission is granted to anyone to use this software for any purpose,
+ including commercial applications, and to alter it and redistribute it
+ freely, subject to the following restrictions:
+
+ 1. The origin of this software must not be misrepresented; you must not
+ claim that you wrote the original software. If you use this software
+ in a product, an acknowledgment in the product documentation would be
+ appreciated but is not required.
+ 2. Altered source versions must be plainly marked as such, and must not be
+ misrepresented as being the original software.
+ 3. This notice may not be removed or altered from any source distribution.
+*/
+
+#include "../../SDL_internal.h"
+
+#ifndef _SDL_dbus_h
+#define _SDL_dbus_h
+
+#ifdef HAVE_DBUS_DBUS_H
+#define SDL_USE_LIBDBUS 1
+#include "SDL_stdinc.h"
+#include <dbus/dbus.h>
+
+
+typedef struct SDL_DBusContext {
+ DBusConnection *session_conn;
+
+ DBusConnection *(*bus_get_private)(DBusBusType, DBusError *);
+ dbus_bool_t (*bus_register)(DBusConnection *, DBusError *);
+ void (*bus_add_match)(DBusConnection *, const char *, DBusError *);
+ DBusConnection * (*connection_open_private)(const char *, DBusError *);
+ void (*connection_set_exit_on_disconnect)(DBusConnection *, dbus_bool_t);
+ dbus_bool_t (*connection_get_is_connected)(DBusConnection *);
+ dbus_bool_t (*connection_add_filter)(DBusConnection *, DBusHandleMessageFunction,
+ void *, DBusFreeFunction);
+ dbus_bool_t (*connection_try_register_object_path)(DBusConnection *, const char *,
+ const DBusObjectPathVTable *, void *, DBusError *);
+ dbus_bool_t (*connection_send)(DBusConnection *, DBusMessage *, dbus_uint32_t *);
+ DBusMessage *(*connection_send_with_reply_and_block)(DBusConnection *, DBusMessage *, int, DBusError *);
+ void (*connection_close)(DBusConnection *);
+ void (*connection_unref)(DBusConnection *);
+ void (*connection_flush)(DBusConnection *);
+ dbus_bool_t (*connection_read_write)(DBusConnection *, int);
+ DBusDispatchStatus (*connection_dispatch)(DBusConnection *);
+ dbus_bool_t (*message_is_signal)(DBusMessage *, const char *, const char *);
+ DBusMessage *(*message_new_method_call)(const char *, const char *, const char *, const char *);
+ dbus_bool_t (*message_append_args)(DBusMessage *, int, ...);
+ dbus_bool_t (*message_get_args)(DBusMessage *, DBusError *, int, ...);
+ dbus_bool_t (*message_iter_init)(DBusMessage *, DBusMessageIter *);
+ dbus_bool_t (*message_iter_next)(DBusMessageIter *);
+ void (*message_iter_get_basic)(DBusMessageIter *, void *);
+ int (*message_iter_get_arg_type)(DBusMessageIter *);
+ void (*message_iter_recurse)(DBusMessageIter *, DBusMessageIter *);
+ void (*message_unref)(DBusMessage *);
+ void (*error_init)(DBusError *);
+ dbus_bool_t (*error_is_set)(const DBusError *);
+ void (*error_free)(DBusError *);
+ char *(*get_local_machine_id)(void);
+ void (*free)(void *);
+ void (*shutdown)(void);
+
+} SDL_DBusContext;
+
+extern void SDL_DBus_Init(void);
+extern void SDL_DBus_Quit(void);
+extern SDL_DBusContext * SDL_DBus_GetContext(void);
+extern void SDL_DBus_ScreensaverTickle(void);
+extern SDL_bool SDL_DBus_ScreensaverInhibit(SDL_bool inhibit);
+
+#endif /* HAVE_DBUS_DBUS_H */
+
+#endif /* _SDL_dbus_h */
+
+/* vi: set ts=4 sw=4 expandtab: */