dfs_private.h 604 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * Copyright (c) 2006-2021, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. */
  9. #ifndef DFS_PRIVATE_H__
  10. #define DFS_PRIVATE_H__
  11. #include <dfs.h>
  12. #define DBG_TAG "DFS"
  13. #define DBG_LVL DBG_INFO
  14. #include <rtdbg.h>
  15. #define NO_WORKING_DIR "system does not support working directory\n"
  16. /* extern variable */
  17. extern const struct dfs_filesystem_ops *filesystem_operation_table[];
  18. extern struct dfs_filesystem filesystem_table[];
  19. extern const struct dfs_mount_tbl mount_table[];
  20. extern char working_directory[];
  21. #endif