summaryrefslogtreecommitdiff
path: root/dirCacheP.h
diff options
context:
space:
mode:
Diffstat (limited to 'dirCacheP.h')
-rw-r--r--dirCacheP.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/dirCacheP.h b/dirCacheP.h
new file mode 100644
index 0000000..1857ee4
--- /dev/null
+++ b/dirCacheP.h
@@ -0,0 +1,14 @@
+#ifndef DIRCACHEP_H
+#define DIRCACHEP_H
+
+struct dirCacheEntry_t {
+ dirCacheEntryType_t type;
+ unsigned int beginSlot;
+ unsigned int endSlot;
+ wchar_t *shortName;
+ wchar_t *longName;
+ struct directory dir;
+ int endMarkPos;
+} ;
+
+#endif /* DIRCACHEP_H */