Пример #1
0
Файл: usb.go Проект: hanwen/usb
// Decrement the reference count of a device.
func (d *Device) Unref() {
	C.libusb_unref_device((*C.libusb_device)(d.me()))
}
Пример #2
0
func (dev *Device) destroy() {
	C.libusb_unref_device(dev.device)
	dev.device = nil
	dev.ctx = nil
}