Mercurial > minori
view include/track/media.h @ 137:69db40272acd
dep/animia: [WIP] huge refactor
this WILL NOT compile, because lots of code has been changed
and every API in the original codebase has been removed.
note that this api setup is not exactly permanent...
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Fri, 10 Nov 2023 13:52:47 -0500 |
parents | 0a458cb26ff4 |
children | 28842a8d0c6b |
line wrap: on
line source
#ifndef __track__media_h #define __track__media_h #include "core/filesystem.h" #include <unordered_map> namespace Track { namespace Media { std::filesystem::path GetCurrentPlaying(); std::unordered_map<std::string, std::string> GetFileElements(const std::string& basename); std::unordered_map<std::string, std::string> GetFileElements(const std::filesystem::path& path); } // namespace Media } // namespace Track #endif // __track__media_h