Mercurial > minori
view include/track/media.h @ 153:bd439dd6ffc5
*: make win stuff actually work, rename bsd.cc to xnu.cc
It's been OS X only for ages, and these functions are different between
most BSDs anyway
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Wed, 15 Nov 2023 13:28:18 -0500 |
parents | 28842a8d0c6b |
children | d43d68408d3c |
line wrap: on
line source
#ifndef __track__media_h #define __track__media_h #include "core/filesystem.h" #include <unordered_map> #include <string> #include <vector> namespace Track { namespace Media { bool GetCurrentlyPlaying(std::vector<std::string>& vec); 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