mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 21:01:14 +00:00
c68afb5f53
Original commit message from CVS: Backport from 0.8 branch and added new .defs file from GStreamer 0.9
25 lines
No EOL
431 B
Scheme
25 lines
No EOL
431 B
Scheme
; -*- scheme -*-
|
|
|
|
(define-method flags
|
|
(of-object "GstElement")
|
|
(c-name "GST_FLAGS")
|
|
(return-type "GstElementFlags")
|
|
)
|
|
|
|
(define-method set_flag
|
|
(of-object "GstObject")
|
|
(c-name "GST_FLAG_SET")
|
|
(return-type "none")
|
|
(parameters
|
|
'("GstObjectFlags" "flags")
|
|
)
|
|
)
|
|
|
|
(define-method unset_flag
|
|
(of-object "GstObject")
|
|
(c-name "GST_FLAG_UNSET")
|
|
(return-type "none")
|
|
(parameters
|
|
'("GstObjectFlags" "flag")
|
|
)
|
|
) |