diff options
author | Stefan Kost <ensonic@users.sourceforge.net> | 2005-11-22 09:35:25 +0000 |
---|---|---|
committer | Stefan Kost <ensonic@users.sourceforge.net> | 2005-11-22 09:35:25 +0000 |
commit | f6afcd058cd5d4f0d411c1b9a5adbefbff4ef3bb (patch) | |
tree | 513987364437776910064a2a45f2e92ff3085456 /gst/gstchildproxy.h | |
parent | 506aa94ce2d1d4933807a56af718fc47f953dd06 (diff) |
gst/gst.h: include "gstchildproxy.h"
Original commit message from CVS:
* gst/gst.h:
include "gstchildproxy.h"
* gst/gstchildproxy.h:
* libs/gst/controller/gstcontroller.h:
use G_GNUC_NULL_TERMINATED
Diffstat (limited to 'gst/gstchildproxy.h')
-rw-r--r-- | gst/gstchildproxy.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/gstchildproxy.h b/gst/gstchildproxy.h index 5f5580cb7..d50784706 100644 --- a/gst/gstchildproxy.h +++ b/gst/gstchildproxy.h @@ -62,12 +62,12 @@ void gst_child_proxy_get_property (GstObject * object, const gchar *name, GValue void gst_child_proxy_get_valist (GstObject * object, const gchar * first_property_name, va_list var_args); void gst_child_proxy_get (GstObject * object, const gchar * first_property_name, - ...); + ...) G_GNUC_NULL_TERMINATED; void gst_child_proxy_set_property (GstObject * object, const gchar *name, const GValue *value); void gst_child_proxy_set_valist (GstObject* object, const gchar * first_property_name, va_list var_args); void gst_child_proxy_set (GstObject * object, const gchar * first_property_name, - ...); + ...) G_GNUC_NULL_TERMINATED; void gst_child_proxy_child_added (GstObject * object, GstObject * child); void gst_child_proxy_child_removed (GstObject * object, GstObject * child); |