summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/applet_oe.cpp
blob: a5d80f5c7ec0bfbf37f445a76b08e345d122f903 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright 2017 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "common/logging/log.h"
#include "core/hle/ipc_helpers.h"
#include "core/hle/service/am/applet_oe.h"

namespace Service {
namespace AM {

AppletOE::AppletOE() : ServiceFramework("appletOE") {
    static const FunctionInfo functions[] = {
        {0x00000000, nullptr, "OpenApplicationProxy"},
    };
    RegisterHandlers(functions);
}

AppletOE::~AppletOE() = default;

} // namespace AM
} // namespace Service