summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/glue/notif.h
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2021-12-06 05:55:23 +0100
committerNarr the Reg <juangerman-13@hotmail.com>2021-12-06 17:36:37 +0100
commitac1bfe228f688bb8eef38bdaf26011008891afdf (patch)
tree210c2aa10c1adda5432154238dc23aa18033f7da /src/core/hle/service/glue/notif.h
parentMerge pull request #7518 from german77/is_npad_valid (diff)
downloadyuzu-ac1bfe228f688bb8eef38bdaf26011008891afdf.tar
yuzu-ac1bfe228f688bb8eef38bdaf26011008891afdf.tar.gz
yuzu-ac1bfe228f688bb8eef38bdaf26011008891afdf.tar.bz2
yuzu-ac1bfe228f688bb8eef38bdaf26011008891afdf.tar.lz
yuzu-ac1bfe228f688bb8eef38bdaf26011008891afdf.tar.xz
yuzu-ac1bfe228f688bb8eef38bdaf26011008891afdf.tar.zst
yuzu-ac1bfe228f688bb8eef38bdaf26011008891afdf.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/glue/notif.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/core/hle/service/glue/notif.h b/src/core/hle/service/glue/notif.h
new file mode 100644
index 000000000..6ecf2015c
--- /dev/null
+++ b/src/core/hle/service/glue/notif.h
@@ -0,0 +1,25 @@
+// Copyright 2021 yuzu Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include "core/hle/service/service.h"
+
+namespace Core {
+class System;
+}
+
+namespace Service::Glue {
+
+class NOTIF_A final : public ServiceFramework<NOTIF_A> {
+public:
+ explicit NOTIF_A(Core::System& system_);
+ ~NOTIF_A() override;
+
+private:
+ void ListAlarmSettings(Kernel::HLERequestContext& ctx);
+ void Initialize(Kernel::HLERequestContext& ctx);
+};
+
+} // namespace Service::Glue