This function can convert the path in rt-thread/dfs to the path in windows */
| 138 | |
| 139 | /* This function can convert the path in rt-thread/dfs to the path in windows */ |
| 140 | char * dfs_win32_dirdup(char * path) |
| 141 | { |
| 142 | char * file_path; |
| 143 | file_path = winpath_dirdup(WIN32_DIRDISK_ROOT, path); |
| 144 | return file_path; |
| 145 | } |
| 146 | |
| 147 | static int dfs_win32_open(struct dfs_file *file) |
| 148 | { |
no test coverage detected