diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-08-29 05:03:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-29 05:03:29 +0200 |
commit | 7d2265b6a8c7272710caa69bfa0950c9e6c2c761 (patch) | |
tree | 7786e07746f1f6432a98157fa1fb825d57fb2eb7 /src/core/hle/service/ngct/ngct.h | |
parent | Merge pull request #6929 from yuzu-emu/revert-6870-trace-back-stack-back-stack-back (diff) | |
parent | ngct: Stub NGCT:U service (diff) | |
download | yuzu-7d2265b6a8c7272710caa69bfa0950c9e6c2c761.tar yuzu-7d2265b6a8c7272710caa69bfa0950c9e6c2c761.tar.gz yuzu-7d2265b6a8c7272710caa69bfa0950c9e6c2c761.tar.bz2 yuzu-7d2265b6a8c7272710caa69bfa0950c9e6c2c761.tar.lz yuzu-7d2265b6a8c7272710caa69bfa0950c9e6c2c761.tar.xz yuzu-7d2265b6a8c7272710caa69bfa0950c9e6c2c761.tar.zst yuzu-7d2265b6a8c7272710caa69bfa0950c9e6c2c761.zip |
Diffstat (limited to 'src/core/hle/service/ngct/ngct.h')
-rw-r--r-- | src/core/hle/service/ngct/ngct.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/core/hle/service/ngct/ngct.h b/src/core/hle/service/ngct/ngct.h new file mode 100644 index 000000000..1f2a47b78 --- /dev/null +++ b/src/core/hle/service/ngct/ngct.h @@ -0,0 +1,20 @@ +// Copyright 2021 yuzu Emulator Project +// Licensed under GPLv2 or any later version +// Refer to the license.txt file included + +#pragma once + +namespace Core { +class System; +} + +namespace Service::SM { +class ServiceManager; +} + +namespace Service::NGCT { + +/// Registers all NGCT services with the specified service manager. +void InstallInterfaces(SM::ServiceManager& service_manager, Core::System& system); + +} // namespace Service::NGCT |