ES-DE/es-app/src/Gamelist.h

21 lines
484 B
C++

// SPDX-License-Identifier: MIT
//
// EmulationStation Desktop Edition
// Gamelist.h
//
// Parses and updates the gamelist.xml files.
//
#ifndef ES_APP_GAME_LIST_H
#define ES_APP_GAME_LIST_H
class SystemData;
// 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);
#endif // ES_APP_GAME_LIST_H