diff options
author | Juerg Billeter <j@bitron.ch> | 2008-04-19 16:06:52 +0000 |
---|---|---|
committer | Jürg Billeter <juergbi@src.gnome.org> | 2008-04-19 16:06:52 +0000 |
commit | d6e31866ee472294ae571a3b49c3511f6f4f803b (patch) | |
tree | 0935ff9cc3a27d1cee0dba576ad0e93fe3546011 /vapi/gstreamer-controller-0.10.vapi | |
parent | 32b6153fc03f971de58a1047d9c37d6e154e5934 (diff) | |
download | vala-d6e31866ee472294ae571a3b49c3511f6f4f803b.tar.gz |
Replace `pointer' by `void*' in all bindings and remove pointer struct
2008-04-19 Juerg Billeter <j@bitron.ch>
Replace `pointer' by `void*' in all bindings and remove pointer
struct from GLib bindings, fixes bug 510085
svn path=/trunk/; revision=1271
Diffstat (limited to 'vapi/gstreamer-controller-0.10.vapi')
-rw-r--r-- | vapi/gstreamer-controller-0.10.vapi | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/vapi/gstreamer-controller-0.10.vapi b/vapi/gstreamer-controller-0.10.vapi index 492b2876e..b3d00c4fa 100644 --- a/vapi/gstreamer-controller-0.10.vapi +++ b/vapi/gstreamer-controller-0.10.vapi @@ -2,22 +2,22 @@ [CCode (cprefix = "Gst", lower_case_cprefix = "gst_")] namespace Gst { - [CCode (cprefix = "GST_INTERPOLATE_", cheader_filename = "gst/controller/gstcontroller.h")] + [CCode (cprefix = "GST_INTERPOLATE_", has_type_id = "0", cheader_filename = "gst/controller/gstcontroller.h")] public enum InterpolateMode { NONE, TRIGGER, LINEAR, QUADRATIC, CUBIC, - USER, + USER } - [CCode (cprefix = "", cheader_filename = "gst/controller/gstlfocontrolsource.h")] + [CCode (cprefix = "", has_type_id = "0", cheader_filename = "gst/controller/gstlfocontrolsource.h")] public enum LFOWaveform { Sine waveform (default), Square waveform, Saw waveform, Reverse saw waveform, - Triangle waveform, + Triangle waveform } [CCode (cheader_filename = "gst/controller/gstcontroller.h")] public class TimedValue { @@ -29,7 +29,7 @@ namespace Gst { public weak string property_name; public int nbsamples; public weak Gst.ClockTime sample_interval; - public pointer values; + public void* values; } [CCode (cheader_filename = "gst/controller/gstcontroller.h")] public class ControlSource : GLib.Object { @@ -51,10 +51,10 @@ namespace Gst { public static bool init (int argc, out weak string argv); public Controller (GLib.Object object); public Controller.list (GLib.Object object, GLib.List list); - public Controller.valist (GLib.Object object, pointer var_args); + public Controller.valist (GLib.Object object, void* var_args); public bool remove_properties (); public bool remove_properties_list (GLib.List list); - public bool remove_properties_valist (pointer var_args); + public bool remove_properties_valist (void* var_args); public bool set (string property_name, Gst.ClockTime timestamp, GLib.Value value); public bool set_control_source (string property_name, Gst.ControlSource csource); public void set_disabled (bool disabled); |