mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 06:39:46 -06:00
Externals: Update libusb to 1.0.23-rc1
Now has support for isochronous transfers in the WinUSB backend, which may or may not work better than the UsbDk backend.
This commit is contained in:
9
Externals/libusb/msvc/config.h
vendored
9
Externals/libusb/msvc/config.h
vendored
@ -6,16 +6,18 @@
|
||||
#endif
|
||||
|
||||
/* Visual Studio 2015 and later defines timespec */
|
||||
#if defined(_MSC_VER) && (_MSC_VER >= 1900)
|
||||
#if (_MSC_VER >= 1900)
|
||||
#define _TIMESPEC_DEFINED 1
|
||||
#endif
|
||||
|
||||
/* Disable: warning C4200: nonstandard extension used : zero-sized array in struct/union */
|
||||
#pragma warning(disable:4200)
|
||||
/* Disable: warning C4324: structure was padded due to __declspec(align()) */
|
||||
#pragma warning(disable:4324)
|
||||
/* Disable: warning C6258: Using TerminateThread does not allow proper thread clean up */
|
||||
#pragma warning(disable: 6258)
|
||||
#pragma warning(disable:6258)
|
||||
/* Disable: warning C4996: 'GetVersionA': was declared deprecated */
|
||||
#pragma warning(disable: 4996)
|
||||
#pragma warning(disable:4996)
|
||||
|
||||
#if defined(_PREFAST_)
|
||||
/* Disable "Banned API" errors when using the MS's WDK OACR/Prefast */
|
||||
@ -45,6 +47,5 @@
|
||||
#define HAVE_MISSING_H
|
||||
#else
|
||||
#define OS_WINDOWS 1
|
||||
#define HAVE_SIGNAL_H 1
|
||||
#define HAVE_SYS_TYPES_H 1
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user