Doc: Mark a few things as private
authorXavier Claessens <xavier.claessens@collabora.com>
Thu, 5 Feb 2015 18:10:14 +0000 (13:10 -0500)
committerRyan Lortie <desrt@desrt.ca>
Thu, 12 Mar 2015 20:09:14 +0000 (16:09 -0400)
docs/reference/gio/gio-sections.txt
gio/gresource.c
gio/gresource.h
gio/gsettingsbackend.h

index eedeb22..d598338 100644 (file)
@@ -4257,6 +4257,11 @@ g_task_get_type
 <FILE>gnetworking</FILE>
 <TITLE>gnetworking.h</TITLE>
 g_networking_init
+<SUBSECTION Private>
+CMSG_LEN
+CMSG_SPACE
+GLIB_ALIGN_TO_SIZEOF
+T_SRV
 </SECTION>
 
 <SECTION>
index 0b05646..a611929 100644 (file)
@@ -186,7 +186,7 @@ g_resource_unref (GResource *resource)
     }
 }
 
-/**
+/*< internal >
  * g_resource_new_from_table:
  * @table: (transfer full): a GvdbTable
  *
index 9c79db9..0fa4475 100644 (file)
@@ -51,6 +51,7 @@ GQuark g_resource_error_quark (void);
 typedef struct _GStaticResource GStaticResource;
 
 struct _GStaticResource {
+  /*< private >*/
   const guint8 *data;
   gsize data_len;
   GResource *resource;
index 96ce141..f004711 100644 (file)
@@ -110,6 +110,7 @@ struct _GSettingsBackendClass
                                      const gchar         *key,
                                      const GVariantType  *expected_type);
 
+  /*< private >*/
   gpointer padding[23];
 };