2014-04-09 04:45:46 +05:30
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 11:08:14 +05:30
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-09 04:45:46 +05:30
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
2013-09-27 07:31:09 +05:30
|
|
|
|
2015-05-04 08:46:25 +05:30
|
|
|
class EmuWindow;
|
2013-09-27 07:31:09 +05:30
|
|
|
|
|
|
|
namespace System {
|
|
|
|
|
2016-01-08 01:03:54 +05:30
|
|
|
enum class Result {
|
|
|
|
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
|
|
|
|
};
|
|
|
|
|
|
|
|
Result Init(EmuWindow* emu_window);
|
2013-09-27 07:31:09 +05:30
|
|
|
void Shutdown();
|
|
|
|
|
2014-11-18 18:57:16 +05:30
|
|
|
}
|