Fork of Adam Green's library with .cpp fix for current compiler

Dependents:   MSCUsbHost mpod_nhk_english mpod_picasa_photoframe mpod_nhk_english_spxml ... more

Fork of FatFileSystem by Adam Green

Committer:
igorsk
Date:
Mon Jul 30 13:45:05 2012 +0000
Revision:
1:88f22c32a456
Parent:
0:6ceefe1c53e4
renamed .c to .cpp

Who changed what in which revision?

UserRevisionLine numberNew contents of line
AdamGreen 0:6ceefe1c53e4 1 /* mbed Microcontroller Library - FATDirHandle
AdamGreen 0:6ceefe1c53e4 2 * Copyright (c) 2008, sford
AdamGreen 0:6ceefe1c53e4 3 */
AdamGreen 0:6ceefe1c53e4 4
AdamGreen 0:6ceefe1c53e4 5 #ifndef MBED_FATDIRHANDLE_H
AdamGreen 0:6ceefe1c53e4 6 #define MBED_FATDIRHANDLE_H
AdamGreen 0:6ceefe1c53e4 7
AdamGreen 0:6ceefe1c53e4 8 #include "DirHandle.h"
AdamGreen 0:6ceefe1c53e4 9 #include "ff.h"
AdamGreen 0:6ceefe1c53e4 10
AdamGreen 0:6ceefe1c53e4 11 namespace mbed {
AdamGreen 0:6ceefe1c53e4 12
AdamGreen 0:6ceefe1c53e4 13 class FATDirHandle : public DirHandle {
AdamGreen 0:6ceefe1c53e4 14
AdamGreen 0:6ceefe1c53e4 15 public:
AdamGreen 0:6ceefe1c53e4 16 FATDirHandle(const FATFS_DIR &the_dir);
AdamGreen 0:6ceefe1c53e4 17 virtual int closedir();
AdamGreen 0:6ceefe1c53e4 18 virtual struct dirent *readdir();
AdamGreen 0:6ceefe1c53e4 19 virtual void rewinddir();
AdamGreen 0:6ceefe1c53e4 20 virtual off_t telldir();
AdamGreen 0:6ceefe1c53e4 21 virtual void seekdir(off_t location);
AdamGreen 0:6ceefe1c53e4 22
AdamGreen 0:6ceefe1c53e4 23 private:
AdamGreen 0:6ceefe1c53e4 24 FATFS_DIR dir;
AdamGreen 0:6ceefe1c53e4 25 struct dirent cur_entry;
AdamGreen 0:6ceefe1c53e4 26
AdamGreen 0:6ceefe1c53e4 27 };
AdamGreen 0:6ceefe1c53e4 28
AdamGreen 0:6ceefe1c53e4 29 }
AdamGreen 0:6ceefe1c53e4 30
AdamGreen 0:6ceefe1c53e4 31 #endif