コード例 #1
0
ファイル: instance.go プロジェクト: egelmex/go-vlc
// VlmRelease releases the vlm instance associated with this instance.
func (this *Instance) VlmRelease() error {
	if this.ptr == nil {
		return os.EINVAL
	}

	C.libvlc_vlm_release(this.ptr)
	return checkError()
}
コード例 #2
0
ファイル: instance.go プロジェクト: henrym/go-vlc
// VlmRelease releases the vlm instance associated with this instance.
func (this *Instance) VlmRelease() error {
	if this.ptr == nil {
		return &VLCError{"Instance is nil"}
	}

	C.libvlc_vlm_release(this.ptr)
	return checkError()
}