mirror of
https://gitlab.com/es-de/emulationstation-de.git
synced 2025-04-02 10:51:45 -04:00
24 lines
591 B
C++
24 lines
591 B
C++
// SPDX-License-Identifier: MIT
|
|
//
|
|
// ES-DE Frontend
|
|
// GamelistFileParser.h
|
|
//
|
|
// Parses and updates the gamelist.xml files.
|
|
//
|
|
|
|
#ifndef ES_APP_GAMELIST_FILE_PARSER_H
|
|
#define ES_APP_GAMELIST_FILE_PARSER_H
|
|
|
|
class SystemData;
|
|
|
|
namespace GamelistFileParser
|
|
{
|
|
// Loads gamelist.xml data into a SystemData.
|
|
void parseGamelist(SystemData* system);
|
|
|
|
// Writes currently loaded metadata for a SystemData to gamelist.xml.
|
|
void updateGamelist(SystemData* system, bool updateAlternativeEmulator = false);
|
|
|
|
} // namespace GamelistFileParser
|
|
|
|
#endif // ES_APP_GAMELIST_FILE_PARSER_H
|