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