diff options
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2015-06-21 14:40:28 +0200 |
---|---|---|
committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2015-06-28 01:36:54 +0200 |
commit | 596b7c4f63e38d275b6a056d6125c0027a1376e7 (patch) | |
tree | fb0ab64194f7beb8ddeab145db68d27401ea9790 /src/core/hle/service/hid | |
parent | Common: Cleanup memory and misc includes. (diff) | |
download | yuzu-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.h | 16 |
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 { /** |