mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 10:28:54 +00:00
33 lines
660 B
C
33 lines
660 B
C
|
|
/*
|
||
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
|
*
|
||
|
|
* Change Logs:
|
||
|
|
* Date Author Notes
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef DFS_PRIVATE_H__
|
||
|
|
#define DFS_PRIVATE_H__
|
||
|
|
|
||
|
|
#include <dfs.h>
|
||
|
|
|
||
|
|
#include "aic_common.h"
|
||
|
|
#include "aic_log.h"
|
||
|
|
|
||
|
|
#define DBG_TAG "DFS"
|
||
|
|
#define DBG_LVL DBG_INFO
|
||
|
|
|
||
|
|
#define NO_WORKING_DIR "system does not support working directory\n"
|
||
|
|
|
||
|
|
/* extern variable */
|
||
|
|
extern const struct dfs_filesystem_ops *filesystem_operation_table[];
|
||
|
|
extern struct dfs_filesystem filesystem_table[];
|
||
|
|
extern const struct dfs_mount_tbl mount_table[];
|
||
|
|
|
||
|
|
extern char working_directory[];
|
||
|
|
|
||
|
|
void rt_set_errno(int err);
|
||
|
|
|
||
|
|
#endif
|