Hello, Tomas:
Here is the documentation on how to do this:
https://github.com/billziss-gh/winfsp/wiki/WinFsp-Service-Architecture
The WinFsp distribution includes a batch file named fsreg.bat (found in \Program Files (x86)\WinFsp\bin) that can be used to create the necessary registry entries for you.
Bill
--
You received this message because you are subscribed to the Google Groups "WinFsp" group.
To unsubscribe from this group and stop receiving emails from it, send an email to
winfsp+un...@googlegroups.com.
To view this discussion on the web visit
https://groups.google.com/d/msgid/winfsp/09972469-bed4-4847-859c-d7266e160711%40googlegroups.com.
This is by design. The best way to use the WinFsp DLL is to delay load the DLL and load it at runtime using FspLoad.
First add the WinFsp DLL as a delay loaded DLL. Open the project properties and change the following setting:
Linker > Input > Delay Loaded Dll’s: winfsp-$(PlatformTarget).dll
Then add the following lines in your main/wmain:
if (!NT_SUCCESS(FspLoad(0)))
return ERROR_DELAY_LOAD_FAILED;
For more see this link:
https://github.com/billziss-gh/winfsp/wiki/WinFsp-Tutorial#create-the-project-skeleton
Bill
--
You received this message because you are subscribed to the Google Groups "WinFsp" group.
To unsubscribe from this group and stop receiving emails from it, send an email to
winfsp+un...@googlegroups.com.
To view this discussion on the web visit
https://groups.google.com/d/msgid/winfsp/2e7d7c90-8c9f-432a-b42e-630fd55c3ed1%40googlegroups.com.