summaryrefslogtreecommitdiff
path: root/win32/readdir.h
diff options
context:
space:
mode:
Diffstat (limited to 'win32/readdir.h')
-rw-r--r--win32/readdir.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/win32/readdir.h b/win32/readdir.h
index 419dc95c24..139bc7bb70 100644
--- a/win32/readdir.h
+++ b/win32/readdir.h
@@ -7,11 +7,15 @@
* on Windows 95/NT.
*/
+#define _WIN32_WINNT 0x0400
+
+#include <windows.h>
+
#include <io.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
-
+#include <direct.h>
/* struct dirent - same as Unix */
@@ -25,10 +29,10 @@ struct dirent {
/* typedef DIR - not the same as Unix */
typedef struct {
- long handle; /* _findfirst/_findnext handle */
+ HANDLE 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 */
+ WIN32_FIND_DATA fileinfo; /* from _findfirst/_findnext */
char *dir; /* the dir we are reading */
struct dirent dent; /* the dirent to return */
} DIR;