summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* [internal] bumped internal versionpbr338Pete Batard2011-05-101-1/+1
|
* [MinGW] fixed warning about dev_infoPete Batard2011-05-101-1/+1
| | | | | * MinGW wrongly complains that dev_info may be used uninitialized in windows_get_device_list()
* [misc] set internal windows function as staticPete Batard2011-05-101-6/+6
|
* [windows] remove call to set_interface_altsetting on interface releasePete Batard2011-05-101-1/+0
| | | | | | * pointed out by Travis Robinson and Xiaofan Chen * similar to a change advised Alan Stern for libusb-1.0/Linux: http://libusb.6.n5.nabble.com/RFC-Skip-sending-Set-Interface-during-driver-unbinding-td6073.html
* [enum] fixed initialization of interfaces for WinUSB hub accessPete Batard2011-05-101-5/+2
| | | | | * also removed unneeded winusb_handle assignation * issue reported by René Haunstrup
* [wdk] fixed path for .rc in libusb_sourcesPeter Stuge2011-05-101-1/+1
|
* [internal] modified _bump scriptpbr337Pete Batard2011-05-092-5/+3
|
* Move library release version number from configure.ac to libusb/version.hPete Batard2011-05-097-81/+42
|
* [mingw] fixed Unicode support (reported by sirreal)Pete Batard2011-04-153-4/+4
|
* [internal] switched to Visual Studio 2010Pete Batard2011-03-1614-1363/+804
|
* [integration] more merging for integration with -stugepbr336Pete Batard2011-03-085-23/+9
|
* [xusb] fixed mass storage test data not being freedPete Batard2011-03-081-0/+1
|
* [enum] fixed short device initializationPete Batard2011-03-081-5/+5
| | | | | | * some devices (eg. hubs) could fail to be properly setup because of short initialization added in pbr333 (memleak issue) * use device_address instead of bus_number for check
* [windows_backends] removed dummy open/close for HUBsPete Batard2011-03-081-18/+2
|
* [internal] bumped internal versionpbr335Pete Batard2011-03-073-3/+3
|
* [integration] merged latest from -stuge branchPete Batard2011-03-0713-254/+187
| | | | * also switched to using POLL_NFDS_TYPE in windows_usb.c
* [xusb] added Sony PS3 SixAxis testAustyn Krutsinger2011-03-071-2/+101
| | | | * also removed dependency on libusb's config.h
* [autogen] fixed >> instead of > typo in create_defChris Johns2011-03-071-1/+1
|
* bumped internal versionpbr334Pete Batard2011-03-032-2/+2
|
* [mingw32] fixed non C99 compliant OVERLAPPED in winbase.hPete Batard2011-03-031-1/+1
| | | | | | * issue and workaround similar to fb33bf26916dae3a443c9d831d5f9985f58bcc6b for cygwin * issue reported by Dave Camarillo
* [winusb] removed unused variablepbr333Pete Batard2011-03-021-1/+0
|
* [topology] removed debug messagePete Batard2011-03-023-3/+2
|
* [xusb] removed HID supportPete Batard2011-03-021-179/+0
|
* [windows-backends] remove HID supportPete Batard2011-03-022-1333/+14
|
* [xusb] minor improvementsPete Batard2011-03-021-29/+14
|
* [enum] fixed memory leaks when a device is already openPete Batard2011-03-021-2/+9
| | | | | * enum could reinit data from an open device * also avoid freeing data from any existing device
* [INTERNAL - NOT FOP RELEASE] libusb.h -> include/libusb-1.0Pete Batard2011-02-253-11/+13
| | | | | * suggested by Chris Johns * also copy the .def from MinGW to ensure regenerated one is used
* fixed that hare-brained zero prefixing on .def creationpbr332Pete Batard2011-02-254-183/+183
| | | | * issue reported by Chris Johns
* fix out of source build for DLL generationpbr331Chris Johns2011-02-243-4/+4
|
* [INTERNAL] remove CRs in repo, part 5Pete Batard2011-02-241-1/+1
|
* [INTERNAL] remove CRs in repo, part 4Pete Batard2011-02-242-72/+72
|
* [INTERNAL] remove CRs in repo, part 3Pete Batard2011-02-241-4/+4
|
* [INTERNAL] remove CRs in repo, part 2Pete Batard2011-02-2414-3521/+3521
|
* [INTERNAL] remove CRs in repo, part 1Pete Batard2011-02-241-4/+4
|
* fixed libusb_get_port_path using zombie parentspbr330Pete Batard2011-02-225-5/+13
| | | | | * add a call to libusb_get_device_list to ensure the parents exist * modified API as a context is required for get_device_list
* bumped internal versionpbr329Pete Batard2011-02-212-2/+2
|
* different approach to topology retrievalPete Batard2011-02-218-84/+96
| | | | | | | * uses get_port, get_port_path, get_parent as suggested by Alan Stern * adds parent_dev and port_number to the libusb device struct * uses calloc on device struct, to handle currently missing backend implementations * xusb updated to use new calls
* added sorting of .def filePete Batard2011-02-212-556/+558
| | | | * suggested by Michael Plante
* prevent set_configuration request from being sent using WinUSBPete Batard2011-02-211-6/+19
| | | | | | * multiple WinUSB set configuration requests can stall a device and WinUSB does not support setting of alt configuration in the first place * issue reported and investigated by Xiaofan Chen
* use eol= in .gitattributes (requires git >= 1.7.3)Pete Batard2011-02-211-8/+7
| | | | * eol=lf does not work with autocrlf=true on Windows for older git
* minor code improvements to xusbPete Batard2011-02-031-7/+6
|
* bumped internal versionpbr328Pete Batard2011-01-312-2/+2
|
* merged latest official changesPete Batard2011-01-308-84/+118
| | | | * up to 295c9d12e25bc2dbdd8b42bd67a1f7120f0631a1
* fixed windows_init() return value on subsequent callsPete Batard2011-01-201-3/+3
| | | | | | * windows_init was set to return LIBUSB_ERROR_OTHER always if first run initialization was not executed * issue reported by Konrad Rosenbaum
* added topology information retrieval to xusbpbr327Pete Batard2011-01-203-2/+6
|
* updated .def file for libusb_get_device_topologyPete Batard2011-01-201-0/+10
|
* added get_device_topology optional API callPete Batard2011-01-206-0/+71
| | | | * Windows only, unsupported on other platforms
* [INTERNAL - TESTING] removed test file for line ending conversionpbr326Pete Batard2011-01-183-7/+2
|
* xusb: better hex dump, with address and printable ASCIIPete Batard2011-01-181-6/+22
|
* fixed VS2010 IntelliSense warningsPete Batard2011-01-181-13/+16
|