Fix docs for D-Bus introspection data structures
authorDavid Zeuthen <davidz@redhat.com>
Fri, 3 Jun 2011 18:39:04 +0000 (14:39 -0400)
committerDavid Zeuthen <davidz@redhat.com>
Fri, 3 Jun 2011 18:39:04 +0000 (14:39 -0400)
Mark structs as boxed types and use /*< public >*/ so the struct
members are properly shown.

Signed-off-by: David Zeuthen <davidz@redhat.com>
docs/reference/gio/gio.types
gio/gdbusintrospection.h

index 3a798f3..335e0eb 100644 (file)
@@ -145,3 +145,10 @@ g_dbus_object_proxy_get_type
 g_dbus_object_manager_get_type
 g_dbus_object_manager_client_get_type
 g_dbus_object_manager_server_get_type
+g_dbus_annotation_info_get_type
+g_dbus_arg_info_get_type
+g_dbus_property_info_get_type
+g_dbus_signal_info_get_type
+g_dbus_method_info_get_type
+g_dbus_interface_info_get_type
+g_dbus_node_info_get_type
index 31187eb..884c733 100644 (file)
@@ -44,6 +44,7 @@ G_BEGIN_DECLS
  */
 struct _GDBusAnnotationInfo
 {
+  /*< public >*/
   volatile gint         ref_count;
   gchar                *key;
   gchar                *value;
@@ -63,6 +64,7 @@ struct _GDBusAnnotationInfo
  */
 struct _GDBusArgInfo
 {
+  /*< public >*/
   volatile gint         ref_count;
   gchar                *name;
   gchar                *signature;
@@ -83,6 +85,7 @@ struct _GDBusArgInfo
  */
 struct _GDBusMethodInfo
 {
+  /*< public >*/
   volatile gint         ref_count;
   gchar                *name;
   GDBusArgInfo        **in_args;
@@ -103,6 +106,7 @@ struct _GDBusMethodInfo
  */
 struct _GDBusSignalInfo
 {
+  /*< public >*/
   volatile gint         ref_count;
   gchar                *name;
   GDBusArgInfo        **args;
@@ -123,6 +127,7 @@ struct _GDBusSignalInfo
  */
 struct _GDBusPropertyInfo
 {
+  /*< public >*/
   volatile gint             ref_count;
   gchar                    *name;
   gchar                    *signature;
@@ -145,6 +150,7 @@ struct _GDBusPropertyInfo
  */
 struct _GDBusInterfaceInfo
 {
+  /*< public >*/
   volatile gint         ref_count;
   gchar                *name;
   GDBusMethodInfo     **methods;
@@ -167,6 +173,7 @@ struct _GDBusInterfaceInfo
  */
 struct _GDBusNodeInfo
 {
+  /*< public >*/
   volatile gint         ref_count;
   gchar                *path;
   GDBusInterfaceInfo  **interfaces;