Files
go-gst/gst/base/util.go

13 lines
189 B
Go

package base
//#include "gst.go.h"
import "C"
// gboolean converts a go bool to a C.gboolean.
func gboolean(b bool) C.gboolean {
if b {
return C.gboolean(1)
}
return C.gboolean(0)
}