fs_lbl.h
上传用户:yj_qqy
上传日期:2017-01-28
资源大小:2911k
文件大小:2k
源码类别:

uCOS

开发平台:

C/C++

  1. /*
  2. **********************************************************************
  3. *                          Micrium, Inc.
  4. *                      949 Crestview Circle
  5. *                     Weston,  FL 33327-1848
  6. *
  7. *                            uC/FS
  8. *
  9. *             (c) Copyright 2001 - 2003, Micrium, Inc.
  10. *                      All rights reserved.
  11. *
  12. ***********************************************************************
  13. ----------------------------------------------------------------------
  14. File        : fs_lbl.h 
  15. Purpose     : Header file for the file system's Logical Block Layer
  16. ----------------------------------------------------------------------
  17. Known problems or limitations with current version
  18. ----------------------------------------------------------------------
  19. None.
  20. ---------------------------END-OF-HEADER------------------------------
  21. */
  22. #ifndef _FS_LBL_H_
  23. #define _FS_LBL_H_
  24. /*********************************************************************
  25. *
  26. *             #define constants
  27. *
  28. **********************************************************************
  29. */
  30. #define FS_LBL_MEDIACHANGED     0x0001
  31. /*********************************************************************
  32. *
  33. *             Global function prototypes
  34. *
  35. **********************************************************************
  36. */
  37. int                 FS__lb_status(const FS__device_type *pDriver, FS_u32 Unit);
  38. int                 FS__lb_read(const FS__device_type *pDriver, FS_u32 Unit, FS_u32 Sector, void *pBuffer);
  39. int                 FS__lb_write(const FS__device_type *pDriver, FS_u32 Unit, FS_u32 Sector, void *pBuffer);
  40. int                 FS__lb_ioctl(const FS__device_type *pDriver, FS_u32 Unit, FS_i32 Cmd, FS_i32 Aux, void *pBuffer);
  41. #endif  /* _FS_LBL_H_  */