1 /* 2 * Copyright (c) 2006-2018, RT-Thread Development Team 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 * 6 * Change Logs: 7 * Date Author Notes 8 */ 9 10 #ifndef DFS_PRIVATE_H__ 11 #define DFS_PRIVATE_H__ 12 13 #include <dfs.h> 14 15 // #define DBG_ENABLE 16 #define DBG_SECTION_NAME "DFS" 17 #define DBG_COLOR 18 #define DBG_LEVEL DBG_LOG 19 #include <rtdbg.h> 20 21 #define NO_WORKING_DIR "system does not support working directory\n" 22 23 /* extern variable */ 24 extern const struct dfs_filesystem_ops *filesystem_operation_table[]; 25 extern struct dfs_filesystem filesystem_table[]; 26 extern const struct dfs_mount_tbl mount_table[]; 27 28 extern char working_directory[]; 29 30 #endif 31