mirror of
https://git.code.sf.net/p/mingw-w64/mingw-w64
synced 2024-11-23 09:54:39 +08:00
261ad34074
git-svn-id: svn+ssh://svn.code.sf.net/p/mingw-w64/code/trunk@6393 4407c894-4637-0410-b4f5-ada5f102cad1
59 lines
1.7 KiB
C
59 lines
1.7 KiB
C
/**
|
|
* 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
|