From 9bda77c266c3a109f1b8cf4e984ae38fa300a718 Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Wed, 29 Jan 2014 10:51:04 +0000 Subject: [PATCH] [HIDCLASS] * Improve the GUIDs situation. CORE-7716 svn path=/trunk/; revision=61876 --- reactos/drivers/hid/hidclass/CMakeLists.txt | 1 + reactos/drivers/hid/hidclass/guid.c | 9 +++++++++ reactos/drivers/hid/hidclass/precomp.h | 2 -- 3 files changed, 10 insertions(+), 2 deletions(-) create mode 100644 reactos/drivers/hid/hidclass/guid.c diff --git a/reactos/drivers/hid/hidclass/CMakeLists.txt b/reactos/drivers/hid/hidclass/CMakeLists.txt index 08fdc7ae4c4..a2dae40eab9 100644 --- a/reactos/drivers/hid/hidclass/CMakeLists.txt +++ b/reactos/drivers/hid/hidclass/CMakeLists.txt @@ -6,6 +6,7 @@ list(APPEND SOURCE hidclass.c hidclass.rc pdo.c + guid.c ${CMAKE_CURRENT_BINARY_DIR}/hidclass.def) add_library(hidclass SHARED ${SOURCE}) diff --git a/reactos/drivers/hid/hidclass/guid.c b/reactos/drivers/hid/hidclass/guid.c new file mode 100644 index 00000000000..a24db4d729d --- /dev/null +++ b/reactos/drivers/hid/hidclass/guid.c @@ -0,0 +1,9 @@ +/* DO NOT USE THE PRECOMPILED HEADER FOR THIS FILE! */ + +#include +#include +#include +#include +#include + +/* NO CODE HERE, THIS IS JUST REQUIRED FOR THE GUID DEFINITIONS */ diff --git a/reactos/drivers/hid/hidclass/precomp.h b/reactos/drivers/hid/hidclass/precomp.h index d59b642510d..37afc2a0530 100644 --- a/reactos/drivers/hid/hidclass/precomp.h +++ b/reactos/drivers/hid/hidclass/precomp.h @@ -4,8 +4,6 @@ #include #include #include - -#include #include #define HIDCLASS_TAG 'CdiH'