yuzu/src/core/hle/kernel/kernel.h

18 lines
351 B
C
Raw Normal View History

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
// 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
namespace Kernel {
/// Initialize the kernel with the specified system mode.
void Init();
/// Shutdown the kernel
void Shutdown();
} // namespace Kernel