mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-11 08:39:13 +01:00
f91292eff2
Using an out-param is a leftover from C++03. Action Replay codes already return the vector of codes by value as well.
17 lines
366 B
C++
17 lines
366 B
C++
// Copyright 2010 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <vector>
|
|
#include "Core/GeckoCode.h"
|
|
|
|
class IniFile;
|
|
|
|
namespace Gecko
|
|
{
|
|
std::vector<GeckoCode> LoadCodes(const IniFile& globalIni, const IniFile& localIni);
|
|
void SaveCodes(IniFile& inifile, const std::vector<GeckoCode>& gcodes);
|
|
}
|