summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorStefan Kost <stefkost@src.gnome.org>2008-06-22 09:53:11 +0000
committerStefan Kost <stefkost@src.gnome.org>2008-06-22 09:53:11 +0000
commit43c995df17372b11438231e51e547582688fd368 (patch)
tree41f541632ad1c3d44378ac58e276ae88d9936384 /docs
parent80326e24332a9519ddf64c01cdecdee2dbda7501 (diff)
Migrating docs.
* docs/reference/gobject/tmpl/value_collection.sgml: * gobject/gvaluecollector.h: Migrating docs. svn path=/trunk/; revision=7086
Diffstat (limited to 'docs')
-rw-r--r--docs/reference/gobject/tmpl/value_collection.sgml66
1 files changed, 0 insertions, 66 deletions
diff --git a/docs/reference/gobject/tmpl/value_collection.sgml b/docs/reference/gobject/tmpl/value_collection.sgml
deleted file mode 100644
index 18cbf503f..000000000
--- a/docs/reference/gobject/tmpl/value_collection.sgml
+++ /dev/null
@@ -1,66 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-Varargs Value Collection
-
-<!-- ##### SECTION Short_Description ##### -->
-Converting varargs to generic values
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
-The macros in this section provide the varargs parsing support needed
-in variadic GObject functions such as g_object_new() or g_object_set().
-They currently support the collection of integral types, floating point
-types and pointers.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-#GValueTable
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### UNION GTypeCValue ##### -->
-<para>
-A union holding one collected value.
-</para>
-
-
-<!-- ##### MACRO G_VALUE_COLLECT ##### -->
-<para>
-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.
-</para>
-
-@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
-
-
-<!-- ##### MACRO G_VALUE_LCOPY ##### -->
-<para>
-Collects a value's variable argument locations from a va_list.
-</para>
-
-@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
-
-
-<!-- ##### MACRO G_VALUE_COLLECT_FORMAT_MAX_LENGTH ##### -->
-<para>
-The maximal number of #GTypeCValue<!-- -->s which can be collected for a
-single #GValue.
-</para>
-
-
-