suyu/src/core/hle/service/am/applet_oe.cpp

21 lines
515 B
C++
Raw Normal View History

// 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);
}
} // namespace AM
} // namespace Service