// 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 }
// 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 }