// Copyright 2013 Dolphin Emulator Project // Licensed under GPLv2 // Refer to the license.txt file included. #ifndef __GECKOCODECONFIG_h__ #define __GECKOCODECONFIG_h__ #include "GeckoCode.h" #include "IniFile.h" namespace Gecko { void LoadCodes(const IniFile& globalIni, const IniFile& localIni, std::vector& gcodes); void SaveCodes(IniFile& inifile, const std::vector& gcodes); }; #endif