Beispiel #1
0
Datei: usb.go Projekt: hanwen/usb
func (d *Device) Ref() *Device {
	return (*Device)(C.libusb_ref_device((*C.libusb_device)(d.me())))
}
Beispiel #2
0
func (ctx *Context) wrapDevice(dev *C.struct_libusb_device) *Device {
	C.libusb_ref_device(dev)
	return &Device{ctx, dev}
}