forked from KolibriOS/kolibrios
4f5f25a6c2
git-svn-id: svn://kolibrios.org@1882 a494cfbc-eb01-0410-851d-a64ba20cac60
63 lines
1.5 KiB
C
Executable File
63 lines
1.5 KiB
C
Executable File
/* Copyright (C) 1998 DJ Delorie, see COPYING.DJ for details */
|
|
/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
|
|
#ifndef __dj_include_dirent_h_
|
|
#define __dj_include_dirent_h_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifndef __dj_ENFORCE_ANSI_FREESTANDING
|
|
|
|
#ifndef __STRICT_ANSI__
|
|
|
|
/* Definition of DIR requires many other headers; not included here to
|
|
avoid namespace pollution. */
|
|
//typedef struct __dj_DIR DIR;
|
|
#include <menuet/os.h>
|
|
|
|
struct dirent {
|
|
char d_namlen;
|
|
char d_name[256];
|
|
};
|
|
|
|
typedef struct
|
|
{
|
|
struct systree_info2 fileinfo;
|
|
struct dirent entry;
|
|
__u8 bdfeheader[0x20];
|
|
struct bdfe_item bdfebase;
|
|
__u8 bdfename[264];
|
|
} DIR;
|
|
|
|
int closedir(DIR *dirp);
|
|
DIR * opendir(const char *_dirname);
|
|
struct dirent * readdir(DIR *_dirp);
|
|
//void rewinddir(DIR *_dirp);
|
|
|
|
#ifndef _POSIX_SOURCE
|
|
|
|
extern int __opendir_flags; /* default is zero, used only by opendir */
|
|
#define __OPENDIR_PRESERVE_CASE 0001
|
|
#define __OPENDIR_FIND_HIDDEN 0002 /* ignored; on by default */
|
|
#define __OPENDIR_FIND_LABEL 0004
|
|
#define __OPENDIR_NO_HIDDEN 0x08 /* NOT 0002 for back-compatibility */
|
|
|
|
void seekdir(DIR *_dir, long _loc);
|
|
long telldir(DIR *_dir);
|
|
void __set_need_fake_dot_dotdot(DIR *_dir);
|
|
void _lfn_find_close(int _handle);
|
|
|
|
#endif /* !_POSIX_SOURCE */
|
|
#endif /* !__STRICT_ANSI__ */
|
|
#endif /* !__dj_ENFORCE_ANSI_FREESTANDING */
|
|
|
|
#ifndef __dj_ENFORCE_FUNCTION_CALLS
|
|
#endif /* !__dj_ENFORCE_FUNCTION_CALLS */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* !__dj_include_dirent_h_ */
|