2014-05-10 04:11:18 +02:00
|
|
|
// Copyright 2014 Citra Emulator Project / PPSSPP Project
|
2014-12-17 06:38:14 +01:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-11-19 09:49:13 +01:00
|
|
|
// Refer to the license.txt file included.
|
2014-05-10 04:11:18 +02:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2015-05-06 09:06:12 +02:00
|
|
|
#include "common/common_types.h"
|
2014-05-10 04:11:18 +02:00
|
|
|
|
2014-05-21 00:13:25 +02:00
|
|
|
namespace Kernel {
|
|
|
|
|
2016-11-20 02:40:04 +01:00
|
|
|
/// Initialize the kernel with the specified system mode.
|
2018-08-03 05:37:44 +02:00
|
|
|
void Init();
|
2014-06-11 04:43:50 +02:00
|
|
|
|
|
|
|
/// Shutdown the kernel
|
|
|
|
void Shutdown();
|
|
|
|
|
2017-07-21 06:52:50 +02:00
|
|
|
} // namespace Kernel
|