README: add reference to FUSE3

This commit is contained in:
Bill Zissimopoulos 2018-07-25 13:31:42 -07:00
parent b609435dad
commit a5bfdcf416
No known key found for this signature in database
GPG Key ID: 3D4F95D52C7B3EA3

View File

@ -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.