summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/kernel.h
blob: 1313114720221dca0a1c4483cd937c2845d0b543 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2014 Citra Emulator Project / PPSSPP Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include "common/common_types.h"

namespace Kernel {

/// Initialize the kernel with the specified system mode.
void Init();

/// Shutdown the kernel
void Shutdown();

} // namespace Kernel