12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #include "mbed.h"
- #include "FileSystemHandle.h"
- #include <errno.h>
- int FileSystemHandle::open(DirHandle **dir, const char *path)
- {
- return -ENOSYS;
- }
- int FileSystemHandle::remove(const char *path)
- {
- return -ENOSYS;
- }
- int FileSystemHandle::rename(const char *path, const char *newpath)
- {
- return -ENOSYS;
- }
- int FileSystemHandle::stat(const char *path, struct stat *st)
- {
- return -ENOSYS;
- }
- int FileSystemHandle::mkdir(const char *path, mode_t mode)
- {
- return -ENOSYS;
- }
- int FileSystemHandle::statvfs(const char *path, struct statvfs *buf)
- {
- return -ENOSYS;
- }
|