commit | 80d2238cb80469aee03d0367080350496d8548eb | [log] [tgz] |
---|---|---|
author | Chris Dickens <christopher.a.dickens@gmail.com> | Sun Jan 26 14:31:35 2020 -0800 |
committer | Chris Dickens <christopher.a.dickens@gmail.com> | Sun Jan 26 14:31:35 2020 -0800 |
tree | efd84ff3c454b0e437b773bc3248a248d9e5fb2c | |
parent | a96937af9935c569b679d8ada2f59e90754b700a [diff] |
Windows: Fix GCC printf format warnings due to DWORD/ULONG types The Visual Studio compiler considers a long to always be 32-bits, so the official Windows API headers define the DWORD and ULONG types as unsigned long proper. GCC (and possibly other compilers) vary the width of a long to match the build target, so this complicates printf format strings for these two types because the underlying type is inconsistent. Address this mess by introducing a macro that casts as necessary for the compiler. Signed-off-by: Chris Dickens <christopher.a.dickens@gmail.com>
libusb is a library for USB device access from Linux, macOS, Windows, OpenBSD/NetBSD and Haiku userspace. It is written in C (Haiku backend in C++) and licensed under the GNU Lesser General Public License version 2.1 or, at your option, any later version (see COPYING).
libusb is abstracted internally in such a way that it can hopefully be ported to other operating systems. Please see the PORTING file for more information.
libusb homepage: http://libusb.info/
Developers will wish to consult the API documentation: http://api.libusb.info
Use the mailing list for questions, comments, etc: http://mailing-list.libusb.info
(Please use the mailing list rather than mailing developers directly)