├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── detect.c ├── detect.h ├── test.c ├── util.c └── util.h /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LloydLabs/wsb-detect/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LloydLabs/wsb-detect/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LloydLabs/wsb-detect/HEAD/README.md -------------------------------------------------------------------------------- /detect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LloydLabs/wsb-detect/HEAD/detect.c -------------------------------------------------------------------------------- /detect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LloydLabs/wsb-detect/HEAD/detect.h -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LloydLabs/wsb-detect/HEAD/test.c -------------------------------------------------------------------------------- /util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LloydLabs/wsb-detect/HEAD/util.c -------------------------------------------------------------------------------- /util.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "detect.h" 4 | 5 | BOOL util_path_exists(IN LPCWSTR lpszPath, DWORD dwExtraFlags); --------------------------------------------------------------------------------