Files
go-gst/gst/gst_toc.go
2020-09-30 10:26:06 +03:00

13 lines
231 B
Go

package gst
// #include "gst.go.h"
import "C"
// ToC is a Go representation of a GstToc.
type ToC struct {
ptr *C.GstToc
}
// Instance returns the underlying GstToc instance.
func (t *ToC) Instance() *C.GstToc { return t.ptr }