diff options
Diffstat (limited to 'source3/include/vfs.h')
-rw-r--r-- | source3/include/vfs.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/source3/include/vfs.h b/source3/include/vfs.h index 069e56ff03..bfed01bc64 100644 --- a/source3/include/vfs.h +++ b/source3/include/vfs.h @@ -249,6 +249,16 @@ typedef struct files_struct { } files_struct; +/* + * Info about an alternate data stream + */ + +struct stream_struct { + off_t size; + off_t alloc_size; + char *name; +}; + #define VFS_FIND(__fn__) while (handle->fns->__fn__##_fn==NULL) { \ handle = handle->next; \ } |