├── .gitattributes ├── .gitignore ├── README.md ├── ScrollSound.sln ├── ScrollSound ├── AutoRunning.cpp ├── AutoRunning.h ├── Hook.cpp ├── Hook.h ├── MonitorHelper.cpp ├── MonitorHelper.h ├── Privilege.cpp ├── Privilege.h ├── ScrollSound.cpp ├── ScrollSound.h ├── ScrollSound.rc ├── ScrollSound.vcxproj ├── ScrollSound.vcxproj.filters ├── Source.def ├── WIC.cpp ├── WIC.h ├── WinVersionHelper.cpp ├── WinVersionHelper.h ├── framework.h ├── res │ ├── exit.ico │ └── scrollsound.ico ├── resource.h └── targetver.h └── imgs ├── Animation.gif ├── Reward.png └── snipaste.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWDaby/ScrollSound/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWDaby/ScrollSound/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWDaby/ScrollSound/HEAD/README.md -------------------------------------------------------------------------------- /ScrollSound.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWDaby/ScrollSound/HEAD/ScrollSound.sln -------------------------------------------------------------------------------- /ScrollSound/AutoRunning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWDaby/ScrollSound/HEAD/ScrollSound/AutoRunning.cpp -------------------------------------------------------------------------------- /ScrollSound/AutoRunning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWDaby/ScrollSound/HEAD/ScrollSound/AutoRunning.h -------------------------------------------------------------------------------- /ScrollSound/Hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWDaby/ScrollSound/HEAD/ScrollSound/Hook.cpp -------------------------------------------------------------------------------- /ScrollSound/Hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWDaby/ScrollSound/HEAD/ScrollSound/Hook.h -------------------------------------------------------------------------------- /ScrollSound/MonitorHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWDaby/ScrollSound/HEAD/ScrollSound/MonitorHelper.cpp -------------------------------------------------------------------------------- /ScrollSound/MonitorHelper.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | class MonitorHelper 3 | { 4 | public: 5 | double GetScale() const; 6 | }; 7 | 8 | -------------------------------------------------------------------------------- /ScrollSound/Privilege.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWDaby/ScrollSound/HEAD/ScrollSound/Privilege.cpp -------------------------------------------------------------------------------- /ScrollSound/Privilege.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWDaby/ScrollSound/HEAD/ScrollSound/Privilege.h -------------------------------------------------------------------------------- /ScrollSound/ScrollSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWDaby/ScrollSound/HEAD/ScrollSound/ScrollSound.cpp -------------------------------------------------------------------------------- /ScrollSound/ScrollSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWDaby/ScrollSound/HEAD/ScrollSound/ScrollSound.h -------------------------------------------------------------------------------- /ScrollSound/ScrollSound.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWDaby/ScrollSound/HEAD/ScrollSound/ScrollSound.rc -------------------------------------------------------------------------------- /ScrollSound/ScrollSound.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWDaby/ScrollSound/HEAD/ScrollSound/ScrollSound.vcxproj -------------------------------------------------------------------------------- /ScrollSound/ScrollSound.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWDaby/ScrollSound/HEAD/ScrollSound/ScrollSound.vcxproj.filters -------------------------------------------------------------------------------- /ScrollSound/Source.def: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ScrollSound/WIC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWDaby/ScrollSound/HEAD/ScrollSound/WIC.cpp -------------------------------------------------------------------------------- /ScrollSound/WIC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWDaby/ScrollSound/HEAD/ScrollSound/WIC.h -------------------------------------------------------------------------------- /ScrollSound/WinVersionHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWDaby/ScrollSound/HEAD/ScrollSound/WinVersionHelper.cpp -------------------------------------------------------------------------------- /ScrollSound/WinVersionHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWDaby/ScrollSound/HEAD/ScrollSound/WinVersionHelper.h -------------------------------------------------------------------------------- /ScrollSound/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWDaby/ScrollSound/HEAD/ScrollSound/framework.h -------------------------------------------------------------------------------- /ScrollSound/res/exit.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWDaby/ScrollSound/HEAD/ScrollSound/res/exit.ico -------------------------------------------------------------------------------- /ScrollSound/res/scrollsound.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWDaby/ScrollSound/HEAD/ScrollSound/res/scrollsound.ico -------------------------------------------------------------------------------- /ScrollSound/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWDaby/ScrollSound/HEAD/ScrollSound/resource.h -------------------------------------------------------------------------------- /ScrollSound/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWDaby/ScrollSound/HEAD/ScrollSound/targetver.h -------------------------------------------------------------------------------- /imgs/Animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWDaby/ScrollSound/HEAD/imgs/Animation.gif -------------------------------------------------------------------------------- /imgs/Reward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWDaby/ScrollSound/HEAD/imgs/Reward.png -------------------------------------------------------------------------------- /imgs/snipaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SWDaby/ScrollSound/HEAD/imgs/snipaste.png --------------------------------------------------------------------------------