summaryrefslogtreecommitdiff
path: root/apps/fileutils.h
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2006-10-03 11:24:55 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2006-10-03 11:24:55 +0000
commit2d1ff6cc27446511b856ef9f50b09c644bcbb08e (patch)
treebe009d23081990d5b45b8c845073f051d2955b15 /apps/fileutils.h
parent7ae8e44c9556daa07813a3bfd1ace6b0fb0a2aa8 (diff)
downloadrockbox-2d1ff6cc27446511b856ef9f50b09c644bcbb08e.zip
rockbox-2d1ff6cc27446511b856ef9f50b09c644bcbb08e.tar.gz
rockbox-2d1ff6cc27446511b856ef9f50b09c644bcbb08e.tar.bz2
rockbox-2d1ff6cc27446511b856ef9f50b09c644bcbb08e.tar.xz
oops, these two files shouldnt have been commited.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11115 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/fileutils.h')
-rw-r--r--apps/fileutils.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/apps/fileutils.h b/apps/fileutils.h
deleted file mode 100644
index 4377c14..0000000
--- a/apps/fileutils.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/***************************************************************************
- * __________ __ ___.
- * Open \______ \ ____ ____ | | _\_ |__ _______ ___
- * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
- * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
- * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
- * \/ \/ \/ \/ \/
- * $Id$
- *
- * Copyright (C) 2006 Jonathan Gordon
- *
- * All files in this archive are subject to the GNU General Public License.
- * See the file COPYING in the source tree root for full license agreement.
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
- * KIND, either express or implied.
- *
- ****************************************************************************/
-
-#ifndef _FILEUTILS_H_
-#define _FILEUTILS_H_
-
-enum {
- DIRWALKER_ERROR = -1,
- DIRWALKER_OK = 0,
- DIRWALKER_IGNORE, /* only valid from folder callback */
- DIRWALKER_LEAVEDIR, /* only valid from file callback */
- DIRWALKER_QUIT
-};
-
-enum {
- DIRWALKER_RETURN_ERROR = -1,
- DIRWALKER_RETURN_SUCCESS,
- DIRWALKER_RETURN_FORCED
-};
-
-int dirwalker(const char *start_dir, bool recurse, bool is_forward,
- int (*folder_callback)(const char* dir, void *param),void* folder_param,
- int (*file_callback)(const char* folder,const char* file,
- const int file_attr,void *param),void* file_param);
-
-#endif /* _FILEUTILS_H_ */