dolphin/Source/Core/Core/Src/GeckoCodeConfig.h
Lioncash ec10622425 New license header introduced to the Core project.
Also, remove DolLoader.h, it doesn't have any use. Boot_DOL.cpp/.h supercedes it.
2013-04-17 22:43:11 -04:00

21 lines
393 B
C++

// 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& inifile, std::vector<GeckoCode>& gcodes);
void SaveCodes(IniFile& inifile, const std::vector<GeckoCode>& gcodes);
};
#endif