12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- /**
- * usbdi.h
- *
- * USBD and USB device driver definitions
- *
- * FIXME : Obsolete header.. Use usb.h instead.
- *
- * This file is part of the mingw-w64 runtime package.
- * No warranty is given; refer to the file DISCLAIMER within this package.
- *
- * This file is based on the ReactOS PSDK file usbdi.h header.
- * Original contributed by Casper S. Hornstrup <chorns@users.sourceforge.net>
- *
- * Added winapi-family check by Kai Tietz.
- */
- #ifndef __USBDI_H__
- #define __USBDI_H__
- #include <winapifamily.h>
- #if WINAPI_FAMILY_PARTITION (WINAPI_PARTITION_DESKTOP)
- #include <usb.h>
- #include <usbioctl.h>
- #define USBD_STATUS_CANCELLING ((USBD_STATUS) 0x00020000)
- #define USBD_STATUS_CANCELING ((USBD_STATUS) 0x00020000)
- #define USBD_STATUS_NO_MEMORY ((USBD_STATUS) 0x80000100)
- #define USBD_STATUS_ERROR ((USBD_STATUS) 0x80000000)
- #define USBD_STATUS_REQUEST_FAILED ((USBD_STATUS) 0x80000500)
- #define USBD_STATUS_HALTED ((USBD_STATUS) 0xc0000000)
- #define USBD_HALTED(Status) ((ULONG) (Status) >> 30 == 3)
- #define USBD_STATUS(Status) ((ULONG) (Status) & __MSABI_LONG (0x0fffffff))
- #define URB_FUNCTION_RESERVED0 0x0016
- #define URB_FUNCTION_RESERVED 0x001d
- #define URB_FUNCTION_LAST 0x0029
- #define USBD_PF_DOUBLE_BUFFER 0x00000002
- #ifdef USBD_PF_VALID_MASK
- #undef USBD_PF_VALID_MASK
- #endif
- #define USBD_PF_VALID_MASK (USBD_PF_CHANGE_MAX_PACKET | USBD_PF_DOUBLE_BUFFER | USBD_PF_ENABLE_RT_THREAD_ACCESS | USBD_PF_MAP_ADD_TRANSFERS)
- #define USBD_TRANSFER_DIRECTION_BIT 0
- #define USBD_SHORT_TRANSFER_OK_BIT 1
- #define USBD_START_ISO_TRANSFER_ASAP_BIT 2
- #ifdef USBD_TRANSFER_DIRECTION
- #undef USBD_TRANSFER_DIRECTION
- #endif
- #define USBD_TRANSFER_DIRECTION(x) ((x) & USBD_TRANSFER_DIRECTION_IN)
- #endif
- #endif
|