2002-04-27 23:31:23 +00:00
|
|
|
|
/***************************************************************************
|
|
|
|
|
* __________ __ ___.
|
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
|
* $Id$
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2002 by Bj<EFBFBD>rn Stenberg
|
|
|
|
|
*
|
|
|
|
|
* 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 _DIR_H_
|
|
|
|
|
#define _DIR_H_
|
|
|
|
|
|
2002-05-27 09:13:24 +00:00
|
|
|
|
#include <stdbool.h>
|
2003-02-14 23:38:21 +00:00
|
|
|
|
#include <file.h>
|
2002-05-27 09:13:24 +00:00
|
|
|
|
|
2002-04-30 13:18:59 +00:00
|
|
|
|
#ifndef DIRENT_DEFINED
|
|
|
|
|
|
2002-05-06 14:19:10 +00:00
|
|
|
|
#define ATTR_READ_ONLY 0x01
|
|
|
|
|
#define ATTR_HIDDEN 0x02
|
|
|
|
|
#define ATTR_SYSTEM 0x04
|
|
|
|
|
#define ATTR_VOLUME_ID 0x08
|
|
|
|
|
#define ATTR_DIRECTORY 0x10
|
|
|
|
|
#define ATTR_ARCHIVE 0x20
|
|
|
|
|
|
2002-04-27 23:31:23 +00:00
|
|
|
|
struct dirent {
|
2002-07-15 22:58:28 +00:00
|
|
|
|
unsigned char d_name[MAX_PATH];
|
2002-04-28 19:14:17 +00:00
|
|
|
|
int attribute;
|
|
|
|
|
int size;
|
2002-05-07 16:01:53 +00:00
|
|
|
|
int startcluster;
|
2002-04-27 23:31:23 +00:00
|
|
|
|
};
|
2002-04-30 13:18:59 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2002-04-27 23:31:23 +00:00
|
|
|
|
|
2002-04-28 19:29:57 +00:00
|
|
|
|
#ifndef SIMULATOR
|
2002-05-03 15:36:52 +00:00
|
|
|
|
|
|
|
|
|
#include "fat.h"
|
|
|
|
|
|
2002-04-28 19:29:57 +00:00
|
|
|
|
typedef struct {
|
2002-05-27 09:13:24 +00:00
|
|
|
|
bool busy;
|
2002-05-03 15:36:52 +00:00
|
|
|
|
int startcluster;
|
|
|
|
|
struct fat_dir fatdir;
|
2002-05-27 09:13:24 +00:00
|
|
|
|
struct dirent theent;
|
2002-04-28 19:29:57 +00:00
|
|
|
|
} DIR;
|
2002-05-03 15:36:52 +00:00
|
|
|
|
|
2003-02-26 21:39:13 +00:00
|
|
|
|
#else /* SIMULATOR */
|
2002-05-03 15:36:52 +00:00
|
|
|
|
|
2002-08-02 12:32:26 +00:00
|
|
|
|
#ifdef WIN32
|
|
|
|
|
#ifndef __MINGW32__
|
2002-04-30 21:16:22 +00:00
|
|
|
|
#include <io.h>
|
2002-08-02 12:32:26 +00:00
|
|
|
|
#endif /* __MINGW32__ */
|
|
|
|
|
|
2002-04-28 19:29:57 +00:00
|
|
|
|
typedef struct DIRtag
|
|
|
|
|
{
|
|
|
|
|
struct dirent fd;
|
2002-06-12 15:41:45 +00:00
|
|
|
|
int handle;
|
2002-04-28 19:29:57 +00:00
|
|
|
|
} DIR;
|
2002-08-02 12:32:26 +00:00
|
|
|
|
|
|
|
|
|
#endif /* WIN32 */
|
|
|
|
|
|
2003-02-26 21:39:13 +00:00
|
|
|
|
#endif /* SIMULATOR */
|
2002-04-28 19:29:57 +00:00
|
|
|
|
|
2002-05-07 11:36:32 +00:00
|
|
|
|
#ifndef DIRFUNCTIONS_DEFINED
|
|
|
|
|
|
2002-04-27 23:31:23 +00:00
|
|
|
|
extern DIR* opendir(char* name);
|
2002-04-27 23:34:31 +00:00
|
|
|
|
extern int closedir(DIR* dir);
|
2004-01-21 14:58:40 +00:00
|
|
|
|
extern int mkdir(char* name, int mode);
|
2002-04-27 23:34:31 +00:00
|
|
|
|
|
2002-04-27 23:31:23 +00:00
|
|
|
|
extern struct dirent* readdir(DIR* dir);
|
|
|
|
|
|
2002-05-07 11:36:32 +00:00
|
|
|
|
#endif /* DIRFUNCTIONS_DEFINED */
|
|
|
|
|
|
2002-04-27 23:31:23 +00:00
|
|
|
|
#endif
|