summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/applet_oe.h
blob: 6ee5b0e9f8a250ba236c9ee3b2d2ffa904311721 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include "core/hle/kernel/hle_ipc.h"
#include "core/hle/service/service.h"

namespace Service {
namespace AM {

// TODO: Add more languages
enum SystemLanguage {
    Japanese = 0,
    English = 1,
};

class AppletOE final : public ServiceFramework<AppletOE> {
public:
    AppletOE();
    ~AppletOE() = default;

private:
    void OpenApplicationProxy(Kernel::HLERequestContext& ctx);
};

} // namespace AM
} // namespace Service