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 */