summaryrefslogblamecommitdiffstats
path: root/src/core/hle/service/caps/caps_c.h
blob: b110301d419610f57143ff3ce9df497d7271dbcb (plain) (tree)
1
                                       
















                                                      


                                                               


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

namespace Service::Capture {

class CAPS_C final : public ServiceFramework<CAPS_C> {
public:
    explicit CAPS_C();
    ~CAPS_C() override;

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

} // namespace Service::Capture