dll: fuseintf: CanDelete implementation

This commit is contained in:
Bill Zissimopoulos
2016-06-10 18:42:18 -07:00
parent 55336e3dcf
commit a4f687c635
2 changed files with 55 additions and 13 deletions

View File

@ -55,6 +55,18 @@ struct fsp_fuse_file_desc
ULONG DirBufferSize;
};
struct fuse_dirhandle
{
FSP_FILE_SYSTEM *FileSystem;
char *PosixPath, *PosixName;
PVOID OriginalBuffer;
ULONG OriginalLength;
PVOID Buffer;
ULONG Length;
ULONG BytesTransferred;
BOOLEAN HasChild;
};
static inline
struct fsp_fuse_context_header *fsp_fuse_context_header(VOID)
{