From a5bfdcf416ae96486dd920a0c18e21678eb40428 Mon Sep 17 00:00:00 2001 From: Bill Zissimopoulos Date: Wed, 25 Jul 2018 13:31:42 -0700 Subject: [PATCH] README: add reference to FUSE3 --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6e07326e..a87f2cc6 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Some of the benefits of using WinFsp are listed below: * Very fast. Read about its [Performance](doc/WinFsp-Performance-Testing.asciidoc). * Strives for compatibility with NTFS. Read about its [Compatibility](doc/NTFS-Compatibility.asciidoc ). * Easy to understand but comprehensive API. Consult the [API Reference](http://www.secfs.net/winfsp/apiref/). There is also a simple [Tutorial](doc/WinFsp-Tutorial.asciidoc). -* FUSE compatibility layer for native Windows and Cygwin. See [fuse.h](inc/fuse/fuse.h). +* FUSE 2.8 and FUSE 3.2 compatibility layers for native Windows and Cygwin. See [fuse/fuse.h](inc/fuse/fuse.h) and [fuse3/fuse.h](inc/fuse3/fuse.h). * .NET layer for managed development. See [src/dotnet](src/dotnet). * Signed drivers provided on every release. * Available under the [GPLv3](License.txt) license with a special exception for Free/Libre and Open Source Software. @@ -35,9 +35,11 @@ The project source code is organized as follows: * `ext/tlib`: A small test library originally from the secfs (Secure Cloud File System) project. * `ext/test`: Submodule pointing to the secfs.test project, which contains a number of tools for testing Windows and POSIX file systems. * `inc/fuse`: Public headers for the FUSE compatibility layer. +* `inc/fuse3`: Public headers for the FUSE3 compatibility layer. * `inc/winfsp`: Public headers for the WinFsp API. * `src/dll`: Source code to the WinFsp DLL. * `src/dll/fuse`: Source code to the FUSE compatibility layer. +* `src/dll/fuse3`: Source code to the FUSE3 compatibility layer. * `src/dotnet`: Source code to the .NET layer. * `src/fsptool`: Source code to fsptool command line utility. * `src/launcher`: Source code to the launcher service and the launchctl utility.