diff options
Diffstat (limited to 'mkvlib/c/exports.go')
| -rw-r--r-- | mkvlib/c/exports.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mkvlib/c/exports.go b/mkvlib/c/exports.go index f1537e3..86a0ceb 100644 --- a/mkvlib/c/exports.go +++ b/mkvlib/c/exports.go @@ -215,6 +215,14 @@ func GetFontInfo(p *C.char) *C.char { return cs(string(data)) } +//export Overwrite +func Overwrite(o bool) { + if !checkInstance() { + return + } + getter.GetProcessorInstance().Overwrite(o) +} + //export Version func Version() *C.char { return cs(mkvlib.Version()) |
