summaryrefslogtreecommitdiffstats
path: root/src/core/hle/applets/swkbd.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-07-12 23:25:55 +0200
committerbunnei <bunneidev@gmail.com>2015-07-12 23:25:55 +0200
commitb6719ec922ce807510932887b80e61aeeec2fc7b (patch)
treee51bf1dcb7fb474725329579ce2c0bd0374a7ffe /src/core/hle/applets/swkbd.cpp
parentKernel: Add CodeSet case to Object::IsWaitable (diff)
parentCore: Fix applet includes using iwyu. (diff)
downloadyuzu-b6719ec922ce807510932887b80e61aeeec2fc7b.tar
yuzu-b6719ec922ce807510932887b80e61aeeec2fc7b.tar.gz
yuzu-b6719ec922ce807510932887b80e61aeeec2fc7b.tar.bz2
yuzu-b6719ec922ce807510932887b80e61aeeec2fc7b.tar.lz
yuzu-b6719ec922ce807510932887b80e61aeeec2fc7b.tar.xz
yuzu-b6719ec922ce807510932887b80e61aeeec2fc7b.tar.zst
yuzu-b6719ec922ce807510932887b80e61aeeec2fc7b.zip
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 7431ebcf8..1db6b5a17 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"
////////////////////////////////////////////////////////////////////////////////////////////////////