| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  | /* GDBus - GLib D-Bus Library
 | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2010-05-09 13:14:55 -04:00
										 |  |  |  * Copyright (C) 2008-2010 Red Hat, Inc. | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2022-05-18 09:12:45 +01:00
										 |  |  |  * SPDX-License-Identifier: LGPL-2.1-or-later | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |  * 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 | 
					
						
							| 
									
										
										
										
											2017-05-27 18:21:30 +02:00
										 |  |  |  * version 2.1 of the License, or (at your option) any later version. | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * 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 | 
					
						
							| 
									
										
										
										
											2014-01-23 12:58:29 +01:00
										 |  |  |  * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Author: David Zeuthen <davidz@redhat.com> | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-27 23:43:14 -05:00
										 |  |  | #ifndef __G_DBUS_INTROSPECTION_H__
 | 
					
						
							|  |  |  | #define __G_DBUS_INTROSPECTION_H__
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-06 16:20:21 -04:00
										 |  |  | #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
 | 
					
						
							|  |  |  | #error "Only <gio/gio.h> can be included directly."
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  | #include <gio/giotypes.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | G_BEGIN_DECLS | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * GDBusAnnotationInfo: | 
					
						
							|  |  |  |  * @ref_count: The reference count or -1 if statically allocated. | 
					
						
							|  |  |  |  * @key: The name of the annotation, e.g. "org.freedesktop.DBus.Deprecated". | 
					
						
							|  |  |  |  * @value: The value of the annotation. | 
					
						
							| 
									
										
										
										
											2011-04-21 23:45:59 +02:00
										 |  |  |  * @annotations: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusAnnotationInfo structures or %NULL if there are no annotations. | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Information about an annotation. | 
					
						
							| 
									
										
										
										
											2010-05-06 16:02:08 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Since: 2.26 | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |  */ | 
					
						
							|  |  |  | struct _GDBusAnnotationInfo | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-06-03 14:39:04 -04:00
										 |  |  |   /*< public >*/ | 
					
						
							| 
									
										
										
										
											2020-11-11 18:28:23 +00:00
										 |  |  |   gint                  ref_count;  /* (atomic) */ | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |   gchar                *key; | 
					
						
							|  |  |  |   gchar                *value; | 
					
						
							|  |  |  |   GDBusAnnotationInfo **annotations; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * GDBusArgInfo: | 
					
						
							|  |  |  |  * @ref_count: The reference count or -1 if statically allocated. | 
					
						
							|  |  |  |  * @name: Name of the argument, e.g. @unix_user_id. | 
					
						
							|  |  |  |  * @signature: D-Bus signature of the argument (a single complete type). | 
					
						
							| 
									
										
										
										
											2011-04-21 23:45:59 +02:00
										 |  |  |  * @annotations: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusAnnotationInfo structures or %NULL if there are no annotations. | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Information about an argument for a method or a signal. | 
					
						
							| 
									
										
										
										
											2010-05-06 16:02:08 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Since: 2.26 | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |  */ | 
					
						
							|  |  |  | struct _GDBusArgInfo | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-06-03 14:39:04 -04:00
										 |  |  |   /*< public >*/ | 
					
						
							| 
									
										
										
										
											2020-11-11 18:28:23 +00:00
										 |  |  |   gint                  ref_count;  /* (atomic) */ | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |   gchar                *name; | 
					
						
							|  |  |  |   gchar                *signature; | 
					
						
							|  |  |  |   GDBusAnnotationInfo **annotations; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * GDBusMethodInfo: | 
					
						
							|  |  |  |  * @ref_count: The reference count or -1 if statically allocated. | 
					
						
							|  |  |  |  * @name: The name of the D-Bus method, e.g. @RequestName. | 
					
						
							| 
									
										
										
										
											2011-04-21 23:45:59 +02:00
										 |  |  |  * @in_args: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusArgInfo structures or %NULL if there are no in arguments. | 
					
						
							|  |  |  |  * @out_args: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusArgInfo structures or %NULL if there are no out arguments. | 
					
						
							|  |  |  |  * @annotations: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusAnnotationInfo structures or %NULL if there are no annotations. | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2024-04-01 10:54:59 +00:00
										 |  |  |  * Information about a method on a D-Bus interface. | 
					
						
							| 
									
										
										
										
											2010-05-06 16:02:08 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Since: 2.26 | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |  */ | 
					
						
							|  |  |  | struct _GDBusMethodInfo | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-06-03 14:39:04 -04:00
										 |  |  |   /*< public >*/ | 
					
						
							| 
									
										
										
										
											2020-11-11 18:28:23 +00:00
										 |  |  |   gint                  ref_count;  /* (atomic) */ | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |   gchar                *name; | 
					
						
							|  |  |  |   GDBusArgInfo        **in_args; | 
					
						
							|  |  |  |   GDBusArgInfo        **out_args; | 
					
						
							|  |  |  |   GDBusAnnotationInfo **annotations; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * GDBusSignalInfo: | 
					
						
							|  |  |  |  * @ref_count: The reference count or -1 if statically allocated. | 
					
						
							|  |  |  |  * @name: The name of the D-Bus signal, e.g. "NameOwnerChanged". | 
					
						
							| 
									
										
										
										
											2011-04-21 23:45:59 +02:00
										 |  |  |  * @args: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusArgInfo structures or %NULL if there are no arguments. | 
					
						
							|  |  |  |  * @annotations: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusAnnotationInfo structures or %NULL if there are no annotations. | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Information about a signal on a D-Bus interface. | 
					
						
							| 
									
										
										
										
											2010-05-06 16:02:08 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Since: 2.26 | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |  */ | 
					
						
							|  |  |  | struct _GDBusSignalInfo | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-06-03 14:39:04 -04:00
										 |  |  |   /*< public >*/ | 
					
						
							| 
									
										
										
										
											2020-11-11 18:28:23 +00:00
										 |  |  |   gint                  ref_count;  /* (atomic) */ | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |   gchar                *name; | 
					
						
							|  |  |  |   GDBusArgInfo        **args; | 
					
						
							|  |  |  |   GDBusAnnotationInfo **annotations; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * GDBusPropertyInfo: | 
					
						
							|  |  |  |  * @ref_count: The reference count or -1 if statically allocated. | 
					
						
							|  |  |  |  * @name: The name of the D-Bus property, e.g. "SupportedFilesystems". | 
					
						
							|  |  |  |  * @signature: The D-Bus signature of the property (a single complete type). | 
					
						
							|  |  |  |  * @flags: Access control flags for the property. | 
					
						
							| 
									
										
										
										
											2011-04-21 23:45:59 +02:00
										 |  |  |  * @annotations: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusAnnotationInfo structures or %NULL if there are no annotations. | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Information about a D-Bus property on a D-Bus interface. | 
					
						
							| 
									
										
										
										
											2010-05-06 16:02:08 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Since: 2.26 | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |  */ | 
					
						
							|  |  |  | struct _GDBusPropertyInfo | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-06-03 14:39:04 -04:00
										 |  |  |   /*< public >*/ | 
					
						
							| 
									
										
										
										
											2020-11-11 18:28:23 +00:00
										 |  |  |   gint                      ref_count;  /* (atomic) */ | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |   gchar                    *name; | 
					
						
							|  |  |  |   gchar                    *signature; | 
					
						
							|  |  |  |   GDBusPropertyInfoFlags    flags; | 
					
						
							|  |  |  |   GDBusAnnotationInfo     **annotations; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * GDBusInterfaceInfo: | 
					
						
							|  |  |  |  * @ref_count: The reference count or -1 if statically allocated. | 
					
						
							|  |  |  |  * @name: The name of the D-Bus interface, e.g. "org.freedesktop.DBus.Properties". | 
					
						
							| 
									
										
										
										
											2011-04-21 23:45:59 +02:00
										 |  |  |  * @methods: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusMethodInfo structures or %NULL if there are no methods. | 
					
						
							|  |  |  |  * @signals: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusSignalInfo structures or %NULL if there are no signals. | 
					
						
							|  |  |  |  * @properties: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusPropertyInfo structures or %NULL if there are no properties. | 
					
						
							|  |  |  |  * @annotations: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusAnnotationInfo structures or %NULL if there are no annotations. | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Information about a D-Bus interface. | 
					
						
							| 
									
										
										
										
											2010-05-06 16:02:08 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Since: 2.26 | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |  */ | 
					
						
							|  |  |  | struct _GDBusInterfaceInfo | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-06-03 14:39:04 -04:00
										 |  |  |   /*< public >*/ | 
					
						
							| 
									
										
										
										
											2020-11-11 18:28:23 +00:00
										 |  |  |   gint                  ref_count;  /* (atomic) */ | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |   gchar                *name; | 
					
						
							|  |  |  |   GDBusMethodInfo     **methods; | 
					
						
							|  |  |  |   GDBusSignalInfo     **signals; | 
					
						
							|  |  |  |   GDBusPropertyInfo   **properties; | 
					
						
							|  |  |  |   GDBusAnnotationInfo **annotations; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * GDBusNodeInfo: | 
					
						
							|  |  |  |  * @ref_count: The reference count or -1 if statically allocated. | 
					
						
							|  |  |  |  * @path: The path of the node or %NULL if omitted. Note that this may be a relative path. See the D-Bus specification for more details. | 
					
						
							| 
									
										
										
										
											2011-04-21 23:45:59 +02:00
										 |  |  |  * @interfaces: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusInterfaceInfo structures or %NULL if there are no interfaces. | 
					
						
							|  |  |  |  * @nodes: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusNodeInfo structures or %NULL if there are no nodes. | 
					
						
							|  |  |  |  * @annotations: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusAnnotationInfo structures or %NULL if there are no annotations. | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Information about nodes in a remote object hierarchy. | 
					
						
							| 
									
										
										
										
											2010-05-06 16:02:08 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Since: 2.26 | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |  */ | 
					
						
							|  |  |  | struct _GDBusNodeInfo | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-06-03 14:39:04 -04:00
										 |  |  |   /*< public >*/ | 
					
						
							| 
									
										
										
										
											2020-11-11 18:28:23 +00:00
										 |  |  |   gint                  ref_count;  /* (atomic) */ | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |   gchar                *path; | 
					
						
							|  |  |  |   GDBusInterfaceInfo  **interfaces; | 
					
						
							|  |  |  |   GDBusNodeInfo       **nodes; | 
					
						
							|  |  |  |   GDBusAnnotationInfo **annotations; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-05 13:39:21 -04:00
										 |  |  | GIO_AVAILABLE_IN_ALL | 
					
						
							| 
									
										
										
										
											2010-07-19 15:45:27 -04:00
										 |  |  | const gchar        *g_dbus_annotation_info_lookup          (GDBusAnnotationInfo **annotations, | 
					
						
							|  |  |  |                                                             const gchar          *name); | 
					
						
							| 
									
										
										
										
											2022-10-05 13:39:21 -04:00
										 |  |  | GIO_AVAILABLE_IN_ALL | 
					
						
							| 
									
										
										
										
											2010-07-19 15:45:27 -04:00
										 |  |  | GDBusMethodInfo    *g_dbus_interface_info_lookup_method    (GDBusInterfaceInfo   *info, | 
					
						
							|  |  |  |                                                             const gchar          *name); | 
					
						
							| 
									
										
										
										
											2022-10-05 13:39:21 -04:00
										 |  |  | GIO_AVAILABLE_IN_ALL | 
					
						
							| 
									
										
										
										
											2010-07-19 15:45:27 -04:00
										 |  |  | GDBusSignalInfo    *g_dbus_interface_info_lookup_signal    (GDBusInterfaceInfo   *info, | 
					
						
							|  |  |  |                                                             const gchar          *name); | 
					
						
							| 
									
										
										
										
											2022-10-05 13:39:21 -04:00
										 |  |  | GIO_AVAILABLE_IN_ALL | 
					
						
							| 
									
										
										
										
											2010-07-19 15:45:27 -04:00
										 |  |  | GDBusPropertyInfo  *g_dbus_interface_info_lookup_property  (GDBusInterfaceInfo   *info, | 
					
						
							|  |  |  |                                                             const gchar          *name); | 
					
						
							| 
									
										
										
										
											2022-10-05 13:39:21 -04:00
										 |  |  | GIO_AVAILABLE_IN_ALL | 
					
						
							| 
									
										
										
										
											2011-03-28 11:31:05 -04:00
										 |  |  | void                g_dbus_interface_info_cache_build      (GDBusInterfaceInfo   *info); | 
					
						
							| 
									
										
										
										
											2022-10-05 13:39:21 -04:00
										 |  |  | GIO_AVAILABLE_IN_ALL | 
					
						
							| 
									
										
										
										
											2011-03-28 11:31:05 -04:00
										 |  |  | void                g_dbus_interface_info_cache_release    (GDBusInterfaceInfo   *info); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-05 13:39:21 -04:00
										 |  |  | GIO_AVAILABLE_IN_ALL | 
					
						
							| 
									
										
										
										
											2010-07-19 15:45:27 -04:00
										 |  |  | void                g_dbus_interface_info_generate_xml     (GDBusInterfaceInfo   *info, | 
					
						
							|  |  |  |                                                             guint                 indent, | 
					
						
							|  |  |  |                                                             GString              *string_builder); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-05 13:39:21 -04:00
										 |  |  | GIO_AVAILABLE_IN_ALL | 
					
						
							| 
									
										
										
										
											2010-07-19 15:45:27 -04:00
										 |  |  | GDBusNodeInfo      *g_dbus_node_info_new_for_xml           (const gchar          *xml_data, | 
					
						
							|  |  |  |                                                             GError              **error); | 
					
						
							| 
									
										
										
										
											2022-10-05 13:39:21 -04:00
										 |  |  | GIO_AVAILABLE_IN_ALL | 
					
						
							| 
									
										
										
										
											2010-07-19 15:45:27 -04:00
										 |  |  | GDBusInterfaceInfo *g_dbus_node_info_lookup_interface      (GDBusNodeInfo        *info, | 
					
						
							|  |  |  |                                                             const gchar          *name); | 
					
						
							| 
									
										
										
										
											2022-10-05 13:39:21 -04:00
										 |  |  | GIO_AVAILABLE_IN_ALL | 
					
						
							| 
									
										
										
										
											2010-07-19 15:45:27 -04:00
										 |  |  | void                g_dbus_node_info_generate_xml          (GDBusNodeInfo        *info, | 
					
						
							|  |  |  |                                                             guint                 indent, | 
					
						
							|  |  |  |                                                             GString              *string_builder); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-05 13:39:21 -04:00
										 |  |  | GIO_AVAILABLE_IN_ALL | 
					
						
							| 
									
										
										
										
											2010-07-19 15:45:27 -04:00
										 |  |  | GDBusNodeInfo       *g_dbus_node_info_ref                  (GDBusNodeInfo        *info); | 
					
						
							| 
									
										
										
										
											2022-10-05 13:39:21 -04:00
										 |  |  | GIO_AVAILABLE_IN_ALL | 
					
						
							| 
									
										
										
										
											2010-07-19 15:45:27 -04:00
										 |  |  | GDBusInterfaceInfo  *g_dbus_interface_info_ref             (GDBusInterfaceInfo   *info); | 
					
						
							| 
									
										
										
										
											2022-10-05 13:39:21 -04:00
										 |  |  | GIO_AVAILABLE_IN_ALL | 
					
						
							| 
									
										
										
										
											2010-07-19 15:45:27 -04:00
										 |  |  | GDBusMethodInfo     *g_dbus_method_info_ref                (GDBusMethodInfo      *info); | 
					
						
							| 
									
										
										
										
											2022-10-05 13:39:21 -04:00
										 |  |  | GIO_AVAILABLE_IN_ALL | 
					
						
							| 
									
										
										
										
											2010-07-19 15:45:27 -04:00
										 |  |  | GDBusSignalInfo     *g_dbus_signal_info_ref                (GDBusSignalInfo      *info); | 
					
						
							| 
									
										
										
										
											2022-10-05 13:39:21 -04:00
										 |  |  | GIO_AVAILABLE_IN_ALL | 
					
						
							| 
									
										
										
										
											2010-07-19 15:45:27 -04:00
										 |  |  | GDBusPropertyInfo   *g_dbus_property_info_ref              (GDBusPropertyInfo    *info); | 
					
						
							| 
									
										
										
										
											2022-10-05 13:39:21 -04:00
										 |  |  | GIO_AVAILABLE_IN_ALL | 
					
						
							| 
									
										
										
										
											2010-07-19 15:45:27 -04:00
										 |  |  | GDBusArgInfo        *g_dbus_arg_info_ref                   (GDBusArgInfo         *info); | 
					
						
							| 
									
										
										
										
											2022-10-05 13:39:21 -04:00
										 |  |  | GIO_AVAILABLE_IN_ALL | 
					
						
							| 
									
										
										
										
											2010-07-19 15:45:27 -04:00
										 |  |  | GDBusAnnotationInfo *g_dbus_annotation_info_ref            (GDBusAnnotationInfo  *info); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-05 13:39:21 -04:00
										 |  |  | GIO_AVAILABLE_IN_ALL | 
					
						
							| 
									
										
										
										
											2010-07-19 15:45:27 -04:00
										 |  |  | void                 g_dbus_node_info_unref                (GDBusNodeInfo        *info); | 
					
						
							| 
									
										
										
										
											2022-10-05 13:39:21 -04:00
										 |  |  | GIO_AVAILABLE_IN_ALL | 
					
						
							| 
									
										
										
										
											2010-07-19 15:45:27 -04:00
										 |  |  | void                 g_dbus_interface_info_unref           (GDBusInterfaceInfo   *info); | 
					
						
							| 
									
										
										
										
											2022-10-05 13:39:21 -04:00
										 |  |  | GIO_AVAILABLE_IN_ALL | 
					
						
							| 
									
										
										
										
											2010-07-19 15:45:27 -04:00
										 |  |  | void                 g_dbus_method_info_unref              (GDBusMethodInfo      *info); | 
					
						
							| 
									
										
										
										
											2022-10-05 13:39:21 -04:00
										 |  |  | GIO_AVAILABLE_IN_ALL | 
					
						
							| 
									
										
										
										
											2010-07-19 15:45:27 -04:00
										 |  |  | void                 g_dbus_signal_info_unref              (GDBusSignalInfo      *info); | 
					
						
							| 
									
										
										
										
											2022-10-05 13:39:21 -04:00
										 |  |  | GIO_AVAILABLE_IN_ALL | 
					
						
							| 
									
										
										
										
											2010-07-19 15:45:27 -04:00
										 |  |  | void                 g_dbus_property_info_unref            (GDBusPropertyInfo    *info); | 
					
						
							| 
									
										
										
										
											2022-10-05 13:39:21 -04:00
										 |  |  | GIO_AVAILABLE_IN_ALL | 
					
						
							| 
									
										
										
										
											2010-07-19 15:45:27 -04:00
										 |  |  | void                 g_dbus_arg_info_unref                 (GDBusArgInfo         *info); | 
					
						
							| 
									
										
										
										
											2022-10-05 13:39:21 -04:00
										 |  |  | GIO_AVAILABLE_IN_ALL | 
					
						
							| 
									
										
										
										
											2010-07-19 15:45:27 -04:00
										 |  |  | void                 g_dbus_annotation_info_unref          (GDBusAnnotationInfo  *info); | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * G_TYPE_DBUS_NODE_INFO: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The #GType for a boxed type holding a #GDBusNodeInfo. | 
					
						
							| 
									
										
										
										
											2010-05-06 16:02:08 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Since: 2.26 | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |  */ | 
					
						
							|  |  |  | #define G_TYPE_DBUS_NODE_INFO       (g_dbus_node_info_get_type ())
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * G_TYPE_DBUS_INTERFACE_INFO: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The #GType for a boxed type holding a #GDBusInterfaceInfo. | 
					
						
							| 
									
										
										
										
											2010-05-06 16:02:08 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Since: 2.26 | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |  */ | 
					
						
							|  |  |  | #define G_TYPE_DBUS_INTERFACE_INFO  (g_dbus_interface_info_get_type ())
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * G_TYPE_DBUS_METHOD_INFO: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The #GType for a boxed type holding a #GDBusMethodInfo. | 
					
						
							| 
									
										
										
										
											2010-05-06 16:02:08 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Since: 2.26 | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |  */ | 
					
						
							|  |  |  | #define G_TYPE_DBUS_METHOD_INFO     (g_dbus_method_info_get_type ())
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * G_TYPE_DBUS_SIGNAL_INFO: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The #GType for a boxed type holding a #GDBusSignalInfo. | 
					
						
							| 
									
										
										
										
											2010-05-06 16:02:08 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Since: 2.26 | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |  */ | 
					
						
							|  |  |  | #define G_TYPE_DBUS_SIGNAL_INFO     (g_dbus_signal_info_get_type ())
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * G_TYPE_DBUS_PROPERTY_INFO: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The #GType for a boxed type holding a #GDBusPropertyInfo. | 
					
						
							| 
									
										
										
										
											2010-05-06 16:02:08 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Since: 2.26 | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |  */ | 
					
						
							|  |  |  | #define G_TYPE_DBUS_PROPERTY_INFO   (g_dbus_property_info_get_type ())
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * G_TYPE_DBUS_ARG_INFO: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The #GType for a boxed type holding a #GDBusArgInfo. | 
					
						
							| 
									
										
										
										
											2010-05-06 16:02:08 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Since: 2.26 | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |  */ | 
					
						
							|  |  |  | #define G_TYPE_DBUS_ARG_INFO        (g_dbus_arg_info_get_type ())
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * G_TYPE_DBUS_ANNOTATION_INFO: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The #GType for a boxed type holding a #GDBusAnnotationInfo. | 
					
						
							| 
									
										
										
										
											2010-05-06 16:02:08 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Since: 2.26 | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |  */ | 
					
						
							|  |  |  | #define G_TYPE_DBUS_ANNOTATION_INFO (g_dbus_annotation_info_get_type ())
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-05 13:39:21 -04:00
										 |  |  | GIO_AVAILABLE_IN_ALL | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  | GType g_dbus_node_info_get_type       (void) G_GNUC_CONST; | 
					
						
							| 
									
										
										
										
											2022-10-05 13:39:21 -04:00
										 |  |  | GIO_AVAILABLE_IN_ALL | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  | GType g_dbus_interface_info_get_type  (void) G_GNUC_CONST; | 
					
						
							| 
									
										
										
										
											2022-10-05 13:39:21 -04:00
										 |  |  | GIO_AVAILABLE_IN_ALL | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  | GType g_dbus_method_info_get_type     (void) G_GNUC_CONST; | 
					
						
							| 
									
										
										
										
											2022-10-05 13:39:21 -04:00
										 |  |  | GIO_AVAILABLE_IN_ALL | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  | GType g_dbus_signal_info_get_type     (void) G_GNUC_CONST; | 
					
						
							| 
									
										
										
										
											2022-10-05 13:39:21 -04:00
										 |  |  | GIO_AVAILABLE_IN_ALL | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  | GType g_dbus_property_info_get_type   (void) G_GNUC_CONST; | 
					
						
							| 
									
										
										
										
											2022-10-05 13:39:21 -04:00
										 |  |  | GIO_AVAILABLE_IN_ALL | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  | GType g_dbus_arg_info_get_type        (void) G_GNUC_CONST; | 
					
						
							| 
									
										
										
										
											2022-10-05 13:39:21 -04:00
										 |  |  | GIO_AVAILABLE_IN_ALL | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  | GType g_dbus_annotation_info_get_type (void) G_GNUC_CONST; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | G_END_DECLS | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* __G_DBUS_INTROSPECTION_H__ */
 |