summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/hid
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2015-06-21 14:40:28 +0200
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2015-06-28 01:36:54 +0200
commit596b7c4f63e38d275b6a056d6125c0027a1376e7 (patch)
treefb0ab64194f7beb8ddeab145db68d27401ea9790 /src/core/hle/service/hid
parentCommon: Cleanup memory and misc includes. (diff)
downloadyuzu-596b7c4f63e38d275b6a056d6125c0027a1376e7.tar
yuzu-596b7c4f63e38d275b6a056d6125c0027a1376e7.tar.gz
yuzu-596b7c4f63e38d275b6a056d6125c0027a1376e7.tar.bz2
yuzu-596b7c4f63e38d275b6a056d6125c0027a1376e7.tar.lz
yuzu-596b7c4f63e38d275b6a056d6125c0027a1376e7.tar.xz
yuzu-596b7c4f63e38d275b6a056d6125c0027a1376e7.tar.zst
yuzu-596b7c4f63e38d275b6a056d6125c0027a1376e7.zip
Diffstat (limited to 'src/core/hle/service/hid')
-rw-r--r--src/core/hle/service/hid/hid.h16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/core/hle/service/hid/hid.h b/src/core/hle/service/hid/hid.h
index 68e2bcee0..d50d479f8 100644
--- a/src/core/hle/service/hid/hid.h
+++ b/src/core/hle/service/hid/hid.h
@@ -6,16 +6,18 @@
#include <array>
-#include "core/hle/kernel/kernel.h"
-#include "core/hle/service/service.h"
-#include "common/bit_field.h"
+#ifndef _MSC_VER
+#include <cstddef>
+#endif
-namespace Kernel {
- class SharedMemory;
- class Event;
-}
+#include "common/bit_field.h"
+#include "common/common_funcs.h"
+#include "common/common_types.h"
namespace Service {
+
+class Interface;
+
namespace HID {
/**