From f1d8f4cc053bf5c53bec44b95d1d017494547eae Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Mon, 23 Dec 2013 19:02:14 +0000 Subject: [PATCH] [HID] * Do not include debug.h into the main header. CORE-7716 svn path=/trunk/; revision=61363 --- reactos/dll/win32/hid/hid.c | 4 ++++ reactos/dll/win32/hid/precomp.h | 1 - reactos/dll/win32/hid/stubs.c | 4 ++++ 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/reactos/dll/win32/hid/hid.c b/reactos/dll/win32/hid/hid.c index 0397028bc25..47f450d2ee9 100644 --- a/reactos/dll/win32/hid/hid.c +++ b/reactos/dll/win32/hid/hid.c @@ -25,8 +25,12 @@ * UPDATE HISTORY: * 07/12/2004 Created */ + #include "precomp.h" +#define NDEBUG +#include + HINSTANCE hDllInstance; /* device interface GUID for HIDClass devices */ diff --git a/reactos/dll/win32/hid/precomp.h b/reactos/dll/win32/hid/precomp.h index 770d39df1fb..a9d6b1dcacc 100644 --- a/reactos/dll/win32/hid/precomp.h +++ b/reactos/dll/win32/hid/precomp.h @@ -2,7 +2,6 @@ #define WIN32_NO_STATUS #include #include -#include #define NTOS_MODE_USER #include diff --git a/reactos/dll/win32/hid/stubs.c b/reactos/dll/win32/hid/stubs.c index f6f568aa121..b086ac877ae 100644 --- a/reactos/dll/win32/hid/stubs.c +++ b/reactos/dll/win32/hid/stubs.c @@ -8,8 +8,12 @@ * UPDATE HISTORY: * 07/12/2004 Created */ + #include "precomp.h" +#define NDEBUG +#include + /* * @unimplemented */