From 1a197c35c39670dda1f460ea6bc1e32817935fd9 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sun, 5 Oct 2003 21:32:09 +0000 Subject: [PATCH] Fix includes. Sun Oct 5 23:23:53 2003 Matthias Clasen * gobject/glib-sections.txt: * gobject/gobject-sections.txt: Fix includes. * gobject/tmpl/value_collection.sgml: Add docs found in the header. --- docs/reference/ChangeLog | 8 +++++ docs/reference/glib/glib-sections.txt | 1 + docs/reference/gobject/gobject-sections.txt | 5 ++- .../gobject/tmpl/value_collection.sgml | 33 ++++++++++++------- 4 files changed, 34 insertions(+), 13 deletions(-) diff --git a/docs/reference/ChangeLog b/docs/reference/ChangeLog index 0dd55f3d..0abaadb5 100644 --- a/docs/reference/ChangeLog +++ b/docs/reference/ChangeLog @@ -1,3 +1,11 @@ +Sun Oct 5 23:23:53 2003 Matthias Clasen + + * gobject/glib-sections.txt: + * gobject/gobject-sections.txt: Fix includes. + + * gobject/tmpl/value_collection.sgml: Add docs found in the + header. + Thu Oct 2 01:22:46 2003 Owen Taylor * gobject/gobject-sections.txt gobject/tmpl/gtype.sgml: diff --git a/docs/reference/glib/glib-sections.txt b/docs/reference/glib/glib-sections.txt index ce45eaa2..bdbce90b 100644 --- a/docs/reference/glib/glib-sections.txt +++ b/docs/reference/glib/glib-sections.txt @@ -898,6 +898,7 @@ g_file_error_quark
String Utility Functions string_utils +glib.h,glib/gprintf.h g_strdup g_strndup g_strdupv diff --git a/docs/reference/gobject/gobject-sections.txt b/docs/reference/gobject/gobject-sections.txt index 32c22205..40c61363 100644 --- a/docs/reference/gobject/gobject-sections.txt +++ b/docs/reference/gobject/gobject-sections.txt @@ -1,4 +1,4 @@ -gobject.h +glib-object.h
gtype @@ -287,6 +287,8 @@ g_pointer_type_register_static G_TYPE_GSTRING +G_TYPE_STRV +GStrv G_TYPE_IS_BOXED @@ -608,6 +610,7 @@ g_param_spec_types
Varargs Value Collection value_collection +glib-object.h,gobject/gvaluecollector.h GTypeCValue G_VALUE_COLLECT G_VALUE_LCOPY diff --git a/docs/reference/gobject/tmpl/value_collection.sgml b/docs/reference/gobject/tmpl/value_collection.sgml index 0694b2ac..e33b4862 100644 --- a/docs/reference/gobject/tmpl/value_collection.sgml +++ b/docs/reference/gobject/tmpl/value_collection.sgml @@ -16,35 +16,44 @@ Converting varargs to generic values - +A union holding one collected value. - +Collects a variable argument value from a va_list. We have to +implement the varargs collection as a macro, because on some systems +va_list variables cannot be passed by reference. -@value: -@var_args: -@flags: -@__error: +@value: a #GValue return location. @value is supposed to be initialized + according to the value type to be collected +@var_args: the va_list variable; it may be evaluated multiple times +@flags: flags which are passed on to the collect_value() function of + the #GTypeValueTable of @value. +@__error: a #gchar** variable that will be modified to hold a g_new() + allocated error messages if something fails - +Collects a value's variable argument locations from a va_list. -@value: -@var_args: -@flags: -@__error: +@value: a #GValue return location. @value is supposed to be initialized + according to the value type to be collected +@var_args: the va_list variable; it may be evaluated multiple times +@flags: flags which are passed on to the lcopy_value() function of + the #GTypeValueTable of @value. +@__error: a #gchar** variable that will be modified to hold a g_new() + allocated error messages if something fails - +The maximal number of #GTypeCValues which can be collected for a +single #GValue. -- 2.34.1