├── .gitignore ├── .gitmodules ├── .travis.yml ├── CHANGELOG.ru.md ├── CMakeLists.txt ├── README.md ├── README.ru.md ├── appimage ├── .gitignore ├── vk_music_fs-icon.svg └── vk_music_fs.desktop ├── cfgpath ├── CMakeLists.txt └── cfgpath.h ├── cpp-lru-cache-mod ├── CMakeLists.txt └── lrucache.hpp ├── di ├── CMakeLists.txt ├── extension │ └── include │ │ └── boost │ │ └── di │ │ └── extension │ │ ├── bindings │ │ ├── constructor_bindings.hpp │ │ └── contextual_bindings.hpp │ │ ├── injections │ │ ├── assisted_injection.hpp │ │ ├── concepts.hpp │ │ ├── extensible_injector.hpp │ │ ├── factory.hpp │ │ ├── lazy.hpp │ │ ├── named_parameters.hpp │ │ ├── shared_factory.hpp │ │ └── xml_injection.hpp │ │ ├── injector.hpp │ │ ├── policies │ │ ├── serialize.hpp │ │ ├── types_dumper.hpp │ │ └── uml_dumper.hpp │ │ ├── providers │ │ ├── heap.hpp │ │ ├── mocks_provider.hpp │ │ └── runtime_provider.hpp │ │ └── scopes │ │ ├── scoped.hpp │ │ ├── session.hpp │ │ └── shared.hpp └── include │ └── boost │ └── di.hpp ├── json ├── CMakeLists.txt └── json.hpp ├── mingw-w64-toolchain.txt ├── mingw-w64-x64-toolchain.txt ├── nowide ├── CMakeLists.txt ├── include │ └── boost │ │ └── nowide │ │ ├── args.hpp │ │ ├── cenv.hpp │ │ ├── config.hpp │ │ ├── convert.hpp │ │ ├── cstdio.hpp │ │ ├── cstdlib.hpp │ │ ├── filebuf.hpp │ │ ├── fstream.hpp │ │ ├── integration │ │ └── filesystem.hpp │ │ ├── iostream.hpp │ │ ├── stackstring.hpp │ │ ├── system.hpp │ │ ├── utf8_codecvt.hpp │ │ └── windows.hpp └── src │ └── iostream.cpp ├── src ├── CMakeLists.txt ├── cache │ ├── CMakeLists.txt │ ├── CacheSaver.cpp │ ├── CacheSaver.h │ ├── CommonCache.cpp │ ├── CommonCache.h │ ├── File.cpp │ ├── File.h │ ├── FileBuffer.cpp │ ├── FileBuffer.h │ ├── FileCache.cpp │ ├── FileCache.h │ ├── MusicFile.cpp │ ├── MusicFile.h │ ├── PhotoCache.cpp │ ├── PhotoCache.h │ ├── PhotoFile.cpp │ └── PhotoFile.h ├── common │ ├── CMakeLists.txt │ ├── ErrLogger.cpp │ ├── ErrLogger.h │ ├── IOBlock.h │ ├── IOBlockCreator.h │ ├── IdGenerator.cpp │ ├── IdGenerator.h │ ├── MusicFsException.cpp │ ├── MusicFsException.h │ ├── OverridableSetting.h │ ├── RealFs.cpp │ ├── RealFs.h │ ├── RemotePhotoFile.cpp │ ├── RemotePhotoFile.h │ ├── ThreadPool.cpp │ ├── ThreadPool.h │ └── common.h ├── diext │ ├── Storage.h │ ├── common_di.h │ ├── ext_factory.hpp │ └── goodscoped.h ├── fs │ ├── 0tests │ │ ├── AsyncFsManagerT.cpp │ │ ├── AudioFsT.cpp │ │ ├── CMakeLists.txt │ │ ├── FileNameT.cpp │ │ ├── FsUtilsT.cpp │ │ ├── PlaylistCtrlT.cpp │ │ ├── SimilarCtrlT.cpp │ │ └── data │ │ │ ├── CtrlM.h │ │ │ ├── FileCacheM.h │ │ │ ├── FileManagerM.h │ │ │ ├── FileObtainerM.h │ │ │ ├── FsHelper.h │ │ │ ├── PhotoCacheM.h │ │ │ ├── PhotoManagerM.h │ │ │ ├── RealFsM.h │ │ │ └── ThreadPoolM.h │ ├── AsyncFsManager.cpp │ ├── AsyncFsManager.h │ ├── AudioFs.h │ ├── CMakeLists.txt │ ├── Dir.cpp │ ├── Dir.h │ ├── DirOrFile.cpp │ ├── DirOrFile.h │ ├── File.cpp │ ├── File.h │ ├── FileInfo.cpp │ ├── FileInfo.h │ ├── FileName.cpp │ ├── FileName.h │ ├── FileObtainer.cpp │ ├── FileObtainer.h │ ├── FsException.cpp │ ├── FsException.h │ ├── FsPath.cpp │ ├── FsPath.h │ ├── FsSettings.cpp │ ├── FsSettings.h │ ├── FsUtils.cpp │ ├── FsUtils.h │ ├── Mp3FileName.cpp │ ├── Mp3FileName.h │ ├── OffsetCnt.cpp │ ├── OffsetCnt.h │ ├── OffsetCntName.cpp │ ├── OffsetCntName.h │ ├── OffsetCntPlaylist.cpp │ ├── OffsetCntPlaylist.h │ ├── OffsetCntRemoteFile.cpp │ ├── OffsetCntRemoteFile.h │ ├── VkException.cpp │ ├── VkException.h │ ├── actions │ │ ├── DeleteDirAct.h │ │ ├── DeleteFileAct.h │ │ ├── NumberAct.cpp │ │ ├── NumberAct.h │ │ ├── RefreshAct.cpp │ │ ├── RefreshAct.h │ │ ├── RemoveRefreshDirAct.h │ │ └── act.h │ ├── common_fs.h │ └── ctrl │ │ ├── AddToMyAudiosCtrl.h │ │ ├── DummyDirWrapper.cpp │ │ ├── DummyDirWrapper.h │ │ ├── MyAudiosCtrl.cpp │ │ ├── MyAudiosCtrl.h │ │ ├── PlaylistCtrl.cpp │ │ ├── PlaylistCtrl.h │ │ ├── RedirectCtrl.cpp │ │ ├── RedirectCtrl.h │ │ ├── RemoteFileWrapper.cpp │ │ ├── RemoteFileWrapper.h │ │ ├── RootCtrl.cpp │ │ ├── RootCtrl.h │ │ ├── SearchSongNameArtistHelper.cpp │ │ ├── SearchSongNameArtistHelper.h │ │ ├── SearchSongNameCtrl.cpp │ │ ├── SearchSongNameCtrl.h │ │ ├── SearchSongNameSongHelper.cpp │ │ ├── SearchSongNameSongHelper.h │ │ ├── SimilarCtrl.h │ │ ├── SingleDirCtrl.cpp │ │ ├── SingleDirCtrl.h │ │ ├── ThrowExCtrl.cpp │ │ ├── ThrowExCtrl.h │ │ └── ctrl.h ├── fuse-utils │ ├── CMakeLists.txt │ └── fuse_wrap.h ├── main.cpp ├── main │ ├── Application.cpp │ ├── Application.h │ ├── CMakeLists.txt │ ├── FakeFs.h │ ├── NoReportException.cpp │ ├── NoReportException.h │ ├── ProgramOptions.cpp │ └── ProgramOptions.h ├── mp3core │ ├── 0tests │ │ ├── BlockingBufferT.cpp │ │ ├── CMakeLists.txt │ │ ├── FileManagerT.cpp │ │ ├── FileProcessorMp3ParserT.cpp │ │ ├── FileProcessorT.cpp │ │ ├── Mp3ParserT.cpp │ │ ├── PhotoProcessorT.cpp │ │ └── data │ │ │ ├── FileM.h │ │ │ ├── Mp3Files.h │ │ │ ├── MusicData.h │ │ │ ├── ParserM.h │ │ │ ├── StreamM.h │ │ │ ├── TestBlockCreator.h │ │ │ ├── ThreadPoolM.h │ │ │ └── Writer.h │ ├── BlockingBuffer.cpp │ ├── BlockingBuffer.h │ ├── CMakeLists.txt │ ├── FileManager.cpp │ ├── FileManager.h │ ├── FileProcessor.cpp │ ├── FileProcessor.h │ ├── FileProcessorCreator.cpp │ ├── FileProcessorCreator.h │ ├── Mp3Parser.cpp │ ├── Mp3Parser.h │ ├── PhotoProcessor.cpp │ ├── PhotoProcessor.h │ ├── PhotoProcessorCreator.cpp │ ├── PhotoProcessorCreator.h │ ├── Reader.cpp │ ├── Reader.h │ ├── RemoteException.cpp │ ├── RemoteException.h │ ├── RemoteFile.cpp │ ├── RemoteFile.h │ ├── TagSizeCalculator.cpp │ ├── TagSizeCalculator.h │ └── common_mp3core.h ├── net │ ├── CMakeLists.txt │ ├── HttpException.cpp │ ├── HttpException.h │ ├── HttpStream.cpp │ ├── HttpStream.h │ ├── HttpStreamCommon.cpp │ ├── HttpStreamCommon.h │ ├── Mp3SizeObtainer.cpp │ ├── Mp3SizeObtainer.h │ ├── Timer.h │ ├── VkApiQueryMaker.cpp │ ├── VkApiQueryMaker.h │ ├── VkSettings.h │ ├── WrongSizeException.cpp │ ├── WrongSizeException.h │ └── common_net.h └── token │ ├── CMakeLists.txt │ ├── ProtobufException.cpp │ ├── ProtobufException.h │ ├── SmallProtobufHelper.cpp │ ├── SmallProtobufHelper.h │ ├── TokenException.cpp │ ├── TokenException.h │ ├── TokenReceiver.cpp │ ├── TokenReceiver.h │ └── common_token.h └── taglib_mod ├── 3rdparty └── utf8-cpp │ ├── checked.h │ └── core.h ├── CMakeLists.txt ├── audioproperties.cpp ├── audioproperties.h ├── config.h ├── fileref.cpp ├── fileref.h ├── mpeg ├── id3v1 │ ├── id3v1genres.cpp │ └── id3v1genres.h ├── id3v2 │ ├── frames │ │ ├── attachedpictureframe.cpp │ │ ├── attachedpictureframe.h │ │ ├── chapterframe.cpp │ │ ├── chapterframe.h │ │ ├── commentsframe.cpp │ │ ├── commentsframe.h │ │ ├── eventtimingcodesframe.cpp │ │ ├── eventtimingcodesframe.h │ │ ├── generalencapsulatedobjectframe.cpp │ │ ├── generalencapsulatedobjectframe.h │ │ ├── ownershipframe.cpp │ │ ├── ownershipframe.h │ │ ├── podcastframe.cpp │ │ ├── podcastframe.h │ │ ├── popularimeterframe.cpp │ │ ├── popularimeterframe.h │ │ ├── privateframe.cpp │ │ ├── privateframe.h │ │ ├── relativevolumeframe.cpp │ │ ├── relativevolumeframe.h │ │ ├── synchronizedlyricsframe.cpp │ │ ├── synchronizedlyricsframe.h │ │ ├── tableofcontentsframe.cpp │ │ ├── tableofcontentsframe.h │ │ ├── textidentificationframe.cpp │ │ ├── textidentificationframe.h │ │ ├── uniquefileidentifierframe.cpp │ │ ├── uniquefileidentifierframe.h │ │ ├── unknownframe.cpp │ │ ├── unknownframe.h │ │ ├── unsynchronizedlyricsframe.cpp │ │ ├── unsynchronizedlyricsframe.h │ │ ├── urllinkframe.cpp │ │ └── urllinkframe.h │ ├── id3v2.2.0.txt │ ├── id3v2.3.0.txt │ ├── id3v2.4.0-frames.txt │ ├── id3v2.4.0-structure.txt │ ├── id3v2extendedheader.cpp │ ├── id3v2extendedheader.h │ ├── id3v2footer.cpp │ ├── id3v2footer.h │ ├── id3v2frame.cpp │ ├── id3v2frame.h │ ├── id3v2framefactory.cpp │ ├── id3v2framefactory.h │ ├── id3v2header.cpp │ ├── id3v2header.h │ ├── id3v2synchdata.cpp │ ├── id3v2synchdata.h │ ├── id3v2tag.cpp │ └── id3v2tag.h ├── mpegfile.cpp ├── mpegfile.h ├── mpegheader.cpp ├── mpegheader.h ├── mpegproperties.cpp ├── mpegproperties.h ├── mpegutils.h ├── xingheader.cpp └── xingheader.h ├── tag.cpp ├── tag.h ├── taglib_config.h ├── taglib_export.h ├── tagunion.cpp ├── tagunion.h ├── tagutils.cpp ├── tagutils.h └── toolkit ├── taglib.h ├── tbytevector.cpp ├── tbytevector.h ├── tbytevectorlist.cpp ├── tbytevectorlist.h ├── tbytevectorstream.cpp ├── tbytevectorstream.h ├── tdebug.cpp ├── tdebug.h ├── tdebuglistener.cpp ├── tdebuglistener.h ├── tfile.cpp ├── tfile.h ├── tfilestream.cpp ├── tfilestream.h ├── tiostream.cpp ├── tiostream.h ├── tlist.h ├── tlist.tcc ├── tmap.h ├── tmap.tcc ├── tpropertymap.cpp ├── tpropertymap.h ├── trefcounter.cpp ├── trefcounter.h ├── tstring.cpp ├── tstring.h ├── tstringlist.cpp ├── tstringlist.h ├── tutils.h ├── tzlib.cpp └── tzlib.h /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | winfsp 3 | cmake-build-* -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/CHANGELOG.ru.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/README.md -------------------------------------------------------------------------------- /README.ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/README.ru.md -------------------------------------------------------------------------------- /appimage/.gitignore: -------------------------------------------------------------------------------- 1 | vk_music_fs-* 2 | app-* -------------------------------------------------------------------------------- /appimage/vk_music_fs-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/appimage/vk_music_fs-icon.svg -------------------------------------------------------------------------------- /appimage/vk_music_fs.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/appimage/vk_music_fs.desktop -------------------------------------------------------------------------------- /cfgpath/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/cfgpath/CMakeLists.txt -------------------------------------------------------------------------------- /cfgpath/cfgpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/cfgpath/cfgpath.h -------------------------------------------------------------------------------- /cpp-lru-cache-mod/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/cpp-lru-cache-mod/CMakeLists.txt -------------------------------------------------------------------------------- /cpp-lru-cache-mod/lrucache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/cpp-lru-cache-mod/lrucache.hpp -------------------------------------------------------------------------------- /di/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/di/CMakeLists.txt -------------------------------------------------------------------------------- /di/extension/include/boost/di/extension/bindings/constructor_bindings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/di/extension/include/boost/di/extension/bindings/constructor_bindings.hpp -------------------------------------------------------------------------------- /di/extension/include/boost/di/extension/bindings/contextual_bindings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/di/extension/include/boost/di/extension/bindings/contextual_bindings.hpp -------------------------------------------------------------------------------- /di/extension/include/boost/di/extension/injections/assisted_injection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/di/extension/include/boost/di/extension/injections/assisted_injection.hpp -------------------------------------------------------------------------------- /di/extension/include/boost/di/extension/injections/concepts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/di/extension/include/boost/di/extension/injections/concepts.hpp -------------------------------------------------------------------------------- /di/extension/include/boost/di/extension/injections/extensible_injector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/di/extension/include/boost/di/extension/injections/extensible_injector.hpp -------------------------------------------------------------------------------- /di/extension/include/boost/di/extension/injections/factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/di/extension/include/boost/di/extension/injections/factory.hpp -------------------------------------------------------------------------------- /di/extension/include/boost/di/extension/injections/lazy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/di/extension/include/boost/di/extension/injections/lazy.hpp -------------------------------------------------------------------------------- /di/extension/include/boost/di/extension/injections/named_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/di/extension/include/boost/di/extension/injections/named_parameters.hpp -------------------------------------------------------------------------------- /di/extension/include/boost/di/extension/injections/shared_factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/di/extension/include/boost/di/extension/injections/shared_factory.hpp -------------------------------------------------------------------------------- /di/extension/include/boost/di/extension/injections/xml_injection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/di/extension/include/boost/di/extension/injections/xml_injection.hpp -------------------------------------------------------------------------------- /di/extension/include/boost/di/extension/injector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/di/extension/include/boost/di/extension/injector.hpp -------------------------------------------------------------------------------- /di/extension/include/boost/di/extension/policies/serialize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/di/extension/include/boost/di/extension/policies/serialize.hpp -------------------------------------------------------------------------------- /di/extension/include/boost/di/extension/policies/types_dumper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/di/extension/include/boost/di/extension/policies/types_dumper.hpp -------------------------------------------------------------------------------- /di/extension/include/boost/di/extension/policies/uml_dumper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/di/extension/include/boost/di/extension/policies/uml_dumper.hpp -------------------------------------------------------------------------------- /di/extension/include/boost/di/extension/providers/heap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/di/extension/include/boost/di/extension/providers/heap.hpp -------------------------------------------------------------------------------- /di/extension/include/boost/di/extension/providers/mocks_provider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/di/extension/include/boost/di/extension/providers/mocks_provider.hpp -------------------------------------------------------------------------------- /di/extension/include/boost/di/extension/providers/runtime_provider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/di/extension/include/boost/di/extension/providers/runtime_provider.hpp -------------------------------------------------------------------------------- /di/extension/include/boost/di/extension/scopes/scoped.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/di/extension/include/boost/di/extension/scopes/scoped.hpp -------------------------------------------------------------------------------- /di/extension/include/boost/di/extension/scopes/session.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/di/extension/include/boost/di/extension/scopes/session.hpp -------------------------------------------------------------------------------- /di/extension/include/boost/di/extension/scopes/shared.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/di/extension/include/boost/di/extension/scopes/shared.hpp -------------------------------------------------------------------------------- /di/include/boost/di.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/di/include/boost/di.hpp -------------------------------------------------------------------------------- /json/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/json/CMakeLists.txt -------------------------------------------------------------------------------- /json/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/json/json.hpp -------------------------------------------------------------------------------- /mingw-w64-toolchain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/mingw-w64-toolchain.txt -------------------------------------------------------------------------------- /mingw-w64-x64-toolchain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/mingw-w64-x64-toolchain.txt -------------------------------------------------------------------------------- /nowide/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/nowide/CMakeLists.txt -------------------------------------------------------------------------------- /nowide/include/boost/nowide/args.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/nowide/include/boost/nowide/args.hpp -------------------------------------------------------------------------------- /nowide/include/boost/nowide/cenv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/nowide/include/boost/nowide/cenv.hpp -------------------------------------------------------------------------------- /nowide/include/boost/nowide/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/nowide/include/boost/nowide/config.hpp -------------------------------------------------------------------------------- /nowide/include/boost/nowide/convert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/nowide/include/boost/nowide/convert.hpp -------------------------------------------------------------------------------- /nowide/include/boost/nowide/cstdio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/nowide/include/boost/nowide/cstdio.hpp -------------------------------------------------------------------------------- /nowide/include/boost/nowide/cstdlib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/nowide/include/boost/nowide/cstdlib.hpp -------------------------------------------------------------------------------- /nowide/include/boost/nowide/filebuf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/nowide/include/boost/nowide/filebuf.hpp -------------------------------------------------------------------------------- /nowide/include/boost/nowide/fstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/nowide/include/boost/nowide/fstream.hpp -------------------------------------------------------------------------------- /nowide/include/boost/nowide/integration/filesystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/nowide/include/boost/nowide/integration/filesystem.hpp -------------------------------------------------------------------------------- /nowide/include/boost/nowide/iostream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/nowide/include/boost/nowide/iostream.hpp -------------------------------------------------------------------------------- /nowide/include/boost/nowide/stackstring.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/nowide/include/boost/nowide/stackstring.hpp -------------------------------------------------------------------------------- /nowide/include/boost/nowide/system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/nowide/include/boost/nowide/system.hpp -------------------------------------------------------------------------------- /nowide/include/boost/nowide/utf8_codecvt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/nowide/include/boost/nowide/utf8_codecvt.hpp -------------------------------------------------------------------------------- /nowide/include/boost/nowide/windows.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/nowide/include/boost/nowide/windows.hpp -------------------------------------------------------------------------------- /nowide/src/iostream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/nowide/src/iostream.cpp -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/cache/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/cache/CMakeLists.txt -------------------------------------------------------------------------------- /src/cache/CacheSaver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/cache/CacheSaver.cpp -------------------------------------------------------------------------------- /src/cache/CacheSaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/cache/CacheSaver.h -------------------------------------------------------------------------------- /src/cache/CommonCache.cpp: -------------------------------------------------------------------------------- 1 | #include "CommonCache.h" 2 | -------------------------------------------------------------------------------- /src/cache/CommonCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/cache/CommonCache.h -------------------------------------------------------------------------------- /src/cache/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/cache/File.cpp -------------------------------------------------------------------------------- /src/cache/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/cache/File.h -------------------------------------------------------------------------------- /src/cache/FileBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/cache/FileBuffer.cpp -------------------------------------------------------------------------------- /src/cache/FileBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/cache/FileBuffer.h -------------------------------------------------------------------------------- /src/cache/FileCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/cache/FileCache.cpp -------------------------------------------------------------------------------- /src/cache/FileCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/cache/FileCache.h -------------------------------------------------------------------------------- /src/cache/MusicFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/cache/MusicFile.cpp -------------------------------------------------------------------------------- /src/cache/MusicFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/cache/MusicFile.h -------------------------------------------------------------------------------- /src/cache/PhotoCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/cache/PhotoCache.cpp -------------------------------------------------------------------------------- /src/cache/PhotoCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/cache/PhotoCache.h -------------------------------------------------------------------------------- /src/cache/PhotoFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/cache/PhotoFile.cpp -------------------------------------------------------------------------------- /src/cache/PhotoFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/cache/PhotoFile.h -------------------------------------------------------------------------------- /src/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/common/CMakeLists.txt -------------------------------------------------------------------------------- /src/common/ErrLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/common/ErrLogger.cpp -------------------------------------------------------------------------------- /src/common/ErrLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/common/ErrLogger.h -------------------------------------------------------------------------------- /src/common/IOBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/common/IOBlock.h -------------------------------------------------------------------------------- /src/common/IOBlockCreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/common/IOBlockCreator.h -------------------------------------------------------------------------------- /src/common/IdGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/common/IdGenerator.cpp -------------------------------------------------------------------------------- /src/common/IdGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/common/IdGenerator.h -------------------------------------------------------------------------------- /src/common/MusicFsException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/common/MusicFsException.cpp -------------------------------------------------------------------------------- /src/common/MusicFsException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/common/MusicFsException.h -------------------------------------------------------------------------------- /src/common/OverridableSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/common/OverridableSetting.h -------------------------------------------------------------------------------- /src/common/RealFs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/common/RealFs.cpp -------------------------------------------------------------------------------- /src/common/RealFs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/common/RealFs.h -------------------------------------------------------------------------------- /src/common/RemotePhotoFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/common/RemotePhotoFile.cpp -------------------------------------------------------------------------------- /src/common/RemotePhotoFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/common/RemotePhotoFile.h -------------------------------------------------------------------------------- /src/common/ThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/common/ThreadPool.cpp -------------------------------------------------------------------------------- /src/common/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/common/ThreadPool.h -------------------------------------------------------------------------------- /src/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/common/common.h -------------------------------------------------------------------------------- /src/diext/Storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/diext/Storage.h -------------------------------------------------------------------------------- /src/diext/common_di.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/diext/common_di.h -------------------------------------------------------------------------------- /src/diext/ext_factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/diext/ext_factory.hpp -------------------------------------------------------------------------------- /src/diext/goodscoped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/diext/goodscoped.h -------------------------------------------------------------------------------- /src/fs/0tests/AsyncFsManagerT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/0tests/AsyncFsManagerT.cpp -------------------------------------------------------------------------------- /src/fs/0tests/AudioFsT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/0tests/AudioFsT.cpp -------------------------------------------------------------------------------- /src/fs/0tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/0tests/CMakeLists.txt -------------------------------------------------------------------------------- /src/fs/0tests/FileNameT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/0tests/FileNameT.cpp -------------------------------------------------------------------------------- /src/fs/0tests/FsUtilsT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/0tests/FsUtilsT.cpp -------------------------------------------------------------------------------- /src/fs/0tests/PlaylistCtrlT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/0tests/PlaylistCtrlT.cpp -------------------------------------------------------------------------------- /src/fs/0tests/SimilarCtrlT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/0tests/SimilarCtrlT.cpp -------------------------------------------------------------------------------- /src/fs/0tests/data/CtrlM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/0tests/data/CtrlM.h -------------------------------------------------------------------------------- /src/fs/0tests/data/FileCacheM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/0tests/data/FileCacheM.h -------------------------------------------------------------------------------- /src/fs/0tests/data/FileManagerM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/0tests/data/FileManagerM.h -------------------------------------------------------------------------------- /src/fs/0tests/data/FileObtainerM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/0tests/data/FileObtainerM.h -------------------------------------------------------------------------------- /src/fs/0tests/data/FsHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/0tests/data/FsHelper.h -------------------------------------------------------------------------------- /src/fs/0tests/data/PhotoCacheM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/0tests/data/PhotoCacheM.h -------------------------------------------------------------------------------- /src/fs/0tests/data/PhotoManagerM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/0tests/data/PhotoManagerM.h -------------------------------------------------------------------------------- /src/fs/0tests/data/RealFsM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/0tests/data/RealFsM.h -------------------------------------------------------------------------------- /src/fs/0tests/data/ThreadPoolM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/0tests/data/ThreadPoolM.h -------------------------------------------------------------------------------- /src/fs/AsyncFsManager.cpp: -------------------------------------------------------------------------------- 1 | #include "AsyncFsManager.h" 2 | -------------------------------------------------------------------------------- /src/fs/AsyncFsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/AsyncFsManager.h -------------------------------------------------------------------------------- /src/fs/AudioFs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/AudioFs.h -------------------------------------------------------------------------------- /src/fs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/CMakeLists.txt -------------------------------------------------------------------------------- /src/fs/Dir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/Dir.cpp -------------------------------------------------------------------------------- /src/fs/Dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/Dir.h -------------------------------------------------------------------------------- /src/fs/DirOrFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/DirOrFile.cpp -------------------------------------------------------------------------------- /src/fs/DirOrFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/DirOrFile.h -------------------------------------------------------------------------------- /src/fs/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/File.cpp -------------------------------------------------------------------------------- /src/fs/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/File.h -------------------------------------------------------------------------------- /src/fs/FileInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/FileInfo.cpp -------------------------------------------------------------------------------- /src/fs/FileInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/FileInfo.h -------------------------------------------------------------------------------- /src/fs/FileName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/FileName.cpp -------------------------------------------------------------------------------- /src/fs/FileName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/FileName.h -------------------------------------------------------------------------------- /src/fs/FileObtainer.cpp: -------------------------------------------------------------------------------- 1 | #include "FileObtainer.h" 2 | -------------------------------------------------------------------------------- /src/fs/FileObtainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/FileObtainer.h -------------------------------------------------------------------------------- /src/fs/FsException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/FsException.cpp -------------------------------------------------------------------------------- /src/fs/FsException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/FsException.h -------------------------------------------------------------------------------- /src/fs/FsPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/FsPath.cpp -------------------------------------------------------------------------------- /src/fs/FsPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/FsPath.h -------------------------------------------------------------------------------- /src/fs/FsSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/FsSettings.cpp -------------------------------------------------------------------------------- /src/fs/FsSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/FsSettings.h -------------------------------------------------------------------------------- /src/fs/FsUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/FsUtils.cpp -------------------------------------------------------------------------------- /src/fs/FsUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/FsUtils.h -------------------------------------------------------------------------------- /src/fs/Mp3FileName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/Mp3FileName.cpp -------------------------------------------------------------------------------- /src/fs/Mp3FileName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/Mp3FileName.h -------------------------------------------------------------------------------- /src/fs/OffsetCnt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/OffsetCnt.cpp -------------------------------------------------------------------------------- /src/fs/OffsetCnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/OffsetCnt.h -------------------------------------------------------------------------------- /src/fs/OffsetCntName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/OffsetCntName.cpp -------------------------------------------------------------------------------- /src/fs/OffsetCntName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/OffsetCntName.h -------------------------------------------------------------------------------- /src/fs/OffsetCntPlaylist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/OffsetCntPlaylist.cpp -------------------------------------------------------------------------------- /src/fs/OffsetCntPlaylist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/OffsetCntPlaylist.h -------------------------------------------------------------------------------- /src/fs/OffsetCntRemoteFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/OffsetCntRemoteFile.cpp -------------------------------------------------------------------------------- /src/fs/OffsetCntRemoteFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/OffsetCntRemoteFile.h -------------------------------------------------------------------------------- /src/fs/VkException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/VkException.cpp -------------------------------------------------------------------------------- /src/fs/VkException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/VkException.h -------------------------------------------------------------------------------- /src/fs/actions/DeleteDirAct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/actions/DeleteDirAct.h -------------------------------------------------------------------------------- /src/fs/actions/DeleteFileAct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/actions/DeleteFileAct.h -------------------------------------------------------------------------------- /src/fs/actions/NumberAct.cpp: -------------------------------------------------------------------------------- 1 | #include "NumberAct.h" 2 | -------------------------------------------------------------------------------- /src/fs/actions/NumberAct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/actions/NumberAct.h -------------------------------------------------------------------------------- /src/fs/actions/RefreshAct.cpp: -------------------------------------------------------------------------------- 1 | #include "RefreshAct.h" 2 | -------------------------------------------------------------------------------- /src/fs/actions/RefreshAct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/actions/RefreshAct.h -------------------------------------------------------------------------------- /src/fs/actions/RemoveRefreshDirAct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/actions/RemoveRefreshDirAct.h -------------------------------------------------------------------------------- /src/fs/actions/act.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/actions/act.h -------------------------------------------------------------------------------- /src/fs/common_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/common_fs.h -------------------------------------------------------------------------------- /src/fs/ctrl/AddToMyAudiosCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/ctrl/AddToMyAudiosCtrl.h -------------------------------------------------------------------------------- /src/fs/ctrl/DummyDirWrapper.cpp: -------------------------------------------------------------------------------- 1 | #include "DummyDirWrapper.h" 2 | -------------------------------------------------------------------------------- /src/fs/ctrl/DummyDirWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/ctrl/DummyDirWrapper.h -------------------------------------------------------------------------------- /src/fs/ctrl/MyAudiosCtrl.cpp: -------------------------------------------------------------------------------- 1 | #include "MyAudiosCtrl.h" 2 | -------------------------------------------------------------------------------- /src/fs/ctrl/MyAudiosCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/ctrl/MyAudiosCtrl.h -------------------------------------------------------------------------------- /src/fs/ctrl/PlaylistCtrl.cpp: -------------------------------------------------------------------------------- 1 | #include "PlaylistCtrl.h" 2 | -------------------------------------------------------------------------------- /src/fs/ctrl/PlaylistCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/ctrl/PlaylistCtrl.h -------------------------------------------------------------------------------- /src/fs/ctrl/RedirectCtrl.cpp: -------------------------------------------------------------------------------- 1 | #include "RedirectCtrl.h" 2 | -------------------------------------------------------------------------------- /src/fs/ctrl/RedirectCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/ctrl/RedirectCtrl.h -------------------------------------------------------------------------------- /src/fs/ctrl/RemoteFileWrapper.cpp: -------------------------------------------------------------------------------- 1 | #include "RemoteFileWrapper.h" 2 | -------------------------------------------------------------------------------- /src/fs/ctrl/RemoteFileWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/ctrl/RemoteFileWrapper.h -------------------------------------------------------------------------------- /src/fs/ctrl/RootCtrl.cpp: -------------------------------------------------------------------------------- 1 | #include "RootCtrl.h" 2 | -------------------------------------------------------------------------------- /src/fs/ctrl/RootCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/ctrl/RootCtrl.h -------------------------------------------------------------------------------- /src/fs/ctrl/SearchSongNameArtistHelper.cpp: -------------------------------------------------------------------------------- 1 | #include "SearchSongNameArtistHelper.h" 2 | -------------------------------------------------------------------------------- /src/fs/ctrl/SearchSongNameArtistHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/ctrl/SearchSongNameArtistHelper.h -------------------------------------------------------------------------------- /src/fs/ctrl/SearchSongNameCtrl.cpp: -------------------------------------------------------------------------------- 1 | #include "SearchSongNameCtrl.h" 2 | -------------------------------------------------------------------------------- /src/fs/ctrl/SearchSongNameCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/ctrl/SearchSongNameCtrl.h -------------------------------------------------------------------------------- /src/fs/ctrl/SearchSongNameSongHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/ctrl/SearchSongNameSongHelper.cpp -------------------------------------------------------------------------------- /src/fs/ctrl/SearchSongNameSongHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/ctrl/SearchSongNameSongHelper.h -------------------------------------------------------------------------------- /src/fs/ctrl/SimilarCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/ctrl/SimilarCtrl.h -------------------------------------------------------------------------------- /src/fs/ctrl/SingleDirCtrl.cpp: -------------------------------------------------------------------------------- 1 | #include "SingleDirCtrl.h" 2 | -------------------------------------------------------------------------------- /src/fs/ctrl/SingleDirCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/ctrl/SingleDirCtrl.h -------------------------------------------------------------------------------- /src/fs/ctrl/ThrowExCtrl.cpp: -------------------------------------------------------------------------------- 1 | #include "ThrowExCtrl.h" 2 | -------------------------------------------------------------------------------- /src/fs/ctrl/ThrowExCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/ctrl/ThrowExCtrl.h -------------------------------------------------------------------------------- /src/fs/ctrl/ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fs/ctrl/ctrl.h -------------------------------------------------------------------------------- /src/fuse-utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fuse-utils/CMakeLists.txt -------------------------------------------------------------------------------- /src/fuse-utils/fuse_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/fuse-utils/fuse_wrap.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main/Application.cpp: -------------------------------------------------------------------------------- 1 | #include "Application.h" 2 | -------------------------------------------------------------------------------- /src/main/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/main/Application.h -------------------------------------------------------------------------------- /src/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/main/CMakeLists.txt -------------------------------------------------------------------------------- /src/main/FakeFs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/main/FakeFs.h -------------------------------------------------------------------------------- /src/main/NoReportException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/main/NoReportException.cpp -------------------------------------------------------------------------------- /src/main/NoReportException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/main/NoReportException.h -------------------------------------------------------------------------------- /src/main/ProgramOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/main/ProgramOptions.cpp -------------------------------------------------------------------------------- /src/main/ProgramOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/main/ProgramOptions.h -------------------------------------------------------------------------------- /src/mp3core/0tests/BlockingBufferT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/mp3core/0tests/BlockingBufferT.cpp -------------------------------------------------------------------------------- /src/mp3core/0tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/mp3core/0tests/CMakeLists.txt -------------------------------------------------------------------------------- /src/mp3core/0tests/FileManagerT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/mp3core/0tests/FileManagerT.cpp -------------------------------------------------------------------------------- /src/mp3core/0tests/FileProcessorMp3ParserT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/mp3core/0tests/FileProcessorMp3ParserT.cpp -------------------------------------------------------------------------------- /src/mp3core/0tests/FileProcessorT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/mp3core/0tests/FileProcessorT.cpp -------------------------------------------------------------------------------- /src/mp3core/0tests/Mp3ParserT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/mp3core/0tests/Mp3ParserT.cpp -------------------------------------------------------------------------------- /src/mp3core/0tests/PhotoProcessorT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/mp3core/0tests/PhotoProcessorT.cpp -------------------------------------------------------------------------------- /src/mp3core/0tests/data/FileM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/mp3core/0tests/data/FileM.h -------------------------------------------------------------------------------- /src/mp3core/0tests/data/Mp3Files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/mp3core/0tests/data/Mp3Files.h -------------------------------------------------------------------------------- /src/mp3core/0tests/data/MusicData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/mp3core/0tests/data/MusicData.h -------------------------------------------------------------------------------- /src/mp3core/0tests/data/ParserM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/mp3core/0tests/data/ParserM.h -------------------------------------------------------------------------------- /src/mp3core/0tests/data/StreamM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/mp3core/0tests/data/StreamM.h -------------------------------------------------------------------------------- /src/mp3core/0tests/data/TestBlockCreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/mp3core/0tests/data/TestBlockCreator.h -------------------------------------------------------------------------------- /src/mp3core/0tests/data/ThreadPoolM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/mp3core/0tests/data/ThreadPoolM.h -------------------------------------------------------------------------------- /src/mp3core/0tests/data/Writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/mp3core/0tests/data/Writer.h -------------------------------------------------------------------------------- /src/mp3core/BlockingBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/mp3core/BlockingBuffer.cpp -------------------------------------------------------------------------------- /src/mp3core/BlockingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/mp3core/BlockingBuffer.h -------------------------------------------------------------------------------- /src/mp3core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/mp3core/CMakeLists.txt -------------------------------------------------------------------------------- /src/mp3core/FileManager.cpp: -------------------------------------------------------------------------------- 1 | #include "FileManager.h" 2 | 3 | using namespace vk_music_fs; 4 | -------------------------------------------------------------------------------- /src/mp3core/FileManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/mp3core/FileManager.h -------------------------------------------------------------------------------- /src/mp3core/FileProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/mp3core/FileProcessor.cpp -------------------------------------------------------------------------------- /src/mp3core/FileProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/mp3core/FileProcessor.h -------------------------------------------------------------------------------- /src/mp3core/FileProcessorCreator.cpp: -------------------------------------------------------------------------------- 1 | #include "FileProcessorCreator.h" 2 | -------------------------------------------------------------------------------- /src/mp3core/FileProcessorCreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/mp3core/FileProcessorCreator.h -------------------------------------------------------------------------------- /src/mp3core/Mp3Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/mp3core/Mp3Parser.cpp -------------------------------------------------------------------------------- /src/mp3core/Mp3Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/mp3core/Mp3Parser.h -------------------------------------------------------------------------------- /src/mp3core/PhotoProcessor.cpp: -------------------------------------------------------------------------------- 1 | #include "PhotoProcessor.h" 2 | -------------------------------------------------------------------------------- /src/mp3core/PhotoProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/mp3core/PhotoProcessor.h -------------------------------------------------------------------------------- /src/mp3core/PhotoProcessorCreator.cpp: -------------------------------------------------------------------------------- 1 | #include "PhotoProcessorCreator.h" 2 | -------------------------------------------------------------------------------- /src/mp3core/PhotoProcessorCreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/mp3core/PhotoProcessorCreator.h -------------------------------------------------------------------------------- /src/mp3core/Reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/mp3core/Reader.cpp -------------------------------------------------------------------------------- /src/mp3core/Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/mp3core/Reader.h -------------------------------------------------------------------------------- /src/mp3core/RemoteException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/mp3core/RemoteException.cpp -------------------------------------------------------------------------------- /src/mp3core/RemoteException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/mp3core/RemoteException.h -------------------------------------------------------------------------------- /src/mp3core/RemoteFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/mp3core/RemoteFile.cpp -------------------------------------------------------------------------------- /src/mp3core/RemoteFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/mp3core/RemoteFile.h -------------------------------------------------------------------------------- /src/mp3core/TagSizeCalculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/mp3core/TagSizeCalculator.cpp -------------------------------------------------------------------------------- /src/mp3core/TagSizeCalculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/mp3core/TagSizeCalculator.h -------------------------------------------------------------------------------- /src/mp3core/common_mp3core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/mp3core/common_mp3core.h -------------------------------------------------------------------------------- /src/net/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/net/CMakeLists.txt -------------------------------------------------------------------------------- /src/net/HttpException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/net/HttpException.cpp -------------------------------------------------------------------------------- /src/net/HttpException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/net/HttpException.h -------------------------------------------------------------------------------- /src/net/HttpStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/net/HttpStream.cpp -------------------------------------------------------------------------------- /src/net/HttpStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/net/HttpStream.h -------------------------------------------------------------------------------- /src/net/HttpStreamCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/net/HttpStreamCommon.cpp -------------------------------------------------------------------------------- /src/net/HttpStreamCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/net/HttpStreamCommon.h -------------------------------------------------------------------------------- /src/net/Mp3SizeObtainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/net/Mp3SizeObtainer.cpp -------------------------------------------------------------------------------- /src/net/Mp3SizeObtainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/net/Mp3SizeObtainer.h -------------------------------------------------------------------------------- /src/net/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/net/Timer.h -------------------------------------------------------------------------------- /src/net/VkApiQueryMaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/net/VkApiQueryMaker.cpp -------------------------------------------------------------------------------- /src/net/VkApiQueryMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/net/VkApiQueryMaker.h -------------------------------------------------------------------------------- /src/net/VkSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/net/VkSettings.h -------------------------------------------------------------------------------- /src/net/WrongSizeException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/net/WrongSizeException.cpp -------------------------------------------------------------------------------- /src/net/WrongSizeException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/net/WrongSizeException.h -------------------------------------------------------------------------------- /src/net/common_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/net/common_net.h -------------------------------------------------------------------------------- /src/token/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/token/CMakeLists.txt -------------------------------------------------------------------------------- /src/token/ProtobufException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/token/ProtobufException.cpp -------------------------------------------------------------------------------- /src/token/ProtobufException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/token/ProtobufException.h -------------------------------------------------------------------------------- /src/token/SmallProtobufHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/token/SmallProtobufHelper.cpp -------------------------------------------------------------------------------- /src/token/SmallProtobufHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/token/SmallProtobufHelper.h -------------------------------------------------------------------------------- /src/token/TokenException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/token/TokenException.cpp -------------------------------------------------------------------------------- /src/token/TokenException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/token/TokenException.h -------------------------------------------------------------------------------- /src/token/TokenReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/token/TokenReceiver.cpp -------------------------------------------------------------------------------- /src/token/TokenReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/token/TokenReceiver.h -------------------------------------------------------------------------------- /src/token/common_token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/src/token/common_token.h -------------------------------------------------------------------------------- /taglib_mod/3rdparty/utf8-cpp/checked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/3rdparty/utf8-cpp/checked.h -------------------------------------------------------------------------------- /taglib_mod/3rdparty/utf8-cpp/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/3rdparty/utf8-cpp/core.h -------------------------------------------------------------------------------- /taglib_mod/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/CMakeLists.txt -------------------------------------------------------------------------------- /taglib_mod/audioproperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/audioproperties.cpp -------------------------------------------------------------------------------- /taglib_mod/audioproperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/audioproperties.h -------------------------------------------------------------------------------- /taglib_mod/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/config.h -------------------------------------------------------------------------------- /taglib_mod/fileref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/fileref.cpp -------------------------------------------------------------------------------- /taglib_mod/fileref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/fileref.h -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v1/id3v1genres.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v1/id3v1genres.cpp -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v1/id3v1genres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v1/id3v1genres.h -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/frames/attachedpictureframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/frames/attachedpictureframe.cpp -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/frames/attachedpictureframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/frames/attachedpictureframe.h -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/frames/chapterframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/frames/chapterframe.cpp -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/frames/chapterframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/frames/chapterframe.h -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/frames/commentsframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/frames/commentsframe.cpp -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/frames/commentsframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/frames/commentsframe.h -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/frames/eventtimingcodesframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/frames/eventtimingcodesframe.cpp -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/frames/eventtimingcodesframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/frames/eventtimingcodesframe.h -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/frames/generalencapsulatedobjectframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/frames/generalencapsulatedobjectframe.cpp -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/frames/generalencapsulatedobjectframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/frames/generalencapsulatedobjectframe.h -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/frames/ownershipframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/frames/ownershipframe.cpp -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/frames/ownershipframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/frames/ownershipframe.h -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/frames/podcastframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/frames/podcastframe.cpp -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/frames/podcastframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/frames/podcastframe.h -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/frames/popularimeterframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/frames/popularimeterframe.cpp -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/frames/popularimeterframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/frames/popularimeterframe.h -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/frames/privateframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/frames/privateframe.cpp -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/frames/privateframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/frames/privateframe.h -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/frames/relativevolumeframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/frames/relativevolumeframe.cpp -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/frames/relativevolumeframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/frames/relativevolumeframe.h -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/frames/synchronizedlyricsframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/frames/synchronizedlyricsframe.cpp -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/frames/synchronizedlyricsframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/frames/synchronizedlyricsframe.h -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/frames/tableofcontentsframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/frames/tableofcontentsframe.cpp -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/frames/tableofcontentsframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/frames/tableofcontentsframe.h -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/frames/textidentificationframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/frames/textidentificationframe.cpp -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/frames/textidentificationframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/frames/textidentificationframe.h -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/frames/uniquefileidentifierframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/frames/uniquefileidentifierframe.cpp -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/frames/uniquefileidentifierframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/frames/uniquefileidentifierframe.h -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/frames/unknownframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/frames/unknownframe.cpp -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/frames/unknownframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/frames/unknownframe.h -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/frames/unsynchronizedlyricsframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/frames/unsynchronizedlyricsframe.cpp -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/frames/unsynchronizedlyricsframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/frames/unsynchronizedlyricsframe.h -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/frames/urllinkframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/frames/urllinkframe.cpp -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/frames/urllinkframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/frames/urllinkframe.h -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/id3v2.2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/id3v2.2.0.txt -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/id3v2.3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/id3v2.3.0.txt -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/id3v2.4.0-frames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/id3v2.4.0-frames.txt -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/id3v2.4.0-structure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/id3v2.4.0-structure.txt -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/id3v2extendedheader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/id3v2extendedheader.cpp -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/id3v2extendedheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/id3v2extendedheader.h -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/id3v2footer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/id3v2footer.cpp -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/id3v2footer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/id3v2footer.h -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/id3v2frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/id3v2frame.cpp -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/id3v2frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/id3v2frame.h -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/id3v2framefactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/id3v2framefactory.cpp -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/id3v2framefactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/id3v2framefactory.h -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/id3v2header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/id3v2header.cpp -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/id3v2header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/id3v2header.h -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/id3v2synchdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/id3v2synchdata.cpp -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/id3v2synchdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/id3v2synchdata.h -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/id3v2tag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/id3v2tag.cpp -------------------------------------------------------------------------------- /taglib_mod/mpeg/id3v2/id3v2tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/id3v2/id3v2tag.h -------------------------------------------------------------------------------- /taglib_mod/mpeg/mpegfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/mpegfile.cpp -------------------------------------------------------------------------------- /taglib_mod/mpeg/mpegfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/mpegfile.h -------------------------------------------------------------------------------- /taglib_mod/mpeg/mpegheader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/mpegheader.cpp -------------------------------------------------------------------------------- /taglib_mod/mpeg/mpegheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/mpegheader.h -------------------------------------------------------------------------------- /taglib_mod/mpeg/mpegproperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/mpegproperties.cpp -------------------------------------------------------------------------------- /taglib_mod/mpeg/mpegproperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/mpegproperties.h -------------------------------------------------------------------------------- /taglib_mod/mpeg/mpegutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/mpegutils.h -------------------------------------------------------------------------------- /taglib_mod/mpeg/xingheader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/xingheader.cpp -------------------------------------------------------------------------------- /taglib_mod/mpeg/xingheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/mpeg/xingheader.h -------------------------------------------------------------------------------- /taglib_mod/tag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/tag.cpp -------------------------------------------------------------------------------- /taglib_mod/tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/tag.h -------------------------------------------------------------------------------- /taglib_mod/taglib_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/taglib_config.h -------------------------------------------------------------------------------- /taglib_mod/taglib_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/taglib_export.h -------------------------------------------------------------------------------- /taglib_mod/tagunion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/tagunion.cpp -------------------------------------------------------------------------------- /taglib_mod/tagunion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/tagunion.h -------------------------------------------------------------------------------- /taglib_mod/tagutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/tagutils.cpp -------------------------------------------------------------------------------- /taglib_mod/tagutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/tagutils.h -------------------------------------------------------------------------------- /taglib_mod/toolkit/taglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/toolkit/taglib.h -------------------------------------------------------------------------------- /taglib_mod/toolkit/tbytevector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/toolkit/tbytevector.cpp -------------------------------------------------------------------------------- /taglib_mod/toolkit/tbytevector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/toolkit/tbytevector.h -------------------------------------------------------------------------------- /taglib_mod/toolkit/tbytevectorlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/toolkit/tbytevectorlist.cpp -------------------------------------------------------------------------------- /taglib_mod/toolkit/tbytevectorlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/toolkit/tbytevectorlist.h -------------------------------------------------------------------------------- /taglib_mod/toolkit/tbytevectorstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/toolkit/tbytevectorstream.cpp -------------------------------------------------------------------------------- /taglib_mod/toolkit/tbytevectorstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/toolkit/tbytevectorstream.h -------------------------------------------------------------------------------- /taglib_mod/toolkit/tdebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/toolkit/tdebug.cpp -------------------------------------------------------------------------------- /taglib_mod/toolkit/tdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/toolkit/tdebug.h -------------------------------------------------------------------------------- /taglib_mod/toolkit/tdebuglistener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/toolkit/tdebuglistener.cpp -------------------------------------------------------------------------------- /taglib_mod/toolkit/tdebuglistener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/toolkit/tdebuglistener.h -------------------------------------------------------------------------------- /taglib_mod/toolkit/tfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/toolkit/tfile.cpp -------------------------------------------------------------------------------- /taglib_mod/toolkit/tfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/toolkit/tfile.h -------------------------------------------------------------------------------- /taglib_mod/toolkit/tfilestream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/toolkit/tfilestream.cpp -------------------------------------------------------------------------------- /taglib_mod/toolkit/tfilestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/toolkit/tfilestream.h -------------------------------------------------------------------------------- /taglib_mod/toolkit/tiostream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/toolkit/tiostream.cpp -------------------------------------------------------------------------------- /taglib_mod/toolkit/tiostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/toolkit/tiostream.h -------------------------------------------------------------------------------- /taglib_mod/toolkit/tlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/toolkit/tlist.h -------------------------------------------------------------------------------- /taglib_mod/toolkit/tlist.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/toolkit/tlist.tcc -------------------------------------------------------------------------------- /taglib_mod/toolkit/tmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/toolkit/tmap.h -------------------------------------------------------------------------------- /taglib_mod/toolkit/tmap.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/toolkit/tmap.tcc -------------------------------------------------------------------------------- /taglib_mod/toolkit/tpropertymap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/toolkit/tpropertymap.cpp -------------------------------------------------------------------------------- /taglib_mod/toolkit/tpropertymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/toolkit/tpropertymap.h -------------------------------------------------------------------------------- /taglib_mod/toolkit/trefcounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/toolkit/trefcounter.cpp -------------------------------------------------------------------------------- /taglib_mod/toolkit/trefcounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/toolkit/trefcounter.h -------------------------------------------------------------------------------- /taglib_mod/toolkit/tstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/toolkit/tstring.cpp -------------------------------------------------------------------------------- /taglib_mod/toolkit/tstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/toolkit/tstring.h -------------------------------------------------------------------------------- /taglib_mod/toolkit/tstringlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/toolkit/tstringlist.cpp -------------------------------------------------------------------------------- /taglib_mod/toolkit/tstringlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/toolkit/tstringlist.h -------------------------------------------------------------------------------- /taglib_mod/toolkit/tutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/toolkit/tutils.h -------------------------------------------------------------------------------- /taglib_mod/toolkit/tzlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/toolkit/tzlib.cpp -------------------------------------------------------------------------------- /taglib_mod/toolkit/tzlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodka2/vk-music-fs/HEAD/taglib_mod/toolkit/tzlib.h --------------------------------------------------------------------------------