From 7c0107fcd0f1e5e2d30a2039e75ce53022a0be3a Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Mon, 20 Jan 2014 13:08:23 +0000 Subject: [PATCH] [DESKADP] * Remove one time inclusions from the main header and put them back where they belong. CORE-7716 svn path=/trunk/; revision=61730 --- reactos/dll/shellext/deskadp/deskadp.c | 4 ++++ reactos/dll/shellext/deskadp/precomp.h | 10 ++++++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/reactos/dll/shellext/deskadp/deskadp.c b/reactos/dll/shellext/deskadp/deskadp.c index 4c2c9db99f6..ec035a577f1 100644 --- a/reactos/dll/shellext/deskadp/deskadp.c +++ b/reactos/dll/shellext/deskadp/deskadp.c @@ -1,8 +1,12 @@ #include "precomp.h" +#include + #define NDEBUG #include +#include "resource.h" + static HINSTANCE hInstance; typedef INT_PTR (WINAPI *PDEVICEPROPERTIESW)(HWND,LPCWSTR,LPCWSTR,BOOL); diff --git a/reactos/dll/shellext/deskadp/precomp.h b/reactos/dll/shellext/deskadp/precomp.h index 9c9cfad512d..4c46de711d9 100644 --- a/reactos/dll/shellext/deskadp/precomp.h +++ b/reactos/dll/shellext/deskadp/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 "deskadp.h" -#include "resource.h" #endif /* __PRECOMP__H */