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






                                            



                







                                                      
                                           
                       


                                                               


                               
// Copyright 2020 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#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