xref: /PHP-7.2/win32/readdir.h (revision 020fdfd5)
1 #ifndef READDIR_H
2 #define READDIR_H
3 
4 
5 #ifdef __cplusplus
6 extern "C" {
7 #endif
8 
9 /*
10  * Structures and types used to implement opendir/readdir/closedir
11  * on Windows.
12  */
13 
14 #include <config.w32.h>
15 
16 #include "ioutil.h"
17 
18 #define php_readdir_r readdir_r
19 
20 /* struct dirent - same as Unix */
21 struct dirent {
22 	long d_ino;					/* inode (always 1 in WIN32) */
23 	off_t d_off;					/* offset to this dirent */
24 	unsigned short d_reclen;			/* length of d_name */
25 	unsigned short pad0;
26 #if defined(_WIN64)
27 	uint32_t pad1;
28 #endif
29 	char d_name[1];	/* null terminated filename in the current encoding, glyph number <= 255 wchar_t's + \0 byte */
30 };
31 
32 /* typedef DIR - not the same as Unix */
33 struct DIR_W32 {
34 	HANDLE handle;			/* _findfirst/_findnext handle */
35 	uint16_t offset;		/* offset into directory */
36 	uint8_t finished;		/* 1 if there are not more files */
37 	WIN32_FIND_DATAW fileinfo;	/* from _findfirst/_findnext */
38 	wchar_t *dirw;			/* the dir we are reading */
39 	struct dirent dent;		/* the dirent to return */
40 };
41 typedef struct DIR_W32 DIR;
42 
43 /* Function prototypes */
44 DIR *opendir(const char *);
45 struct dirent *readdir(DIR *);
46 int readdir_r(DIR *, struct dirent *, struct dirent **);
47 int closedir(DIR *);
48 int rewinddir(DIR *);
49 
50 #ifdef __cplusplus
51 }
52 #endif
53 
54 #endif /* READDIR_H */
55 
56 /*
57  * Local variables:
58  * tab-width: 4
59  * c-basic-offset: 4
60  * End:
61  * vim600: sw=4 ts=4 fdm=marker
62  * vim<600: sw=4 ts=4
63  */
64