summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ptm/ptm.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-07-16 20:30:56 +0200
committerGitHub <noreply@github.com>2022-07-16 20:30:56 +0200
commit87bb44830bb19f686d345d3640034c11037a691e (patch)
tree295f050687de9a9a4134a5087942d8d860ad0e35 /src/core/hle/service/ptm/ptm.h
parentMerge pull request #8560 from liamwhite/bitfield-may-alias (diff)
parentservice: nifm: Stub GetInternetConnectionStatus (diff)
downloadyuzu-87bb44830bb19f686d345d3640034c11037a691e.tar
yuzu-87bb44830bb19f686d345d3640034c11037a691e.tar.gz
yuzu-87bb44830bb19f686d345d3640034c11037a691e.tar.bz2
yuzu-87bb44830bb19f686d345d3640034c11037a691e.tar.lz
yuzu-87bb44830bb19f686d345d3640034c11037a691e.tar.xz
yuzu-87bb44830bb19f686d345d3640034c11037a691e.tar.zst
yuzu-87bb44830bb19f686d345d3640034c11037a691e.zip
Diffstat (limited to 'src/core/hle/service/ptm/ptm.h')
-rw-r--r--src/core/hle/service/ptm/ptm.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/core/hle/service/ptm/ptm.h b/src/core/hle/service/ptm/ptm.h
new file mode 100644
index 000000000..06224a24e
--- /dev/null
+++ b/src/core/hle/service/ptm/ptm.h
@@ -0,0 +1,18 @@
+// SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project
+// SPDX-License-Identifier: GPL-3.0-or-later
+
+#pragma once
+
+namespace Core {
+class System;
+}
+
+namespace Service::SM {
+class ServiceManager;
+}
+
+namespace Service::PTM {
+
+void InstallInterfaces(SM::ServiceManager& sm, Core::System& system);
+
+} // namespace Service::PTM