├── .gitignore ├── README.md └── Source ├── API ├── RainmeterAPI.h ├── x32 │ └── Rainmeter.lib └── x64 │ └── Rainmeter.lib ├── Plugin ├── Plugin.cpp ├── Plugin.rc ├── Plugin.vcxproj ├── Plugin.vcxproj.filters └── version.h └── SDK-CPP.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/FrostedGlass/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/FrostedGlass/HEAD/README.md -------------------------------------------------------------------------------- /Source/API/RainmeterAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/FrostedGlass/HEAD/Source/API/RainmeterAPI.h -------------------------------------------------------------------------------- /Source/API/x32/Rainmeter.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/FrostedGlass/HEAD/Source/API/x32/Rainmeter.lib -------------------------------------------------------------------------------- /Source/API/x64/Rainmeter.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/FrostedGlass/HEAD/Source/API/x64/Rainmeter.lib -------------------------------------------------------------------------------- /Source/Plugin/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/FrostedGlass/HEAD/Source/Plugin/Plugin.cpp -------------------------------------------------------------------------------- /Source/Plugin/Plugin.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/FrostedGlass/HEAD/Source/Plugin/Plugin.rc -------------------------------------------------------------------------------- /Source/Plugin/Plugin.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/FrostedGlass/HEAD/Source/Plugin/Plugin.vcxproj -------------------------------------------------------------------------------- /Source/Plugin/Plugin.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/FrostedGlass/HEAD/Source/Plugin/Plugin.vcxproj.filters -------------------------------------------------------------------------------- /Source/Plugin/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/FrostedGlass/HEAD/Source/Plugin/version.h -------------------------------------------------------------------------------- /Source/SDK-CPP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/FrostedGlass/HEAD/Source/SDK-CPP.sln --------------------------------------------------------------------------------