summaryrefslogblamecommitdiffstats
path: root/src/core/hle/service/caps/caps_c.h
blob: 983a4212db69903f1dceb1319edb2447ea807d22 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11

                                                               




                                     



                







                                                      
                                           
                       


                                                               


                               
// 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 Kernel {
class HLERequestContext;
}

namespace Service::Capture {

class CAPS_C final : public ServiceFramework<CAPS_C> {
public:
    explicit CAPS_C(Core::System& system_);
    ~CAPS_C() override;

private:
    void SetShimLibraryVersion(Kernel::HLERequestContext& ctx);
};

} // namespace Service::Capture