summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-11-20 17:51:54 +0100
committerLioncash <mathew1800@gmail.com>2018-11-20 17:53:55 +0100
commit8b4b560df55ba0db01539cc088149adc5b1ad564 (patch)
tree06cc9a904c9389cfb6de71ec45bb5bc0a37ed767 /src/core/hle/service
parentam/applets: Relocate comments above the relevant data member in AppletDataBroker (diff)
downloadyuzu-8b4b560df55ba0db01539cc088149adc5b1ad564.tar
yuzu-8b4b560df55ba0db01539cc088149adc5b1ad564.tar.gz
yuzu-8b4b560df55ba0db01539cc088149adc5b1ad564.tar.bz2
yuzu-8b4b560df55ba0db01539cc088149adc5b1ad564.tar.lz
yuzu-8b4b560df55ba0db01539cc088149adc5b1ad564.tar.xz
yuzu-8b4b560df55ba0db01539cc088149adc5b1ad564.tar.zst
yuzu-8b4b560df55ba0db01539cc088149adc5b1ad564.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/am/applets/applets.h6
-rw-r--r--src/core/hle/service/am/applets/software_keyboard.h5
2 files changed, 9 insertions, 2 deletions
diff --git a/src/core/hle/service/am/applets/applets.h b/src/core/hle/service/am/applets/applets.h
index eb54cd5ae..9c1f068d4 100644
--- a/src/core/hle/service/am/applets/applets.h
+++ b/src/core/hle/service/am/applets/applets.h
@@ -4,14 +4,16 @@
#pragma once
-#include <functional>
#include <memory>
#include <queue>
#include "common/swap.h"
-#include "core/hle/kernel/event.h"
union ResultCode;
+namespace Kernel {
+class Event;
+}
+
namespace Service::AM {
class IStorage;
diff --git a/src/core/hle/service/am/applets/software_keyboard.h b/src/core/hle/service/am/applets/software_keyboard.h
index 16e1fff66..38cabcaec 100644
--- a/src/core/hle/service/am/applets/software_keyboard.h
+++ b/src/core/hle/service/am/applets/software_keyboard.h
@@ -4,7 +4,12 @@
#pragma once
+#include <array>
+#include <string>
+#include <vector>
+
#include "common/common_funcs.h"
+#include "common/swap.h"
#include "core/hle/service/am/am.h"
#include "core/hle/service/am/applets/applets.h"