dolphin/Source/Core/Core/BootManager.h

21 lines
552 B
C
Raw Normal View History

// Copyright 2008 Dolphin Emulator Project
2015-05-18 01:08:10 +02:00
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
#include <string>
2017-05-21 20:52:44 +01:00
#include "Core/ConfigManager.h"
namespace BootManager
{
2017-05-21 20:52:44 +01:00
bool BootCore(const std::string& filename, SConfig::EBootBS2 type);
// Stop the emulation core and restore the configuration.
void Stop();
// Synchronise Dolphin's configuration with the SYSCONF (which may have changed during emulation),
// and restore settings that were overriden by per-game INIs or for some other reason.
void RestoreConfig();
2014-09-11 13:00:40 -04:00
}