12 lines
188 B
C
12 lines
188 B
C
#ifndef _FS_H_
|
|
#define _FS_H_
|
|
|
|
struct FileInfo {
|
|
unsigned char name[8], ext[3], type;
|
|
char reserve[10];
|
|
unsigned short time, date, clsutno;
|
|
unsigned int size;
|
|
};
|
|
|
|
#endif // _FS_H_
|