libs/gst/: Fix empty prototypes. Fixes bug #507957.
authorDamien Lespiau <damien.lespiau@gmail.com>
Tue, 8 Jan 2008 02:07:38 +0000 (02:07 +0000)
committerDavid Schleef <ds@schleef.org>
Tue, 8 Jan 2008 02:07:38 +0000 (02:07 +0000)
Original commit message from CVS:
Patch by: Damien Lespiau <damien.lespiau@gmail.com>
* libs/gst/controller/gstcontroller.h:
* libs/gst/controller/gstcontrolsource.h:
* libs/gst/controller/gstinterpolationcontrolsource.h:
* libs/gst/controller/gstlfocontrolsource.h:
* libs/gst/dataprotocol/dataprotocol.h:
Fix empty prototypes.  Fixes bug #507957.

ChangeLog
libs/gst/controller/gstcontroller.h
libs/gst/controller/gstcontrolsource.h
libs/gst/controller/gstinterpolationcontrolsource.h
libs/gst/controller/gstlfocontrolsource.h
libs/gst/dataprotocol/dataprotocol.h

index 1ad167d..c236069 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,16 @@
 2008-01-07  David Schleef  <ds@schleef.org>
 
+       Patch by: Damien Lespiau <damien.lespiau@gmail.com>
+
+       * libs/gst/controller/gstcontroller.h:
+       * libs/gst/controller/gstcontrolsource.h:
+       * libs/gst/controller/gstinterpolationcontrolsource.h:
+       * libs/gst/controller/gstlfocontrolsource.h:
+       * libs/gst/dataprotocol/dataprotocol.h:
+         Fix empty prototypes.  Fixes bug #507957.
+
+2008-01-07  David Schleef  <ds@schleef.org>
+
        * docs/faq/dependencies.xml: Fix typo.
 
 2008-01-07  Wim Taymans  <wim.taymans@collabora.co.uk>
index d8514e1..b729de6 100644 (file)
@@ -84,7 +84,7 @@ struct _GstControllerClass
   gpointer       _gst_reserved[GST_PADDING];
 };
 
-GType gst_controller_get_type ();
+GType gst_controller_get_type (void);
 
 /* GstController functions */
 
index c3db579..71fb2aa 100644 (file)
@@ -150,7 +150,7 @@ struct _GstControlSourceClass
   gpointer _gst_reserved[GST_PADDING];
 };
 
-GType gst_control_source_get_type ();
+GType gst_control_source_get_type (void);
 
 /* Functions */
 
index 233909d..42d2e76 100644 (file)
@@ -91,11 +91,11 @@ struct _GstInterpolationControlSourceClass {
   gpointer _gst_reserved[GST_PADDING];
 };
 
-GType gst_interpolation_control_source_get_type ();
+GType gst_interpolation_control_source_get_type (void);
 
 /* Functions */
 
-GstInterpolationControlSource *gst_interpolation_control_source_new ();
+GstInterpolationControlSource *gst_interpolation_control_source_new (void);
 gboolean gst_interpolation_control_source_set_interpolation_mode (GstInterpolationControlSource *self, GstInterpolateMode mode);
 gboolean gst_interpolation_control_source_set (GstInterpolationControlSource * self, GstClockTime timestamp, GValue * value);
 gboolean gst_interpolation_control_source_set_from_list (GstInterpolationControlSource * self, GSList * timedvalues);
index 18bb8cc..b74a2a3 100644 (file)
@@ -90,12 +90,12 @@ struct _GstLFOControlSourceClass {
   gpointer _gst_reserved[GST_PADDING];
 };
 
-GType gst_lfo_control_source_get_type ();
-GType gst_lfo_waveform_get_type ();
+GType gst_lfo_control_source_get_type (void);
+GType gst_lfo_waveform_get_type (void);
 
 /* Functions */
 
-GstLFOControlSource *gst_lfo_control_source_new ();
+GstLFOControlSource *gst_lfo_control_source_new (void);
 
 G_END_DECLS
 
index 4e90e2e..118df65 100644 (file)
@@ -41,7 +41,7 @@ typedef enum {
   GST_DP_VERSION_1_0,
 } GstDPVersion;
 
-GType gst_dp_version_get_type ();
+GType gst_dp_version_get_type (void);
 #define GST_TYPE_DP_VERSION (gst_dp_version_get_type ())
 
 /**