This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/python | |
import os, sys | |
preload = 1 | |
for arg in sys.argv[1:]: | |
if "--all" == arg or "--almost-all" == arg: | |
preload = 0 | |
elif arg.startswith("-") and ("a" in arg or "A" in arg): | |
preload = 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Use the following function to delay load the WinFsp DLL | |
* directly from the WinFsp installation directory. | |
* | |
* You will also need to update your project settings: | |
* - Linker > Input > Delay Loaded DLL's: winfsp-$(PlatformTarget).dll | |
* | |
* Written by Bill Zissimopoulos, 2017. Released to the public domain. | |
*/ |