libusb10.h (7bdc064b0b644d15bd9614d9e7db5c4279736d75) | libusb10.h (a0c93fa361cfa5930db3c2143172d1a2095b4b3e) |
---|---|
1/* $FreeBSD$ */ 2/*- 3 * Copyright (c) 2009 Sylvestre Gallon. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 55 unchanged lines hidden (view full) --- 64 struct libusb_pollfd pollfd; 65}; 66 67struct libusb_super_transfer { 68 TAILQ_ENTRY(libusb_super_transfer) entry; 69 uint8_t *curr_data; 70 uint32_t rem_len; 71 uint32_t last_len; | 1/* $FreeBSD$ */ 2/*- 3 * Copyright (c) 2009 Sylvestre Gallon. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 55 unchanged lines hidden (view full) --- 64 struct libusb_pollfd pollfd; 65}; 66 67struct libusb_super_transfer { 68 TAILQ_ENTRY(libusb_super_transfer) entry; 69 uint8_t *curr_data; 70 uint32_t rem_len; 71 uint32_t last_len; |
72 uint32_t stream_id; |
|
72 uint8_t state; 73#define LIBUSB_SUPER_XFER_ST_NONE 0 74#define LIBUSB_SUPER_XFER_ST_PEND 1 75}; 76 77struct libusb_hotplug_callback_handle { 78 TAILQ_ENTRY(libusb_hotplug_callback_handle) entry; 79 int events; --- 56 unchanged lines hidden --- | 73 uint8_t state; 74#define LIBUSB_SUPER_XFER_ST_NONE 0 75#define LIBUSB_SUPER_XFER_ST_PEND 1 76}; 77 78struct libusb_hotplug_callback_handle { 79 TAILQ_ENTRY(libusb_hotplug_callback_handle) entry; 80 int events; --- 56 unchanged lines hidden --- |