libusb20_int.h (09c817ba36db7c3a4ff5e25ac55816ca181a403d) | libusb20_int.h (390065b18e0ee636279b106ff06f0a1463589ab1) |
---|---|
1/* $FreeBSD$ */ 2/*- 3 * Copyright (c) 2008 Hans Petter Selasky. 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 --- 177 unchanged lines hidden (view full) --- 186 const struct libusb20_backend_methods *beMethods; 187 188 /* list of USB transfers */ 189 struct libusb20_transfer *pTransfer; 190 191 /* private backend data */ 192 void *privBeData; 193 | 1/* $FreeBSD$ */ 2/*- 3 * Copyright (c) 2008 Hans Petter Selasky. 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 --- 177 unchanged lines hidden (view full) --- 186 const struct libusb20_backend_methods *beMethods; 187 188 /* list of USB transfers */ 189 struct libusb20_transfer *pTransfer; 190 191 /* private backend data */ 192 void *privBeData; 193 |
194 /* libUSB v0.1 compat data */ 195 void *priv01Data; | 194 /* libUSB v0.1 and v1.0 compat data */ 195 void *privLuData; |
196 197 /* claimed interface */ 198 uint8_t claimed_interface; 199 200 /* device file handle */ 201 int file; 202 203 /* device file handle (control transfers only) */ --- 21 unchanged lines hidden --- | 196 197 /* claimed interface */ 198 uint8_t claimed_interface; 199 200 /* device file handle */ 201 int file; 202 203 /* device file handle (control transfers only) */ --- 21 unchanged lines hidden --- |