23 lines
615 B
C++
23 lines
615 B
C++
// Copyright 2010 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <optional>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "Core/GeckoCode.h"
|
|
|
|
class IniFile;
|
|
|
|
namespace Gecko
|
|
{
|
|
std::vector<GeckoCode> LoadCodes(const IniFile& globalIni, const IniFile& localIni);
|
|
std::vector<GeckoCode> DownloadCodes(std::string gametdb_id, bool* succeeded,
|
|
bool use_https = true);
|
|
void SaveCodes(IniFile& inifile, const std::vector<GeckoCode>& gcodes);
|
|
|
|
std::optional<GeckoCode::Code> DeserializeLine(const std::string& line);
|
|
} // namespace Gecko
|