summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/nvdrv.cpp
blob: 7923e1c0d33a5785d3d3d23d99ea0cd5e4b767b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright 2017 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

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

namespace Service {
namespace NVDRV {

std::weak_ptr<NVDRV_A> nvdrv_a;

void InstallInterfaces(SM::ServiceManager& service_manager) {
    auto nvdrv = std::make_shared<NVDRV_A>();
    nvdrv->InstallAsService(service_manager);
    nvdrv_a = nvdrv;
}

} // namespace NVDRV
} // namespace Service