Author: akhaldi Date: Mon Jan 20 13:09:04 2014 New Revision: 61731
URL: http://svn.reactos.org/svn/reactos?rev=61731&view=rev Log: [DESKMON] * Remove one time inclusions from the main header and put them back where they belong. * Cleanup the main header. CORE-7716
Modified: trunk/reactos/dll/shellext/deskmon/deskmon.c trunk/reactos/dll/shellext/deskmon/precomp.h
Modified: trunk/reactos/dll/shellext/deskmon/deskmon.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/deskmon/deskmo... ============================================================================== --- trunk/reactos/dll/shellext/deskmon/deskmon.c [iso-8859-1] (original) +++ trunk/reactos/dll/shellext/deskmon/deskmon.c [iso-8859-1] Mon Jan 20 13:09:04 2014 @@ -1,7 +1,11 @@ #include "precomp.h" + +#include <tchar.h>
#define NDEBUG #include <debug.h> + +#include "resource.h"
static HINSTANCE hInstance;
Modified: trunk/reactos/dll/shellext/deskmon/precomp.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/deskmon/precom... ============================================================================== --- trunk/reactos/dll/shellext/deskmon/precomp.h [iso-8859-1] (original) +++ trunk/reactos/dll/shellext/deskmon/precomp.h [iso-8859-1] Mon Jan 20 13:09:04 2014 @@ -1,19 +1,21 @@ #ifndef __PRECOMP__H #define __PRECOMP__H
-#define COBJMACROS +#include <stdarg.h> + #define WIN32_NO_STATUS #define _INC_WINDOWS #define COM_NO_WINDOWS_H -#include <stdarg.h> + +#define COBJMACROS + #include <windef.h> #include <winbase.h> #include <wingdi.h> #include <wincon.h> -#include <tchar.h> #include <shlobj.h> #include <dll/desk/deskcplx.h> + #include "deskmon.h" -#include "resource.h"
#endif /* __PRECOMP__H */