|
|
|
@ -1,6 +1,7 @@ |
|
|
|
// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
#include "core/hle/service/cmif_serialization.h"
|
|
|
|
#include "core/hle/service/olsc/native_handle_holder.h"
|
|
|
|
|
|
|
|
namespace Service::OLSC { |
|
|
|
@ -9,7 +10,7 @@ INativeHandleHolder::INativeHandleHolder(Core::System& system_) |
|
|
|
: ServiceFramework{system_, "INativeHandleHolder"} { |
|
|
|
// clang-format off
|
|
|
|
static const FunctionInfo functions[] = { |
|
|
|
{0, nullptr, "GetNativeHandle"}, |
|
|
|
{0, D<&INativeHandleHolder::GetNativeHandle>, "GetNativeHandle"}, |
|
|
|
}; |
|
|
|
// clang-format on
|
|
|
|
|
|
|
|
@ -18,4 +19,10 @@ INativeHandleHolder::INativeHandleHolder(Core::System& system_) |
|
|
|
|
|
|
|
INativeHandleHolder::~INativeHandleHolder() = default; |
|
|
|
|
|
|
|
Result INativeHandleHolder::GetNativeHandle(OutCopyHandle<Kernel::KReadableEvent> out_event) { |
|
|
|
LOG_WARNING(Service_OLSC, "(STUBBED) called"); |
|
|
|
*out_event = nullptr; |
|
|
|
R_SUCCEED(); |
|
|
|
} |
|
|
|
|
|
|
|
} // namespace Service::OLSC
|