diff options
Diffstat (limited to 'src/include/port/win32_msvc')
-rw-r--r-- | src/include/port/win32_msvc/dirent.h | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/src/include/port/win32_msvc/dirent.h b/src/include/port/win32_msvc/dirent.h index 42af9bd2197..e44a602c3b6 100644 --- a/src/include/port/win32_msvc/dirent.h +++ b/src/include/port/win32_msvc/dirent.h @@ -1,21 +1,21 @@ -/*
- * Headers for port/dirent.c, win32 native implementation of dirent functions
- *
- * $PostgreSQL: pgsql/src/include/port/win32_msvc/dirent.h,v 1.1 2006/06/07 22:24:45 momjian Exp $
- */
-
-#ifndef _WIN32VC_DIRENT_H
-#define _WIN32VC_DIRENT_H
-struct dirent {
- long d_ino;
- unsigned short d_reclen;
- unsigned short d_namlen;
- char d_name[MAX_PATH];
-};
-
-typedef struct DIR DIR;
-
-DIR* opendir(const char *);
-struct dirent* readdir(DIR *);
-int closedir(DIR*);
-#endif
+/* + * Headers for port/dirent.c, win32 native implementation of dirent functions + * + * $PostgreSQL: pgsql/src/include/port/win32_msvc/dirent.h,v 1.2 2006/06/26 12:59:44 momjian Exp $ + */ + +#ifndef _WIN32VC_DIRENT_H +#define _WIN32VC_DIRENT_H +struct dirent { + long d_ino; + unsigned short d_reclen; + unsigned short d_namlen; + char d_name[MAX_PATH]; +}; + +typedef struct DIR DIR; + +DIR* opendir(const char *); +struct dirent* readdir(DIR *); +int closedir(DIR*); +#endif |