usbMassStorage.h
上传用户:nvosite88
上传日期:2007-01-17
资源大小:4983k
文件大小:1k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* usbMassStorage.h - Definitions for USB mass storage class */
  2. /* Copyright 2000 Wind River Systems, Inc. */
  3. /*
  4. Modification history
  5. --------------------
  6. 01a,14dec00,wef  First.
  7. */
  8. #ifndef __INCusbMassStorageh
  9. #define __INCusbMassStorageh
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. /* typedefs */
  14. /* USB Command execution status codes   */
  15.  
  16. typedef enum
  17.     {
  18.     USB_COMMAND_SUCCESS = 0,
  19.     USB_COMMAND_FAILED,
  20.     USB_INVALID_CSW,
  21.     USB_PHASE_ERROR,
  22.     USB_IRP_FAILED,
  23.     USB_DATA_INCOMPLETE,
  24.     USB_BULK_IO_ERROR,
  25.     USB_INTERNAL_ERROR
  26.     } USB_COMMAND_STATUS;
  27. #ifdef __cplusplus
  28. }
  29. #endif
  30. #endif /* __INCusbMassStorageh */
  31. /* End of file. */