summaryrefslogtreecommitdiff
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 3dd670bef0..183d9efc4a 100644
--- a/win32/dir.h
+++ b/win32/dir.h
@@ -10,13 +10,17 @@ struct direct
long d_namlen;
ino_t d_ino;
char d_name[256];
+ char d_isdir; /* directory */
+ char d_isrep; /* reparse point */
};
typedef struct {
char *start;
char *curr;
long size;
long nfiles;
+ long loc; /* [0, nfiles) */
struct direct dirstr;
+ char *bits; /* used for d_isdir and d_isrep */
} DIR;