Deleted Added
sdiff udiff text old ( 302080 ) new ( 302125 )
full compact
1/* $FreeBSD: head/lib/libusb/libusb10.h 302080 2016-06-22 10:38:41Z hselasky $ */
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
9 * notice, this list of conditions and the following disclaimer.

--- 54 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 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 ---