annotate include/track/media.h @ 114:ab191e28e69d
*: add initial torrent stuff
WOAH!
these checkboxes are a pain in my fucking ass
author |
Paper <mrpapersonic@gmail.com> |
date |
Tue, 07 Nov 2023 08:03:42 -0500 |
parents |
825506f0e221 |
children |
0a458cb26ff4 |
rev |
line source |
64
|
1 #ifndef __track__media_h
|
|
2 #define __track__media_h
|
|
3 #include "core/filesystem.h"
|
80
|
4 #include <unordered_map>
|
64
|
5
|
|
6 namespace Track {
|
|
7 namespace Media {
|
|
8
|
|
9 Filesystem::Path GetCurrentPlaying();
|
114
|
10 std::unordered_map<std::string, std::string> GetFileElements(std::string basename);
|
80
|
11 std::unordered_map<std::string, std::string> GetFileElements(Filesystem::Path path);
|
64
|
12
|
|
13 } // namespace Media
|
|
14 } // namespace Track
|
|
15
|
|
16 #endif // __track__media_h
|