├── .gitattributes ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── FileInfoStorage.cpp ├── FileInfoStorage.hpp ├── TagFormatter.cpp ├── TagFormatter.hpp ├── Updates.txt ├── Winamp ├── DSP.H ├── GEN.H ├── IN2.H ├── OUT.H ├── ipc_pe.h ├── wa_dlg.h └── wa_ipc.h ├── dlg_cfg.cpp ├── dlg_fileinfo.cpp ├── extFileInfo.cpp ├── icon.ico ├── images ├── logo.bmp ├── logo2.bmp └── tabicons.bmp ├── in_vgm.cpp ├── in_vgm.h ├── in_vgm.rc ├── in_vgm.sln ├── in_vgm.vcxproj ├── in_vgm.vcxproj.filters ├── ini_func.c ├── ini_func.h ├── playcfg.cpp ├── playcfg.hpp ├── resource.h ├── utils.cpp └── utils.hpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /FileInfoStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/FileInfoStorage.cpp -------------------------------------------------------------------------------- /FileInfoStorage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/FileInfoStorage.hpp -------------------------------------------------------------------------------- /TagFormatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/TagFormatter.cpp -------------------------------------------------------------------------------- /TagFormatter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/TagFormatter.hpp -------------------------------------------------------------------------------- /Updates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/Updates.txt -------------------------------------------------------------------------------- /Winamp/DSP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/Winamp/DSP.H -------------------------------------------------------------------------------- /Winamp/GEN.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/Winamp/GEN.H -------------------------------------------------------------------------------- /Winamp/IN2.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/Winamp/IN2.H -------------------------------------------------------------------------------- /Winamp/OUT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/Winamp/OUT.H -------------------------------------------------------------------------------- /Winamp/ipc_pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/Winamp/ipc_pe.h -------------------------------------------------------------------------------- /Winamp/wa_dlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/Winamp/wa_dlg.h -------------------------------------------------------------------------------- /Winamp/wa_ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/Winamp/wa_ipc.h -------------------------------------------------------------------------------- /dlg_cfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/dlg_cfg.cpp -------------------------------------------------------------------------------- /dlg_fileinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/dlg_fileinfo.cpp -------------------------------------------------------------------------------- /extFileInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/extFileInfo.cpp -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/icon.ico -------------------------------------------------------------------------------- /images/logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/images/logo.bmp -------------------------------------------------------------------------------- /images/logo2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/images/logo2.bmp -------------------------------------------------------------------------------- /images/tabicons.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/images/tabicons.bmp -------------------------------------------------------------------------------- /in_vgm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/in_vgm.cpp -------------------------------------------------------------------------------- /in_vgm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/in_vgm.h -------------------------------------------------------------------------------- /in_vgm.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/in_vgm.rc -------------------------------------------------------------------------------- /in_vgm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/in_vgm.sln -------------------------------------------------------------------------------- /in_vgm.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/in_vgm.vcxproj -------------------------------------------------------------------------------- /in_vgm.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/in_vgm.vcxproj.filters -------------------------------------------------------------------------------- /ini_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/ini_func.c -------------------------------------------------------------------------------- /ini_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/ini_func.h -------------------------------------------------------------------------------- /playcfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/playcfg.cpp -------------------------------------------------------------------------------- /playcfg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/playcfg.hpp -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/resource.h -------------------------------------------------------------------------------- /utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/utils.cpp -------------------------------------------------------------------------------- /utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValleyBell/in_vgm-libvgm/HEAD/utils.hpp --------------------------------------------------------------------------------