You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
2.9 KiB
94 lines
2.9 KiB
/* This file is part of the KDE project
|
|
Copyright (C) 2000 Werner Almesberger
|
|
|
|
libc/sys/linux/sys/dirent.h - Directory entry as returned by readdir
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
along with this program; see the file COPYING. If not, write to
|
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef _SYS_DIRENT_H
|
|
#define _SYS_DIRENT_H
|
|
|
|
#include <tdecore/tdelibs_export.h>
|
|
|
|
#include <sys/types.h>
|
|
#include <io.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/lock.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define HAVE_NO_D_NAMLEN /* no struct dirent->d_namlen */
|
|
#define HAVE_DD_LOCK /* have locking mechanism */
|
|
|
|
#define MAXNAMLEN 255 /* sizeof(struct dirent.d_name)-1 */
|
|
|
|
#define __dirfd(dir) (dir)->dd_fd
|
|
|
|
/* struct dirent - same as Unix */
|
|
struct dirent {
|
|
long d_ino; /* inode (always 1 in WIN32) */
|
|
off_t d_off; /* offset to this dirent */
|
|
unsigned short d_reclen; /* length of d_name */
|
|
char d_name[_MAX_FNAME+1]; /* filename (null terminated) */
|
|
};
|
|
|
|
/* typedef DIR - not the same as Unix */
|
|
typedef struct {
|
|
long handle; /* _findfirst/_findnext handle */
|
|
short offset; /* offset into directory */
|
|
short finished; /* 1 if there are not more files */
|
|
struct _finddata_t fileinfo; /* from _findfirst/_findnext */
|
|
char *dir; /* the dir we are reading */
|
|
struct dirent dent; /* the dirent to return */
|
|
} DIR;
|
|
|
|
/* --- redundant --- */
|
|
|
|
//DIR *opendir(const char *);
|
|
//struct dirent *readdir(DIR *);
|
|
//void rewinddir(DIR *);
|
|
//int closedir(DIR *);
|
|
|
|
/* internal prototype */
|
|
void _seekdir(DIR *dir,off_t offset);
|
|
|
|
//#ifndef _POSIX_SOURCE
|
|
//long telldir (DIR *);
|
|
//void seekdir (DIR *, off_t loc);
|
|
|
|
KDEWIN32_EXPORT int scandir (const char *__dir,
|
|
struct dirent ***__namelist,
|
|
int (*select) (const struct dirent *),
|
|
int (*compar) (const struct dirent **, const struct dirent **));
|
|
|
|
KDEWIN32_EXPORT DIR * opendir(const char *);
|
|
KDEWIN32_EXPORT int closedir(DIR *);
|
|
KDEWIN32_EXPORT struct dirent* readdir(DIR *);
|
|
KDEWIN32_EXPORT struct dirent* readdir_r(DIR *dirp, struct dirent *entry, struct dirent **result);
|
|
|
|
int alphasort (const struct dirent **__a, const struct dirent **__b);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|