gst/gstvalue.*: Add more missing "Since:" tags to docs.

Original commit message from CVS:
* gst/gstvalue.c:
* gst/gstvalue.h:
Add more missing "Since:" tags to docs.
This commit is contained in:
Stefan Kost 2007-12-12 14:04:14 +00:00
parent 12f0269d48
commit 4fffa41e1c
3 changed files with 12 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2007-12-12 Stefan Kost <ensonic@users.sf.net>
* gst/gstvalue.c:
* gst/gstvalue.h:
Add more missing "Since:" tags to docs.
2007-12-12 Stefan Kost <ensonic@users.sf.net>
* gst/gstutils.c:

View file

@ -1292,6 +1292,8 @@ gst_value_deserialize_caps (GValue * dest, const gchar * s)
* @structure: the structure to set the value to
*
* Sets the contents of @value to @structure. The actual
*
* Since: 0.10.15
*/
void
gst_value_set_structure (GValue * value, const GstStructure * structure)
@ -1308,6 +1310,8 @@ gst_value_set_structure (GValue * value, const GstStructure * structure)
* Gets the contents of @value.
*
* Returns: the contents of @value
*
* Since: 0.10.15
*/
const GstStructure *
gst_value_get_structure (const GValue * value)

View file

@ -146,6 +146,8 @@ G_BEGIN_DECLS
* @x: the #GValue to check
*
* Checks if the given #GValue contains a #GST_TYPE_STRUCTURE value.
*
* Since: 0.10.15
*/
#define GST_VALUE_HOLDS_STRUCTURE(x) (G_VALUE_HOLDS(x, GST_TYPE_STRUCTURE))