mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-09-23 21:05:50 +02:00
Also, remove DolLoader.h, it doesn't have any use. Boot_DOL.cpp/.h supercedes it.
21 lines
393 B
C++
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
|