2013-04-17 22:43:11 -04:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2010-07-22 01:48:48 +00:00
|
|
|
|
2014-02-10 13:54:46 -05:00
|
|
|
#pragma once
|
2010-07-22 01:48:48 +00:00
|
|
|
|
2014-07-27 13:37:09 -04:00
|
|
|
#include <vector>
|
2014-02-17 05:18:15 -05:00
|
|
|
#include "Core/GeckoCode.h"
|
2010-07-22 01:48:48 +00:00
|
|
|
|
2014-07-27 13:37:09 -04:00
|
|
|
class IniFile;
|
|
|
|
|
2010-07-22 01:48:48 +00:00
|
|
|
namespace Gecko
|
|
|
|
{
|
|
|
|
|
2013-09-23 02:39:14 -04:00
|
|
|
void LoadCodes(const IniFile& globalIni, const IniFile& localIni, std::vector<GeckoCode>& gcodes);
|
2010-07-22 01:48:48 +00:00
|
|
|
void SaveCodes(IniFile& inifile, const std::vector<GeckoCode>& gcodes);
|
|
|
|
|
2014-09-11 13:00:40 -04:00
|
|
|
}
|