mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-02 11:02:38 +01:00
83883cee45
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5934 8ced0084-cf51-0410-be5f-012b33b47a6e
18 lines
283 B
C++
18 lines
283 B
C++
|
|
#ifndef __GECKOCODECONFIG_h__
|
|
#define __GECKOCODECONFIG_h__
|
|
|
|
#include "GeckoCode.h"
|
|
|
|
#include "IniFile.h"
|
|
|
|
namespace Gecko
|
|
{
|
|
|
|
void LoadCodes(const IniFile& inifile, std::vector<GeckoCode>& gcodes);
|
|
void SaveCodes(IniFile& inifile, const std::vector<GeckoCode>& gcodes);
|
|
|
|
};
|
|
|
|
#endif
|