Exemplo n.º 1
0
// Release decreases the reference count of the instance and destroys it when it reaches zero.
func (this *Library) Release() (err error) {
	if this.ptr == nil {
		return syscall.EINVAL
	}

	C.libvlc_media_library_release(this.ptr)
	return
}
Exemplo n.º 2
0
// Release decreases the reference count of the instance and destroys it when it reaches zero.
func (this *Library) Release() (err error) {
	if this.ptr == nil {
		return &VLCError{"Library is nil"}
	}

	C.libvlc_media_library_release(this.ptr)
	return
}