gitextract_o7pwrk8z/ ├── .gitmodules ├── Contributors.asciidoc ├── License.txt ├── README.md ├── appveyor.yml ├── doc/ │ ├── component.puml │ ├── winseq.puml │ └── wslseq.puml ├── ext/ │ └── tlib/ │ ├── Commit.txt │ ├── callstack.c │ ├── callstack.h │ ├── injected/ │ │ ├── allfunc.h │ │ ├── curlfunc.c │ │ ├── curlfunc.h │ │ ├── stdfunc.c │ │ └── stdfunc.h │ ├── injection.c │ ├── injection.h │ ├── testsuite.c │ └── testsuite.h ├── src/ │ ├── fusermount/ │ │ ├── fusermount-helper.c │ │ ├── fusermount.c │ │ ├── install.sh │ │ └── uninstall.sh │ ├── shared/ │ │ ├── km/ │ │ │ ├── cache.c │ │ │ ├── context.c │ │ │ ├── coro.h │ │ │ ├── debug.c │ │ │ ├── errno.i │ │ │ ├── errnosym.i │ │ │ ├── file.c │ │ │ ├── fuseop.c │ │ │ ├── instance.c │ │ │ ├── ioq.c │ │ │ ├── path.c │ │ │ ├── proto.c │ │ │ ├── proto.h │ │ │ ├── shared.h │ │ │ └── util.c │ │ └── ku/ │ │ └── wslfuse.h │ ├── winfuse/ │ │ ├── device.c │ │ ├── driver.c │ │ ├── driver.h │ │ ├── driver.inf.in │ │ └── version.rc │ └── wslfuse/ │ ├── device.c │ ├── driver.c │ ├── driver.h │ ├── driver.inf.in │ └── version.rc ├── tools/ │ ├── DigiCert High Assurance EV Root CA.crt │ ├── build-libfuse.bat │ ├── build-lxdk.bat │ ├── build-sample.bat │ ├── build-winfsp.bat │ ├── build.bat │ ├── debug.bat │ ├── deploy.bat │ ├── deploy.ps1 │ ├── gensrc/ │ │ ├── errno.sh │ │ └── errno.txt │ ├── ioc.c │ ├── license-headers/ │ │ ├── fix.ps1 │ │ ├── header.c │ │ ├── header.cpp │ │ └── header.h │ ├── nmake-ext-test.bat │ └── run-tests.bat └── tst/ ├── lockdly/ │ └── lockdly.c ├── memfs-fuse3/ │ ├── .gitignore │ ├── compat.h │ ├── memfs-fuse3.cpp │ ├── memfs-fuse3.exe.vcxproj │ ├── memfs-fuse3.exe.vcxproj.filters │ ├── memfs-fuse3.out.vcxproj │ ├── memfs-fuse3.out.vcxproj.filters │ └── memfs-fuse3.sln ├── winfuse-tests/ │ ├── coro-test.c │ ├── path-test.c │ ├── transact-test.c │ └── winfuse-tests.c └── wslfuse-tests/ ├── mount-test.c └── wslfuse-tests.c