Author: akhaldi Date: Mon Jan 20 13:08:23 2014 New Revision: 61730
URL: http://svn.reactos.org/svn/reactos?rev=61730&view=rev Log: [DESKADP] * Remove one time inclusions from the main header and put them back where they belong. CORE-7716
Modified: trunk/reactos/dll/shellext/deskadp/deskadp.c trunk/reactos/dll/shellext/deskadp/precomp.h
Modified: trunk/reactos/dll/shellext/deskadp/deskadp.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/deskadp/deskad... ============================================================================== --- trunk/reactos/dll/shellext/deskadp/deskadp.c [iso-8859-1] (original) +++ trunk/reactos/dll/shellext/deskadp/deskadp.c [iso-8859-1] Mon Jan 20 13:08:23 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/deskadp/precomp.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/deskadp/precom... ============================================================================== --- trunk/reactos/dll/shellext/deskadp/precomp.h [iso-8859-1] (original) +++ trunk/reactos/dll/shellext/deskadp/precomp.h [iso-8859-1] Mon Jan 20 13:08:23 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 "deskadp.h" -#include "resource.h"
#endif /* __PRECOMP__H */