aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/applets/swkbd.cpp
diff options
context:
space:
mode:
authorGravatar Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>2015-07-12 22:10:37 +0100
committerGravatar Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>2015-07-12 22:10:37 +0100
commitfe909b3b5adb5e1306a1c85e6e1275424a6371b2 (patch)
tree28cd4fbd98402187dbaa0a87e14eabaff88ff8d0 /src/core/hle/applets/swkbd.cpp
parentf4e1d8ea36fc3f8309234b8a4a8c9f659b171c80 (diff)
Core: Fix applet includes using iwyu.
Diffstat (limited to 'src/core/hle/applets/swkbd.cpp')
-rw-r--r--src/core/hle/applets/swkbd.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/core/hle/applets/swkbd.cpp b/src/core/hle/applets/swkbd.cpp
index 7431ebcf..1db6b5a1 100644
--- a/src/core/hle/applets/swkbd.cpp
+++ b/src/core/hle/applets/swkbd.cpp
@@ -2,13 +2,21 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
+#include <cstring>
+#include <string>
+
#include "common/assert.h"
#include "common/logging/log.h"
#include "common/string_util.h"
#include "core/hle/applets/swkbd.h"
+#include "core/hle/kernel/kernel.h"
+#include "core/hle/kernel/shared_memory.h"
#include "core/hle/service/hid/hid.h"
#include "core/hle/service/gsp_gpu.h"
+#include "core/hle/result.h"
+#include "core/memory.h"
+
#include "video_core/video_core.h"
////////////////////////////////////////////////////////////////////////////////////////////////////