diff options
| author | Jörg Hohensohn <hohensoh@rockbox.org> | 2005-01-28 21:32:16 +0000 |
|---|---|---|
| committer | Jörg Hohensohn <hohensoh@rockbox.org> | 2005-01-28 21:32:16 +0000 |
| commit | dc7534bdb2a784ae9d5c9089237935ff405c3525 (patch) | |
| tree | e12e3eab71cbd72605d661ea026c70127d633cb3 /firmware/include | |
| parent | 3662ad2ae3a9fb5ec5a7295bb606524e642bb840 (diff) | |
| download | rockbox-dc7534bdb2a784ae9d5c9089237935ff405c3525.zip rockbox-dc7534bdb2a784ae9d5c9089237935ff405c3525.tar.gz rockbox-dc7534bdb2a784ae9d5c9089237935ff405c3525.tar.bz2 rockbox-dc7534bdb2a784ae9d5c9089237935ff405c3525.tar.xz | |
preparations for hotswapping MMC
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5701 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/include')
| -rw-r--r-- | firmware/include/dir.h | 2 | ||||
| -rw-r--r-- | firmware/include/file.h | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/firmware/include/dir.h b/firmware/include/dir.h index 5c157e4..8dcbb8e 100644 --- a/firmware/include/dir.h +++ b/firmware/include/dir.h @@ -84,6 +84,8 @@ extern int rmdir(const char* name); extern struct dirent* readdir(DIR* dir); +extern int release_dirs(int volume); + #endif /* DIRFUNCTIONS_DEFINED */ #endif diff --git a/firmware/include/file.h b/firmware/include/file.h index e76abaa..387c34c 100644 --- a/firmware/include/file.h +++ b/firmware/include/file.h @@ -87,6 +87,7 @@ extern int remove(const char* pathname); extern int rename(const char* path, const char* newname); extern int ftruncate(int fd, off_t length); extern off_t filesize(int fd); +extern int release_files(int volume); #endif /* SIMULATOR */ #endif |