diff options
author | Lioncash <mathew1800@gmail.com> | 2018-11-20 17:51:54 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-11-20 17:53:55 +0100 |
commit | 8b4b560df55ba0db01539cc088149adc5b1ad564 (patch) | |
tree | 06cc9a904c9389cfb6de71ec45bb5bc0a37ed767 /src/core/hle/service/am/applets | |
parent | am/applets: Relocate comments above the relevant data member in AppletDataBroker (diff) | |
download | yuzu-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 'src/core/hle/service/am/applets')
-rw-r--r-- | src/core/hle/service/am/applets/applets.h | 6 | ||||
-rw-r--r-- | src/core/hle/service/am/applets/software_keyboard.h | 5 |
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" |