summaryrefslogtreecommitdiff
path: root/gio/gdbusutils.h
diff options
context:
space:
mode:
authorDavid Zeuthen <davidz@redhat.com>2010-05-06 14:13:59 -0400
committerDavid Zeuthen <davidz@redhat.com>2010-05-06 14:21:32 -0400
commitd0a14469d09d5fe23de219ba293fd4a266b02ced (patch)
tree0a2e2f1d566ff0f0ceb1d3ebe9f9cf6cd5263ab9 /gio/gdbusutils.h
parent81e98c399e11d7621c91ff2911ef4f92c7a382e5 (diff)
downloadglib-d0a14469d09d5fe23de219ba293fd4a266b02ced.tar.gz
Initial GDBus code-drop from GDBus-standalone repo
Things compile and the test-suite passes. Still need to hook up gio.symbols and docs. There are still a bunch of TODOs left in the sources that needs to be addressed. Signed-off-by: David Zeuthen <davidz@redhat.com>
Diffstat (limited to 'gio/gdbusutils.h')
-rw-r--r--gio/gdbusutils.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/gio/gdbusutils.h b/gio/gdbusutils.h
new file mode 100644
index 000000000..e3e606bb0
--- /dev/null
+++ b/gio/gdbusutils.h
@@ -0,0 +1,42 @@
+/* GDBus - GLib D-Bus Library
+ *
+ * Copyright (C) 2008-2009 Red Hat, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser 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.
+ *
+ * Author: David Zeuthen <davidz@redhat.com>
+ */
+
+#ifndef __G_DBUS_UTILS_H__
+#define __G_DBUS_UTILS_H__
+
+#include <gio/giotypes.h>
+
+G_BEGIN_DECLS
+
+gboolean g_dbus_is_guid (const gchar *string);
+gchar *g_dbus_generate_guid (void);
+
+gboolean g_dbus_is_name (const gchar *string);
+gboolean g_dbus_is_unique_name (const gchar *string);
+gboolean g_dbus_is_member_name (const gchar *string);
+gboolean g_dbus_is_interface_name (const gchar *string);
+
+gboolean g_dbus_is_activated (void);
+
+G_END_DECLS
+
+#endif /* __G_DBUS_UTILS_H__ */