summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/common/dir.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/firmware/common/dir.h b/firmware/common/dir.h
index 2aa248579e..7f37d08cf5 100644
--- a/firmware/common/dir.h
+++ b/firmware/common/dir.h
@@ -21,6 +21,13 @@
21 21
22#ifndef DIRENT_DEFINED 22#ifndef DIRENT_DEFINED
23 23
24#define ATTR_READ_ONLY 0x01
25#define ATTR_HIDDEN 0x02
26#define ATTR_SYSTEM 0x04
27#define ATTR_VOLUME_ID 0x08
28#define ATTR_DIRECTORY 0x10
29#define ATTR_ARCHIVE 0x20
30
24struct dirent { 31struct dirent {
25 unsigned char d_name[256]; 32 unsigned char d_name[256];
26 int attribute; 33 int attribute;