diff options
author | Roland McGrath <roland@redhat.com> | 1996-07-19 21:41:07 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1996-07-19 21:41:07 +0000 |
commit | fc47a2c83c4b6c6d47f3c73fd3879fc92eb9c4b3 (patch) | |
tree | aee171b39ecfd5ba9ed6b747291cb2a802d5894f /w32/include/dirent.h | |
parent | 561b3843134b03629384a73cdc2a2e5242fd39ed (diff) | |
download | gunmake-fc47a2c83c4b6c6d47f3c73fd3879fc92eb9c4b3.tar.gz |
updated w32 code by tulloh
Diffstat (limited to 'w32/include/dirent.h')
-rw-r--r-- | w32/include/dirent.h | 74 |
1 files changed, 37 insertions, 37 deletions
diff --git a/w32/include/dirent.h b/w32/include/dirent.h index 6bb7fbd..ccc1800 100644 --- a/w32/include/dirent.h +++ b/w32/include/dirent.h @@ -1,37 +1,37 @@ -#ifndef _DIRENT_H -#define _DIRENT_H - -#include <stdlib.h> -#include <windows.h> -#include <limits.h> -#include <sys/types.h> - -#ifndef NAME_MAX -#define NAME_MAX 255 -#endif - -#define __DIRENT_COOKIE 0xfefeabab - - -struct dirent -{ - ino_t d_ino; /* unused - no equivalent on WIN32 */ - char d_name[NAME_MAX+1]; -}; - -typedef struct dir_struct { - ULONG dir_ulCookie; - HANDLE dir_hDirHandle; - DWORD dir_nNumFiles; - char dir_pDirectoryName[NAME_MAX+1]; - struct dirent dir_sdReturn; -} DIR; - -DIR *opendir(const char *); -struct dirent *readdir(DIR *); -void rewinddir(DIR *); -void closedir(DIR *); -int telldir(DIR *); -void seekdir(DIR *, long); - -#endif +#ifndef _DIRENT_H
+#define _DIRENT_H
+
+#include <stdlib.h>
+#include <windows.h>
+#include <limits.h>
+#include <sys/types.h>
+
+#ifndef NAME_MAX
+#define NAME_MAX 255
+#endif
+
+#define __DIRENT_COOKIE 0xfefeabab
+
+
+struct dirent
+{
+ ino_t d_ino; /* unused - no equivalent on WIN32 */
+ char d_name[NAME_MAX+1];
+};
+
+typedef struct dir_struct {
+ ULONG dir_ulCookie;
+ HANDLE dir_hDirHandle;
+ DWORD dir_nNumFiles;
+ char dir_pDirectoryName[NAME_MAX+1];
+ struct dirent dir_sdReturn;
+} DIR;
+
+DIR *opendir(const char *);
+struct dirent *readdir(DIR *);
+void rewinddir(DIR *);
+void closedir(DIR *);
+int telldir(DIR *);
+void seekdir(DIR *, long);
+
+#endif
|