diff options
| author | bunnei <bunneidev@gmail.com> | 2017-10-14 22:50:04 -0400 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2017-10-14 22:50:04 -0400 |
| commit | 72eeca1f037261ca2802da79ff1feff813e26e48 (patch) | |
| tree | 19c5b2e89cd832f8a87dcc82e415553dceb01060 /src/core/hle/service/am/applet_oe.cpp | |
| parent | 960a1416de3780e91855d9389c4534acf8c061df (diff) | |
hle: Add service stubs for apm and appletOE.
Diffstat (limited to 'src/core/hle/service/am/applet_oe.cpp')
| -rw-r--r-- | src/core/hle/service/am/applet_oe.cpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/core/hle/service/am/applet_oe.cpp b/src/core/hle/service/am/applet_oe.cpp new file mode 100644 index 000000000..a5d80f5c7 --- /dev/null +++ b/src/core/hle/service/am/applet_oe.cpp @@ -0,0 +1,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 |
