diff options
Diffstat (limited to 'src')
| -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 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <functional> | ||
| 8 | #include <memory> | 7 | #include <memory> |
| 9 | #include <queue> | 8 | #include <queue> |
| 10 | #include "common/swap.h" | 9 | #include "common/swap.h" |
| 11 | #include "core/hle/kernel/event.h" | ||
| 12 | 10 | ||
| 13 | union ResultCode; | 11 | union ResultCode; |
| 14 | 12 | ||
| 13 | namespace Kernel { | ||
| 14 | class Event; | ||
| 15 | } | ||
| 16 | |||
| 15 | namespace Service::AM { | 17 | namespace Service::AM { |
| 16 | 18 | ||
| 17 | class IStorage; | 19 | 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 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <array> | ||
| 8 | #include <string> | ||
| 9 | #include <vector> | ||
| 10 | |||
| 7 | #include "common/common_funcs.h" | 11 | #include "common/common_funcs.h" |
| 12 | #include "common/swap.h" | ||
| 8 | #include "core/hle/service/am/am.h" | 13 | #include "core/hle/service/am/am.h" |
| 9 | #include "core/hle/service/am/applets/applets.h" | 14 | #include "core/hle/service/am/applets/applets.h" |
| 10 | 15 | ||