Example #1
0
File: usb.go Project: hanwen/usb
// Decrement the reference count of a device.
func (d *Device) Unref() {
	C.libusb_unref_device((*C.libusb_device)(d.me()))
}
Example #2
0
File: usb.go Project: thequux/gousb
func (dev *Device) destroy() {
	C.libusb_unref_device(dev.device)
	dev.device = nil
	dev.ctx = nil
}