├── .gitmodules ├── CMakeLists.txt ├── asset ├── app.ico ├── app.manifest ├── app.rc ├── app_blue.ico ├── app_red.ico ├── preview.png ├── resource.h └── ubuntu_mono_bold_mod.ttf ├── collect_dll.sh ├── lib └── libwinring0 │ ├── CMakeLists.txt │ ├── OlsDef.h │ ├── winring0.c │ └── winring0.h ├── readme.md ├── src ├── config.json ├── main.c ├── msr.c ├── msr.h ├── profile.c ├── profile.h ├── registry.c ├── registry.h ├── tray.c ├── tray.h └── vcache-tray.h └── strip_exe.sh /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocafe/vcache-tray/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocafe/vcache-tray/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /asset/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocafe/vcache-tray/HEAD/asset/app.ico -------------------------------------------------------------------------------- /asset/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocafe/vcache-tray/HEAD/asset/app.manifest -------------------------------------------------------------------------------- /asset/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocafe/vcache-tray/HEAD/asset/app.rc -------------------------------------------------------------------------------- /asset/app_blue.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocafe/vcache-tray/HEAD/asset/app_blue.ico -------------------------------------------------------------------------------- /asset/app_red.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocafe/vcache-tray/HEAD/asset/app_red.ico -------------------------------------------------------------------------------- /asset/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocafe/vcache-tray/HEAD/asset/preview.png -------------------------------------------------------------------------------- /asset/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocafe/vcache-tray/HEAD/asset/resource.h -------------------------------------------------------------------------------- /asset/ubuntu_mono_bold_mod.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocafe/vcache-tray/HEAD/asset/ubuntu_mono_bold_mod.ttf -------------------------------------------------------------------------------- /collect_dll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocafe/vcache-tray/HEAD/collect_dll.sh -------------------------------------------------------------------------------- /lib/libwinring0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocafe/vcache-tray/HEAD/lib/libwinring0/CMakeLists.txt -------------------------------------------------------------------------------- /lib/libwinring0/OlsDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocafe/vcache-tray/HEAD/lib/libwinring0/OlsDef.h -------------------------------------------------------------------------------- /lib/libwinring0/winring0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocafe/vcache-tray/HEAD/lib/libwinring0/winring0.c -------------------------------------------------------------------------------- /lib/libwinring0/winring0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocafe/vcache-tray/HEAD/lib/libwinring0/winring0.h -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocafe/vcache-tray/HEAD/readme.md -------------------------------------------------------------------------------- /src/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocafe/vcache-tray/HEAD/src/config.json -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocafe/vcache-tray/HEAD/src/main.c -------------------------------------------------------------------------------- /src/msr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocafe/vcache-tray/HEAD/src/msr.c -------------------------------------------------------------------------------- /src/msr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocafe/vcache-tray/HEAD/src/msr.h -------------------------------------------------------------------------------- /src/profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocafe/vcache-tray/HEAD/src/profile.c -------------------------------------------------------------------------------- /src/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocafe/vcache-tray/HEAD/src/profile.h -------------------------------------------------------------------------------- /src/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocafe/vcache-tray/HEAD/src/registry.c -------------------------------------------------------------------------------- /src/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocafe/vcache-tray/HEAD/src/registry.h -------------------------------------------------------------------------------- /src/tray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocafe/vcache-tray/HEAD/src/tray.c -------------------------------------------------------------------------------- /src/tray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocafe/vcache-tray/HEAD/src/tray.h -------------------------------------------------------------------------------- /src/vcache-tray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocafe/vcache-tray/HEAD/src/vcache-tray.h -------------------------------------------------------------------------------- /strip_exe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocafe/vcache-tray/HEAD/strip_exe.sh --------------------------------------------------------------------------------