summaryrefslogtreecommitdiff
path: root/source4/ntvfs/simple/svfs.h
diff options
context:
space:
mode:
Diffstat (limited to 'source4/ntvfs/simple/svfs.h')
-rw-r--r--source4/ntvfs/simple/svfs.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/source4/ntvfs/simple/svfs.h b/source4/ntvfs/simple/svfs.h
index e74fd07fce..6e44d290da 100644
--- a/source4/ntvfs/simple/svfs.h
+++ b/source4/ntvfs/simple/svfs.h
@@ -8,6 +8,8 @@ struct svfs_private {
/* next available search handle */
uint16 next_search_handle;
+
+ struct svfs_file *open_files;
};
struct svfs_dir {
@@ -19,6 +21,12 @@ struct svfs_dir {
} *files;
};
+struct svfs_file {
+ struct svfs_file *next, *prev;
+ int fd;
+ char *name;
+};
+
struct search_state {
struct search_state *next, *prev;
TALLOC_CTX *mem_ctx;