예제 #1
0
파일: usb.go 프로젝트: gonium/goairsensor
func (c *Context) Debug(level int) {
	C.libusb_set_debug(c.ctx, C.int(level))
}
예제 #2
0
파일: usb.go 프로젝트: hanwen/usb
func (c *Context) SetDebug(level int) {
	C.libusb_set_debug(c.me(), C.int(level))
}
예제 #3
0
파일: usb.go 프로젝트: thequux/gousb
func (ctx *Context) SetDebug(level int) {
	ctx.doinit()
	C.libusb_set_debug(ctx.ctx, C.int(level))
}