diff options
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/vfs.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/source3/smbd/vfs.c b/source3/smbd/vfs.c index 60320e6069..6d090a95de 100644 --- a/source3/smbd/vfs.c +++ b/source3/smbd/vfs.c @@ -36,6 +36,16 @@ static_decl_vfs; +struct vfs_fsp_data { + struct vfs_fsp_data *next; + struct vfs_handle_struct *owner; + void (*destroy)(void *p_data); + void *_dummy_; + /* NOTE: This structure contains four pointers so that we can guarantee + * that the end of the structure is always both 4-byte and 8-byte aligned. + */ +}; + struct vfs_init_function_entry { char *name; struct vfs_init_function_entry *prev, *next; |