Changeset 7f0c08c in mainline
- Timestamp:
- 2011-08-14T07:05:35Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f3d4cd35
- Parents:
- e090244c
- Location:
- uspace/srv/fs/exfat
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/exfat/exfat_directory.c
re090244c r7f0c08c 227 227 } 228 228 229 int exfat_directory_write_file(exfat_directory_t *di, const char *name) 230 { 231 /* TODO */ 232 return EOK; 233 } 234 235 int exfat_directory_erase_file(exfat_directory_t *di, aoff64_t pos) 236 { 237 /* TODO */ 238 return EOK; 239 } 240 229 241 230 242 /** -
uspace/srv/fs/exfat/exfat_directory.h
re090244c r7f0c08c 65 65 extern int exfat_directory_read_file(exfat_directory_t *di, char *name, 66 66 size_t size, exfat_file_dentry_t *df, exfat_stream_dentry_t *ds); 67 extern int exfat_directory_write_file(exfat_directory_t *di, const char *name); 68 extern int exfat_directory_erase_file(exfat_directory_t *di, aoff64_t pos); 67 69 68 70 /* 69 71 extern int exfat_directory_expand(exfat_directory_t *di); 70 72 extern int exfat_directory_lookup_free(exfat_directory_t *di, size_t count); 71 73 */ 72 74 73 75 #endif
Note:
See TracChangeset
for help on using the changeset viewer.