mirror of
https://github.com/go-gst/go-gst.git
synced 2025-10-12 19:30:46 +08:00
13 lines
231 B
Go
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 }
|