Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(690)

Side by Side Diff: third_party/libusb/src/libusb/os/linux_usbfs.h

Issue 10332075: Adding use_system_libusb option for third_party/libusb (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixing license check. Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * usbfs header structures 2 * usbfs header structures
3 * Copyright (C) 2007 Daniel Drake <dsd@gentoo.org> 3 * Copyright (C) 2007 Daniel Drake <dsd@gentoo.org>
4 * Copyright (c) 2001 Johannes Erdfelt <johannes@erdfelt.com> 4 * Copyright (c) 2001 Johannes Erdfelt <johannes@erdfelt.com>
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public 7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version. 9 * version 2.1 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 #define IOCTL_USBFS_RELEASEINTF _IOR('U', 16, unsigned int) 129 #define IOCTL_USBFS_RELEASEINTF _IOR('U', 16, unsigned int)
130 #define IOCTL_USBFS_CONNECTINFO _IOW('U', 17, struct usbfs_connectinfo) 130 #define IOCTL_USBFS_CONNECTINFO _IOW('U', 17, struct usbfs_connectinfo)
131 #define IOCTL_USBFS_IOCTL _IOWR('U', 18, struct usbfs_ioctl) 131 #define IOCTL_USBFS_IOCTL _IOWR('U', 18, struct usbfs_ioctl)
132 #define IOCTL_USBFS_HUB_PORTINFO _IOR('U', 19, struct usbfs_hub_portinfo) 132 #define IOCTL_USBFS_HUB_PORTINFO _IOR('U', 19, struct usbfs_hub_portinfo)
133 #define IOCTL_USBFS_RESET _IO('U', 20) 133 #define IOCTL_USBFS_RESET _IO('U', 20)
134 #define IOCTL_USBFS_CLEAR_HALT _IOR('U', 21, unsigned int) 134 #define IOCTL_USBFS_CLEAR_HALT _IOR('U', 21, unsigned int)
135 #define IOCTL_USBFS_DISCONNECT _IO('U', 22) 135 #define IOCTL_USBFS_DISCONNECT _IO('U', 22)
136 #define IOCTL_USBFS_CONNECT _IO('U', 23) 136 #define IOCTL_USBFS_CONNECT _IO('U', 23)
137 137
138 #endif 138 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698