pineapple-src/src/core/hle/service/caps/caps_c.h

24 lines
483 B
C++
Executable File

// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include "core/hle/service/service.h"
namespace Core {
class System;
}
namespace Service::Capture {
class CAPS_C final : public ServiceFramework<CAPS_C> {
public:
explicit CAPS_C(Core::System& system_);
~CAPS_C() override;
private:
void SetShimLibraryVersion(HLERequestContext& ctx);
};
} // namespace Service::Capture