2014-04-08 23:15:46 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-08 23:15:46 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
2013-09-27 02:01:09 +00:00
|
|
|
|
2015-05-04 03:16:25 +00:00
|
|
|
class EmuWindow;
|
2013-09-27 02:01:09 +00:00
|
|
|
|
|
|
|
namespace System {
|
|
|
|
|
2016-01-07 19:33:54 +00:00
|
|
|
enum class Result {
|
2016-09-18 00:38:01 +00:00
|
|
|
Success, ///< Everything is fine
|
|
|
|
Error, ///< Something went wrong (no module specified)
|
|
|
|
ErrorInitCore, ///< Something went wrong during core init
|
|
|
|
ErrorInitVideoCore, ///< Something went wrong during video core init
|
2016-01-07 19:33:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Result Init(EmuWindow* emu_window);
|
2016-08-30 01:28:31 +00:00
|
|
|
bool IsPoweredOn();
|
2013-09-27 02:01:09 +00:00
|
|
|
void Shutdown();
|
2014-11-18 13:27:16 +00:00
|
|
|
}
|