├── .gitignore ├── Built binaries ├── x32 │ └── Drag&Drop.dll └── x64 │ └── Drag&Drop.dll ├── Drag&Drop ├── API │ ├── DllExporter.exe │ ├── RainmeterAPI.cs │ ├── RainmeterAPI.h │ ├── x32 │ │ └── Rainmeter.lib │ └── x64 │ │ └── Rainmeter.lib └── Drag&Drop │ ├── ChildMeasure.h │ ├── DragDrop.cpp │ ├── DragDrop.rc │ ├── HelperFunctions.h │ ├── ISimpleDropTarget.cpp │ ├── ISimpleDropTarget.h │ ├── ParentMeasure.h │ ├── PluginEmpty.sln │ ├── PluginEmpty.vcxproj │ ├── PluginEmpty.vcxproj.filters │ ├── RainmeterDropTarget.cpp │ ├── RainmeterDropTarget.h │ ├── RainmeterMathParser.cpp │ ├── RainmeterMathParser.h │ └── resource.h ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/Drag-Drop/HEAD/.gitignore -------------------------------------------------------------------------------- /Built binaries/x32/Drag&Drop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/Drag-Drop/HEAD/Built binaries/x32/Drag&Drop.dll -------------------------------------------------------------------------------- /Built binaries/x64/Drag&Drop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/Drag-Drop/HEAD/Built binaries/x64/Drag&Drop.dll -------------------------------------------------------------------------------- /Drag&Drop/API/DllExporter.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/Drag-Drop/HEAD/Drag&Drop/API/DllExporter.exe -------------------------------------------------------------------------------- /Drag&Drop/API/RainmeterAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/Drag-Drop/HEAD/Drag&Drop/API/RainmeterAPI.cs -------------------------------------------------------------------------------- /Drag&Drop/API/RainmeterAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/Drag-Drop/HEAD/Drag&Drop/API/RainmeterAPI.h -------------------------------------------------------------------------------- /Drag&Drop/API/x32/Rainmeter.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/Drag-Drop/HEAD/Drag&Drop/API/x32/Rainmeter.lib -------------------------------------------------------------------------------- /Drag&Drop/API/x64/Rainmeter.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/Drag-Drop/HEAD/Drag&Drop/API/x64/Rainmeter.lib -------------------------------------------------------------------------------- /Drag&Drop/Drag&Drop/ChildMeasure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/Drag-Drop/HEAD/Drag&Drop/Drag&Drop/ChildMeasure.h -------------------------------------------------------------------------------- /Drag&Drop/Drag&Drop/DragDrop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/Drag-Drop/HEAD/Drag&Drop/Drag&Drop/DragDrop.cpp -------------------------------------------------------------------------------- /Drag&Drop/Drag&Drop/DragDrop.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/Drag-Drop/HEAD/Drag&Drop/Drag&Drop/DragDrop.rc -------------------------------------------------------------------------------- /Drag&Drop/Drag&Drop/HelperFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/Drag-Drop/HEAD/Drag&Drop/Drag&Drop/HelperFunctions.h -------------------------------------------------------------------------------- /Drag&Drop/Drag&Drop/ISimpleDropTarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/Drag-Drop/HEAD/Drag&Drop/Drag&Drop/ISimpleDropTarget.cpp -------------------------------------------------------------------------------- /Drag&Drop/Drag&Drop/ISimpleDropTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/Drag-Drop/HEAD/Drag&Drop/Drag&Drop/ISimpleDropTarget.h -------------------------------------------------------------------------------- /Drag&Drop/Drag&Drop/ParentMeasure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/Drag-Drop/HEAD/Drag&Drop/Drag&Drop/ParentMeasure.h -------------------------------------------------------------------------------- /Drag&Drop/Drag&Drop/PluginEmpty.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/Drag-Drop/HEAD/Drag&Drop/Drag&Drop/PluginEmpty.sln -------------------------------------------------------------------------------- /Drag&Drop/Drag&Drop/PluginEmpty.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/Drag-Drop/HEAD/Drag&Drop/Drag&Drop/PluginEmpty.vcxproj -------------------------------------------------------------------------------- /Drag&Drop/Drag&Drop/PluginEmpty.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/Drag-Drop/HEAD/Drag&Drop/Drag&Drop/PluginEmpty.vcxproj.filters -------------------------------------------------------------------------------- /Drag&Drop/Drag&Drop/RainmeterDropTarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/Drag-Drop/HEAD/Drag&Drop/Drag&Drop/RainmeterDropTarget.cpp -------------------------------------------------------------------------------- /Drag&Drop/Drag&Drop/RainmeterDropTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/Drag-Drop/HEAD/Drag&Drop/Drag&Drop/RainmeterDropTarget.h -------------------------------------------------------------------------------- /Drag&Drop/Drag&Drop/RainmeterMathParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/Drag-Drop/HEAD/Drag&Drop/Drag&Drop/RainmeterMathParser.cpp -------------------------------------------------------------------------------- /Drag&Drop/Drag&Drop/RainmeterMathParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/Drag-Drop/HEAD/Drag&Drop/Drag&Drop/RainmeterMathParser.h -------------------------------------------------------------------------------- /Drag&Drop/Drag&Drop/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/Drag-Drop/HEAD/Drag&Drop/Drag&Drop/resource.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/Drag-Drop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAzack9/Drag-Drop/HEAD/README.md --------------------------------------------------------------------------------