comparison include/track/constants.h @ 118:39521c47c7a3

*: another huge megacommit, SORRY The torrents page works a lot better now Added the edit option to the anime list right click menu Vectorized currently playing files Available player and extensions are now loaded at runtime from files in (dotpath)/players.json and (dotpath)/extensions.json These paths are not permanent and will likely be moved to (dotpath)/recognition ... ... ...
author Paper <mrpapersonic@gmail.com>
date Tue, 07 Nov 2023 23:40:54 -0500
parents 8b65c417c225
children
comparison
equal deleted inserted replaced
117:2c1b6782e1d0 118:39521c47c7a3
1 #ifndef __track__constants_h 1 #ifndef __track__constants_h
2 #define __track__constants_h 2 #define __track__constants_h
3 #include <string> 3 #include <string>
4 #include <vector> 4 #include <vector>
5 5
6 extern const std::vector<std::string> media_extensions; 6 namespace Track {
7 extern const std::vector<std::string> media_players; 7 namespace Constants {
8
9 extern const std::vector<std::string> default_media_extensions;
10 extern const std::vector<std::string> default_media_players;
11
12 }
13 }
8 14
9 #endif // __track__constants_h 15 #endif // __track__constants_h