aboutsummaryrefslogtreecommitdiffstats
path: root/win32/dir.h
diff options
context:
space:
mode:
Diffstat (limited to 'win32/dir.h')
-rw-r--r--win32/dir.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/win32/dir.h b/win32/dir.h
index fdea6393c8..8345e346b3 100644
--- a/win32/dir.h
+++ b/win32/dir.h
@@ -10,6 +10,8 @@ struct direct
long d_namlen;
ino_t d_ino;
char d_name[256];
+ char d_isdir; /* directory */
+ char d_isrep; /* reparse point */
char d_isdir;
};
typedef struct {
@@ -17,6 +19,8 @@ typedef struct {
char *curr;
long size;
long nfiles;
+ char *bits; /* used for d_isdir and d_isrep */
+ long bitpos; /* used for d_isdir and d_isrep */
struct direct dirstr;
char *bits;
long bitpos;