From 3d3767517c02e34e5a23756e4ae9781d5e90e8a0 Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Mon, 20 Jan 2014 13:09:04 +0000 Subject: [PATCH] [DESKMON] * Remove one time inclusions from the main header and put them back where they belong. * Cleanup the main header. CORE-7716 svn path=/trunk/; revision=61731 --- reactos/dll/shellext/deskmon/deskmon.c | 4 ++++ reactos/dll/shellext/deskmon/precomp.h | 10 ++++++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/reactos/dll/shellext/deskmon/deskmon.c b/reactos/dll/shellext/deskmon/deskmon.c index 4cfc4cbf266..3ab92551d5f 100644 --- a/reactos/dll/shellext/deskmon/deskmon.c +++ b/reactos/dll/shellext/deskmon/deskmon.c @@ -1,8 +1,12 @@ #include "precomp.h" +#include + #define NDEBUG #include +#include "resource.h" + static HINSTANCE hInstance; #ifdef UNICODE diff --git a/reactos/dll/shellext/deskmon/precomp.h b/reactos/dll/shellext/deskmon/precomp.h index 08b565559cd..23db0a7af3e 100644 --- a/reactos/dll/shellext/deskmon/precomp.h +++ b/reactos/dll/shellext/deskmon/precomp.h @@ -1,19 +1,21 @@ #ifndef __PRECOMP__H #define __PRECOMP__H -#define COBJMACROS +#include + #define WIN32_NO_STATUS #define _INC_WINDOWS #define COM_NO_WINDOWS_H -#include + +#define COBJMACROS + #include #include #include #include -#include #include #include + #include "deskmon.h" -#include "resource.h" #endif /* __PRECOMP__H */