6e77c8bc4d33e7c7b6a0538ce6b31cd87f0a84dc
[platform/upstream/make.git] / w32 / include / dirent.h
1 /* Windows version of dirent.h
2 Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
3 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
4 This file is part of GNU Make.
5
6 GNU Make is free software; you can redistribute it and/or modify it under the
7 terms of the GNU General Public License as published by the Free Software
8 Foundation; either version 3 of the License, or (at your option) any later
9 version.
10
11 GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
13 A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License along with
16 this program.  If not, see <http://www.gnu.org/licenses/>.  */
17
18 #ifndef _DIRENT_H
19 #define _DIRENT_H
20
21 #ifdef __MINGW32__
22 # include <windows.h>
23 # include_next <dirent.h>
24 #else
25
26 #include <stdlib.h>
27 #include <windows.h>
28 #include <limits.h>
29 #include <sys/types.h>
30
31 #ifndef NAME_MAX
32 #define NAME_MAX 255
33 #endif
34
35 #define __DIRENT_COOKIE 0xfefeabab
36
37
38 struct dirent
39 {
40   ino_t d_ino;                  /* unused - no equivalent on WINDOWS32 */
41   char d_name[NAME_MAX+1];
42 };
43
44 typedef struct dir_struct {
45         ULONG   dir_ulCookie;
46         HANDLE  dir_hDirHandle;
47         DWORD   dir_nNumFiles;
48         char    dir_pDirectoryName[NAME_MAX+1];
49         struct dirent dir_sdReturn;
50 } DIR;
51
52 DIR *opendir(const char *);
53 struct dirent *readdir(DIR *);
54 void rewinddir(DIR *);
55 void closedir(DIR *);
56 int telldir(DIR *);
57 void seekdir(DIR *, long);
58
59 #endif  /* !__MINGW32__ */
60 #endif