summaryrefslogtreecommitdiff
path: root/apps/fileutils.h
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2006-10-03 10:38:27 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2006-10-03 10:38:27 +0000
commit7ae8e44c9556daa07813a3bfd1ace6b0fb0a2aa8 (patch)
tree3ab6dcbeecc43379a776f07e671e03057d7d56e7 /apps/fileutils.h
parentf5452c0bded3147dfc91dc89580e65a879bc50e8 (diff)
downloadrockbox-7ae8e44c9556daa07813a3bfd1ace6b0fb0a2aa8.tar.gz
rockbox-7ae8e44c9556daa07813a3bfd1ace6b0fb0a2aa8.zip
add some consistancy to the path #defines
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11114 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/fileutils.h')
-rw-r--r--apps/fileutils.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/apps/fileutils.h b/apps/fileutils.h
new file mode 100644
index 0000000000..4377c1436c
--- /dev/null
+++ b/apps/fileutils.h
@@ -0,0 +1,42 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2006 Jonathan Gordon
11 *
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19
20#ifndef _FILEUTILS_H_
21#define _FILEUTILS_H_
22
23enum {
24 DIRWALKER_ERROR = -1,
25 DIRWALKER_OK = 0,
26 DIRWALKER_IGNORE, /* only valid from folder callback */
27 DIRWALKER_LEAVEDIR, /* only valid from file callback */
28 DIRWALKER_QUIT
29};
30
31enum {
32 DIRWALKER_RETURN_ERROR = -1,
33 DIRWALKER_RETURN_SUCCESS,
34 DIRWALKER_RETURN_FORCED
35};
36
37int dirwalker(const char *start_dir, bool recurse, bool is_forward,
38 int (*folder_callback)(const char* dir, void *param),void* folder_param,
39 int (*file_callback)(const char* folder,const char* file,
40 const int file_attr,void *param),void* file_param);
41
42#endif /* _FILEUTILS_H_ */