2015-05-24 06:55:12 +02:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-18 01:08:10 +02:00
|
|
|
// Licensed under GPLv2+
|
2013-04-17 22:43:11 -04:00
|
|
|
// Refer to the license.txt file included.
|
2011-02-12 22:31:57 +00:00
|
|
|
|
2014-02-10 13:54:46 -05:00
|
|
|
#pragma once
|
2011-02-12 22:31:57 +00:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace BootManager
|
|
|
|
{
|
|
|
|
bool BootCore(const std::string& _rFilename);
|
|
|
|
|
2016-10-07 21:57:07 +02:00
|
|
|
// Stop the emulation core and restore the configuration.
|
2011-02-12 22:31:57 +00:00
|
|
|
void Stop();
|
2016-10-07 21:57:07 +02:00
|
|
|
// 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
|
|
|
}
|