GameList: Support playlist entries

This commit is contained in:
Connor McLaughlin
2020-08-15 19:54:33 +10:00
parent d4665e8b22
commit 8fa965a1ac
2 changed files with 53 additions and 2 deletions

View File

@@ -16,7 +16,8 @@ class SettingsInterface;
enum class GameListEntryType
{
Disc,
PSExe
PSExe,
Playlist
};
enum class GameListCompatibilityRating
@@ -140,6 +141,7 @@ private:
class CompatibilityListVisitor;
static bool GetExeListEntry(const char* path, GameListEntry* entry);
bool GetM3UListEntry(const char* path, GameListEntry* entry);
bool GetGameListEntry(const std::string& path, GameListEntry* entry);
bool GetGameListEntryFromCache(const std::string& path, GameListEntry* entry);