forked from KolibriOS/kolibrios
Adding menuetlibc back to its place in /programs/develop/libraries
This version of menuetlibc was taken from revision 4743, right before I made any changes git-svn-id: svn://kolibrios.org@4973 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
62
programs/develop/libraries/menuetlibc/include/dirent.h
Normal file
62
programs/develop/libraries/menuetlibc/include/dirent.h
Normal file
@@ -0,0 +1,62 @@
|
||||
/* 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_ */
|
Reference in New Issue
Block a user