2020-05-24 08:29:29 +00:00
|
|
|
//
|
2020-06-21 12:25:28 +00:00
|
|
|
// Gamelist.h
|
2020-05-24 08:29:29 +00:00
|
|
|
//
|
2020-06-21 12:25:28 +00:00
|
|
|
// Parses and updates the gamelist.xml files.
|
2020-05-24 08:29:29 +00:00
|
|
|
//
|
|
|
|
|
2014-06-25 16:29:58 +00:00
|
|
|
#pragma once
|
2017-10-31 17:12:50 +00:00
|
|
|
#ifndef ES_APP_GAME_LIST_H
|
|
|
|
#define ES_APP_GAME_LIST_H
|
2014-06-25 16:29:58 +00:00
|
|
|
|
|
|
|
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);
|
2017-10-31 17:12:50 +00:00
|
|
|
|
|
|
|
#endif // ES_APP_GAME_LIST_H
|