summaryrefslogblamecommitdiffstats
path: root/src/core/hle/service/nfp/nfp.h
blob: 1163e99547bdd650493b529b6d505d9140ffd71e (plain) (tree)



























                                                                    
// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include "core/hle/service/service.h"

namespace Service {
namespace NFP {

class Module final {
public:
    class Interface : public ServiceFramework<Interface> {
    public:
        Interface(std::shared_ptr<Module> module, const char* name);

        void Unknown(Kernel::HLERequestContext& ctx);

    protected:
        std::shared_ptr<Module> module;
    };
};

void InstallInterfaces(SM::ServiceManager& service_manager);

} // namespace NFP
} // namespace Service