Remove BCD.Int, add BCD.Major/Minor. Remove USB spec versions

- I don't expect them to get much use, and reuse of BCD for USB spec
version and device revision makes it somewhat confusing.
This commit is contained in:
Sebastian Zagrodzki
2017-04-09 20:25:16 +02:00
parent a5c4de3a29
commit 56162d0105
6 changed files with 45 additions and 32 deletions

View File

@@ -18,10 +18,10 @@
#include <string.h>
void print_xfer(struct libusb_transfer *xfer);
void xfer_callback(void *);
void xferCallback(void *);
void callback(struct libusb_transfer *xfer) {
xfer_callback(xfer->user_data);
xferCallback(xfer->user_data);
}
int submit(struct libusb_transfer *xfer) {