├── .gitattributes ├── .gitignore ├── CommandTrayHost.sln ├── CommandTrayHost ├── CommandTrayHost.cpp ├── CommandTrayHost.exe.manifest ├── CommandTrayHost.h ├── CommandTrayHost.ico ├── CommandTrayHost.rc ├── CommandTrayHost.vcxproj ├── CommandTrayHost.vcxproj.filters ├── admin_singleton.cpp ├── admin_singleton.h ├── cache.cpp ├── cache.h ├── configure.cpp ├── configure.h ├── cron.cpp ├── cron.h ├── filewatcher.cpp ├── filewatcher.h ├── language.cpp ├── language.h ├── language_data.h ├── resource.h ├── shutdownblock.cpp ├── shutdownblock.h ├── small.ico ├── stdafx.cpp ├── stdafx.h ├── targetver.h ├── taskbar.ico ├── test.hpp ├── trash.hpp ├── updater.cpp ├── updater.h ├── utils.cpp └── utils.hpp ├── LICENSE ├── README.md ├── README.zh-cn.md ├── add_gitutf16.py ├── appveyor.yml ├── third_party └── ccronexpr │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── ccronexpr.cpp │ ├── ccronexpr.h │ └── ccronexpr_test.c ├── vcpkg_cache.txt ├── vcpkg_patch.py └── version_set.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/.gitignore -------------------------------------------------------------------------------- /CommandTrayHost.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/CommandTrayHost.sln -------------------------------------------------------------------------------- /CommandTrayHost/CommandTrayHost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/CommandTrayHost/CommandTrayHost.cpp -------------------------------------------------------------------------------- /CommandTrayHost/CommandTrayHost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/CommandTrayHost/CommandTrayHost.exe.manifest -------------------------------------------------------------------------------- /CommandTrayHost/CommandTrayHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/CommandTrayHost/CommandTrayHost.h -------------------------------------------------------------------------------- /CommandTrayHost/CommandTrayHost.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/CommandTrayHost/CommandTrayHost.ico -------------------------------------------------------------------------------- /CommandTrayHost/CommandTrayHost.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/CommandTrayHost/CommandTrayHost.rc -------------------------------------------------------------------------------- /CommandTrayHost/CommandTrayHost.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/CommandTrayHost/CommandTrayHost.vcxproj -------------------------------------------------------------------------------- /CommandTrayHost/CommandTrayHost.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/CommandTrayHost/CommandTrayHost.vcxproj.filters -------------------------------------------------------------------------------- /CommandTrayHost/admin_singleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/CommandTrayHost/admin_singleton.cpp -------------------------------------------------------------------------------- /CommandTrayHost/admin_singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/CommandTrayHost/admin_singleton.h -------------------------------------------------------------------------------- /CommandTrayHost/cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/CommandTrayHost/cache.cpp -------------------------------------------------------------------------------- /CommandTrayHost/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/CommandTrayHost/cache.h -------------------------------------------------------------------------------- /CommandTrayHost/configure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/CommandTrayHost/configure.cpp -------------------------------------------------------------------------------- /CommandTrayHost/configure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/CommandTrayHost/configure.h -------------------------------------------------------------------------------- /CommandTrayHost/cron.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/CommandTrayHost/cron.cpp -------------------------------------------------------------------------------- /CommandTrayHost/cron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/CommandTrayHost/cron.h -------------------------------------------------------------------------------- /CommandTrayHost/filewatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/CommandTrayHost/filewatcher.cpp -------------------------------------------------------------------------------- /CommandTrayHost/filewatcher.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | BOOL CreateFileWatch(PWSTR lpDir, HANDLE &hThread); 4 | -------------------------------------------------------------------------------- /CommandTrayHost/language.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/CommandTrayHost/language.cpp -------------------------------------------------------------------------------- /CommandTrayHost/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/CommandTrayHost/language.h -------------------------------------------------------------------------------- /CommandTrayHost/language_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/CommandTrayHost/language_data.h -------------------------------------------------------------------------------- /CommandTrayHost/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/CommandTrayHost/resource.h -------------------------------------------------------------------------------- /CommandTrayHost/shutdownblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/CommandTrayHost/shutdownblock.cpp -------------------------------------------------------------------------------- /CommandTrayHost/shutdownblock.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | BOOL CreateShutdownHook(HANDLE &hThread); 4 | -------------------------------------------------------------------------------- /CommandTrayHost/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/CommandTrayHost/small.ico -------------------------------------------------------------------------------- /CommandTrayHost/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/CommandTrayHost/stdafx.cpp -------------------------------------------------------------------------------- /CommandTrayHost/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/CommandTrayHost/stdafx.h -------------------------------------------------------------------------------- /CommandTrayHost/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/CommandTrayHost/targetver.h -------------------------------------------------------------------------------- /CommandTrayHost/taskbar.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/CommandTrayHost/taskbar.ico -------------------------------------------------------------------------------- /CommandTrayHost/test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/CommandTrayHost/test.hpp -------------------------------------------------------------------------------- /CommandTrayHost/trash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/CommandTrayHost/trash.hpp -------------------------------------------------------------------------------- /CommandTrayHost/updater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/CommandTrayHost/updater.cpp -------------------------------------------------------------------------------- /CommandTrayHost/updater.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | BOOL UpdaterChecker(PWSTR lpDir, HANDLE &hThread); 4 | -------------------------------------------------------------------------------- /CommandTrayHost/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/CommandTrayHost/utils.cpp -------------------------------------------------------------------------------- /CommandTrayHost/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/CommandTrayHost/utils.hpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/README.zh-cn.md -------------------------------------------------------------------------------- /add_gitutf16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/add_gitutf16.py -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/appveyor.yml -------------------------------------------------------------------------------- /third_party/ccronexpr/.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | /nbproject 3 | -------------------------------------------------------------------------------- /third_party/ccronexpr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/third_party/ccronexpr/LICENSE -------------------------------------------------------------------------------- /third_party/ccronexpr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/third_party/ccronexpr/README.md -------------------------------------------------------------------------------- /third_party/ccronexpr/ccronexpr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/third_party/ccronexpr/ccronexpr.cpp -------------------------------------------------------------------------------- /third_party/ccronexpr/ccronexpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/third_party/ccronexpr/ccronexpr.h -------------------------------------------------------------------------------- /third_party/ccronexpr/ccronexpr_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/third_party/ccronexpr/ccronexpr_test.c -------------------------------------------------------------------------------- /vcpkg_cache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/vcpkg_cache.txt -------------------------------------------------------------------------------- /vcpkg_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/vcpkg_patch.py -------------------------------------------------------------------------------- /version_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexdf/CommandTrayHost/HEAD/version_set.py --------------------------------------------------------------------------------