diff options
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/fileio.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/source3/smbd/fileio.c b/source3/smbd/fileio.c index 8bdb66bcfe..991cb4783d 100644 --- a/source3/smbd/fileio.c +++ b/source3/smbd/fileio.c @@ -25,6 +25,14 @@ #include "smbd/globals.h" #include "smbprofile.h" +typedef struct write_cache { + off_t file_size; + off_t offset; + size_t alloc_size; + size_t data_size; + char *data; +} write_cache; + static bool setup_write_cache(files_struct *, off_t); /**************************************************************************** |