├── .gitignore ├── CMakeLists.txt ├── CMakeSettings.json ├── LICENSE ├── README.md ├── README.txt ├── app.manifest ├── appkey.h ├── audio_eq.c ├── audio_eq.h ├── audio_win32.c ├── com_ptr.h ├── commands.h ├── config.h ├── dialogs.h ├── dialogs_win32.cpp ├── fpu_util.h ├── icon.ico ├── mp3.h ├── resource.h ├── shoutcast.h ├── skin ├── LICENSE ├── cbuttons.bmp ├── eqmain.bmp ├── gen.bmp ├── main.bmp ├── monoster.bmp ├── numbers.bmp ├── playpaus.bmp ├── pledit.bmp ├── posbar.bmp ├── shufrep.bmp ├── text.bmp ├── titlebar.bmp └── volume.bmp ├── spotifyamp.cpp ├── spotifyamp.h ├── spotifyamp.rc ├── stdafx.h ├── targetver.h ├── tinfl.c ├── tinfl.h ├── tiny_spotify ├── LICENSE ├── tiny_spotify.h └── tiny_spotify.obj ├── types.h ├── uidemo.png ├── util.h ├── vis.cpp ├── visplugin.cpp ├── visplugin.h ├── winamp_sdk ├── DSP.H ├── LICENSE ├── VIS.H ├── api_application.h ├── api_language.h ├── api_memmgr.h ├── api_service.h ├── api_syscb.h ├── dispatch.h ├── guid.h ├── ifc_messageprocessor.h ├── lang.h ├── nsguid.h ├── resource.h ├── types.h ├── wa_ipc.h └── waservicefactory.h ├── window.cpp ├── window.h ├── window_sdl.cpp ├── window_sdl.h ├── window_win32.cpp ├── window_win32.h ├── zipfile.cpp └── zipfile.h /.gitignore: -------------------------------------------------------------------------------- 1 | .vs/ 2 | .vscode/ 3 | out/ 4 | build/ 5 | releases/ -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/CMakeSettings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/README.txt -------------------------------------------------------------------------------- /app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/app.manifest -------------------------------------------------------------------------------- /appkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/appkey.h -------------------------------------------------------------------------------- /audio_eq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/audio_eq.c -------------------------------------------------------------------------------- /audio_eq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/audio_eq.h -------------------------------------------------------------------------------- /audio_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/audio_win32.c -------------------------------------------------------------------------------- /com_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/com_ptr.h -------------------------------------------------------------------------------- /commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/commands.h -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/config.h -------------------------------------------------------------------------------- /dialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/dialogs.h -------------------------------------------------------------------------------- /dialogs_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/dialogs_win32.cpp -------------------------------------------------------------------------------- /fpu_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/fpu_util.h -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/icon.ico -------------------------------------------------------------------------------- /mp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/mp3.h -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/resource.h -------------------------------------------------------------------------------- /shoutcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/shoutcast.h -------------------------------------------------------------------------------- /skin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/skin/LICENSE -------------------------------------------------------------------------------- /skin/cbuttons.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/skin/cbuttons.bmp -------------------------------------------------------------------------------- /skin/eqmain.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/skin/eqmain.bmp -------------------------------------------------------------------------------- /skin/gen.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/skin/gen.bmp -------------------------------------------------------------------------------- /skin/main.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/skin/main.bmp -------------------------------------------------------------------------------- /skin/monoster.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/skin/monoster.bmp -------------------------------------------------------------------------------- /skin/numbers.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/skin/numbers.bmp -------------------------------------------------------------------------------- /skin/playpaus.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/skin/playpaus.bmp -------------------------------------------------------------------------------- /skin/pledit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/skin/pledit.bmp -------------------------------------------------------------------------------- /skin/posbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/skin/posbar.bmp -------------------------------------------------------------------------------- /skin/shufrep.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/skin/shufrep.bmp -------------------------------------------------------------------------------- /skin/text.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/skin/text.bmp -------------------------------------------------------------------------------- /skin/titlebar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/skin/titlebar.bmp -------------------------------------------------------------------------------- /skin/volume.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/skin/volume.bmp -------------------------------------------------------------------------------- /spotifyamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/spotifyamp.cpp -------------------------------------------------------------------------------- /spotifyamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/spotifyamp.h -------------------------------------------------------------------------------- /spotifyamp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/spotifyamp.rc -------------------------------------------------------------------------------- /stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/stdafx.h -------------------------------------------------------------------------------- /targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/targetver.h -------------------------------------------------------------------------------- /tinfl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/tinfl.c -------------------------------------------------------------------------------- /tinfl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/tinfl.h -------------------------------------------------------------------------------- /tiny_spotify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/tiny_spotify/LICENSE -------------------------------------------------------------------------------- /tiny_spotify/tiny_spotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/tiny_spotify/tiny_spotify.h -------------------------------------------------------------------------------- /tiny_spotify/tiny_spotify.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/tiny_spotify/tiny_spotify.obj -------------------------------------------------------------------------------- /types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/types.h -------------------------------------------------------------------------------- /uidemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/uidemo.png -------------------------------------------------------------------------------- /util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/util.h -------------------------------------------------------------------------------- /vis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/vis.cpp -------------------------------------------------------------------------------- /visplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/visplugin.cpp -------------------------------------------------------------------------------- /visplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/visplugin.h -------------------------------------------------------------------------------- /winamp_sdk/DSP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/winamp_sdk/DSP.H -------------------------------------------------------------------------------- /winamp_sdk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/winamp_sdk/LICENSE -------------------------------------------------------------------------------- /winamp_sdk/VIS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/winamp_sdk/VIS.H -------------------------------------------------------------------------------- /winamp_sdk/api_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/winamp_sdk/api_application.h -------------------------------------------------------------------------------- /winamp_sdk/api_language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/winamp_sdk/api_language.h -------------------------------------------------------------------------------- /winamp_sdk/api_memmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/winamp_sdk/api_memmgr.h -------------------------------------------------------------------------------- /winamp_sdk/api_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/winamp_sdk/api_service.h -------------------------------------------------------------------------------- /winamp_sdk/api_syscb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/winamp_sdk/api_syscb.h -------------------------------------------------------------------------------- /winamp_sdk/dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/winamp_sdk/dispatch.h -------------------------------------------------------------------------------- /winamp_sdk/guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/winamp_sdk/guid.h -------------------------------------------------------------------------------- /winamp_sdk/ifc_messageprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/winamp_sdk/ifc_messageprocessor.h -------------------------------------------------------------------------------- /winamp_sdk/lang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/winamp_sdk/lang.h -------------------------------------------------------------------------------- /winamp_sdk/nsguid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/winamp_sdk/nsguid.h -------------------------------------------------------------------------------- /winamp_sdk/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/winamp_sdk/resource.h -------------------------------------------------------------------------------- /winamp_sdk/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/winamp_sdk/types.h -------------------------------------------------------------------------------- /winamp_sdk/wa_ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/winamp_sdk/wa_ipc.h -------------------------------------------------------------------------------- /winamp_sdk/waservicefactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/winamp_sdk/waservicefactory.h -------------------------------------------------------------------------------- /window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/window.cpp -------------------------------------------------------------------------------- /window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/window.h -------------------------------------------------------------------------------- /window_sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/window_sdl.cpp -------------------------------------------------------------------------------- /window_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/window_sdl.h -------------------------------------------------------------------------------- /window_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/window_win32.cpp -------------------------------------------------------------------------------- /window_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/window_win32.h -------------------------------------------------------------------------------- /zipfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/zipfile.cpp -------------------------------------------------------------------------------- /zipfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kran27/Spotiamp/HEAD/zipfile.h --------------------------------------------------------------------------------