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 48f8677..6652a0d 100644 --- a/mkvlib/c/exports.go +++ b/mkvlib/c/exports.go @@ -183,6 +183,14 @@ func NRename(n bool) { getter.GetProcessorInstance().NRename(n) } +//export Check +func Check(check, strict bool) { + if !checkInstance() { + return + } + getter.GetProcessorInstance().Check(check, strict) +} + func cs(gs string) *C.char { return C.CString(gs) } |
