summaryrefslogtreecommitdiff
path: root/firmware/include/dir.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-02-18 13:47:17 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-02-18 13:47:17 +0000
commitcdde25b597eb4047e9db27bb8bbcf938e4a43cfe (patch)
treed25f47817cc8515228c8ea0eb33ab71bfc2159d4 /firmware/include/dir.h
parentf436476f9f0eeae4640197866ea5b5fa068df7e9 (diff)
downloadrockbox-cdde25b597eb4047e9db27bb8bbcf938e4a43cfe.tar.gz
rockbox-cdde25b597eb4047e9db27bb8bbcf938e4a43cfe.zip
Unified build system to use SOURCES for sim builds too, a single Makefile-look
made by configure and various related adjustments. This has not yet been tested on cygwin. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6001 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/include/dir.h')
-rw-r--r--firmware/include/dir.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/include/dir.h b/firmware/include/dir.h
index 8dcbb8e900..12ec724692 100644
--- a/firmware/include/dir.h
+++ b/firmware/include/dir.h
@@ -22,8 +22,6 @@
22#include <stdbool.h> 22#include <stdbool.h>
23#include <file.h> 23#include <file.h>
24 24
25#ifndef DIRENT_DEFINED
26
27#define ATTR_READ_ONLY 0x01 25#define ATTR_READ_ONLY 0x01
28#define ATTR_HIDDEN 0x02 26#define ATTR_HIDDEN 0x02
29#define ATTR_SYSTEM 0x04 27#define ATTR_SYSTEM 0x04
@@ -32,6 +30,8 @@
32#define ATTR_ARCHIVE 0x20 30#define ATTR_ARCHIVE 0x20
33#define ATTR_VOLUME 0x40 /* this is a volume, not a real directory */ 31#define ATTR_VOLUME 0x40 /* this is a volume, not a real directory */
34 32
33#ifndef DIRENT_DEFINED
34
35struct dirent { 35struct dirent {
36 unsigned char d_name[MAX_PATH]; 36 unsigned char d_name[MAX_PATH];
37 int attribute; 37 int attribute;