gst/libs.defs: Add definition for GstParamFlags, extension of the GParamFlags.

Original commit message from CVS:
* gst/libs.defs:
Add definition for GstParamFlags, extension of the GParamFlags.
Only contains one flag, gst.PARAM_CONTROLLABLE.
Closes #355150
This commit is contained in:
Edward Hervey 2006-09-10 08:53:26 +00:00
parent 9f017ec3e9
commit bbdf0313b1
2 changed files with 15 additions and 0 deletions

View file

@ -1,3 +1,10 @@
2006-09-10 Edward Hervey <edward@fluendo.com>
* gst/libs.defs:
Add definition for GstParamFlags, extension of the GParamFlags.
Only contains one flag, gst.PARAM_CONTROLLABLE.
Closes #355150
2006-08-31 Edward Hervey <edward@fluendo.com>
* gst/gst-0.10.10.ignore:

View file

@ -10,6 +10,14 @@
;; Enumerations and flags ...
(define-flags ParamFlags
(in-module "Gst")
(c-name "GstParamFlags")
(values
'("controllable" "GST_PARAM_CONTROLLABLE")
)
)
(define-enum InterpolateMode
(in-module "Gst")
(c-name "GstInterpolateMode")