dfs_fat.h 785 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. +------------------------------------------------------------------------------
  3. | Project : Device Filesystem
  4. +------------------------------------------------------------------------------
  5. | Copyright 2004, 2005 www.fayfayspace.org.
  6. | All rights reserved.
  7. |------------------------------------------------------------------------------
  8. | File : dfs_fat.h, FAT 12/16/32 file system definitions
  9. |------------------------------------------------------------------------------
  10. | Chang Logs:
  11. | Date Author Notes
  12. | 2003-03-30 ffxz
  13. +------------------------------------------------------------------------------
  14. */
  15. #ifndef __DFS_FAT_H__
  16. #define __DFS_FAT_H__
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. int fatfs_init(void);
  21. #ifdef __cplusplus
  22. }
  23. #endif
  24. #endif