summaryrefslogblamecommitdiffstats
path: root/src/core/hle/service/nvdrv/nvmemp.h
blob: 85e3053a8d9c1eea4a35c3bd385900092963132a (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11

                                                               




                                     



                
                           


                                                      
                                           
                       

        

                                          

  
                              
// SPDX-FileCopyrightText: Copyright 2018 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::Nvidia {

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

private:
    void Open(HLERequestContext& ctx);
    void GetAruid(HLERequestContext& ctx);
};

} // namespace Service::Nvidia