17 #ifndef MBED_FILEBASE_H 18 #define MBED_FILEBASE_H 20 typedef int FILEHANDLE;
24 #if defined(__ARMCC_VERSION) || defined(__ICCARM__) 28 # define O_CREAT 0x0200 29 # define O_TRUNC 0x0400 30 # define O_APPEND 0x0008 39 # include <sys/fcntl.h> 40 # include <sys/types.h> 41 # include <sys/syslimits.h> 55 FileBase(
const char *name, PathType t);
59 const char* getName(
void);
60 PathType getPathType(
void);
62 static FileBase *lookup(
const char *name,
unsigned int len);
Definition: FileBase.h:53