summaryrefslogtreecommitdiff
path: root/README_MSVC.txt
Commit message (Collapse)AuthorAgeFilesLines
* r119: xusb improvements for mass storage (Alan Stern)Pete Batard2010-01-271-4/+6
|
* r103: HID part 3 (WIP)Pete Batard2010-01-221-2/+2
| | | | | | | | - get_interface_details() now has an optional SP_DEVINFO_DATA parameter - usbi_handle_transfer_cancellation() now called from windows_cancel_transfer() - set_report/get_report (WIP) and improved HID support functions - better support for sync I/O in hid_submit_control_transfer - hid_abort_transfers
* r98: additional MSVC6 fixesPete Batard2010-01-211-16/+10
|
* r90: more compilation environment fixes:Pete Batard2010-01-191-1/+5
| | | | | | - added Visual Studio 2005 (MSVC8) solution and project files (Orin Eman) - renamed VS 2008 solution and project files - fixed "warning: undefined symbols not allowed" for MinGW/cygwin in configure.ac
* r89: extended API supportPete Batard2010-01-181-3/+3
| | | | | | | | | - composite devices as a separate backend API - mutidriver support in composite devices interface - HID: device interface path, open/close (WIP) - added HID test in xusb.c - fixed Windows version and DDK support - smaller fixes
* r86: VS2005 compatibility update and pthread-win32_x64 helpersPete Batard2010-01-161-0/+3
| | | | Minor comment clarification in libusb.h
* r84: updated README_MSVC.txtPete Batard2010-01-151-13/+42
|
* r82: added x64 support for MSVC and finalized directory structure.Pete Batard2010-01-151-8/+14
| | | | Also amended README_MSVC.txt to reflect a better setup for the required DDK directories
* Fix CR/LF inconsistenciesPete Batard2010-01-141-15/+15
|
* svn r52: MSVC compatibility update:Pete Batard2010-01-141-0/+15
- changed ssize_t to int for libusb_get_device_list (do we really expect that many devices?). Also in lsusb.c - redefined inline to __inline in libusb.h - remove the unistd.h include for OS_WINDOWS - api/ vs ddk/ for ddk includes - changed variadics using ,fmt... to ,... and __VA_ARGS__ - list_for_each_entry now requires a type parameter - libusb_cpu_to_le16 as inline - time.h vs sys/time.h - harmonization of #ifdef vs #if defined() within individual files - defined an empty __drv_preferredFunction(func,why) before #include <cfgmgr32.h>, as it only applies to obsolete functions - excluded USB_HUB_CAPS redefinition from MSVC - new msvc top directory for includes (stdint.h inttypes.h and pthread) - new config_msvc.h file - new README_MSVC and MSVC project files - removed various warnings (signed/unsigned comparisons, cast, etc)