Author: akhaldi Date: Mon Jan 20 13:10:32 2014 New Revision: 61732
URL: http://svn.reactos.org/svn/reactos?rev=61732&view=rev Log: [FONTEXT] * Remove one time inclusions from the main header and put them back where they belong. * Do not include debug.h into the main header. CORE-7716
Modified: trunk/reactos/dll/shellext/fontext/fontext.c trunk/reactos/dll/shellext/fontext/fontext.h
Modified: trunk/reactos/dll/shellext/fontext/fontext.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/fontext/fontex... ============================================================================== --- trunk/reactos/dll/shellext/fontext/fontext.c [iso-8859-1] (original) +++ trunk/reactos/dll/shellext/fontext/fontext.c [iso-8859-1] Mon Jan 20 13:10:32 2014 @@ -9,6 +9,9 @@ */
#include "fontext.h" + +#include <winbase.h> +#include <debug.h>
static HINSTANCE hInstance;
Modified: trunk/reactos/dll/shellext/fontext/fontext.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/fontext/fontex... ============================================================================== --- trunk/reactos/dll/shellext/fontext/fontext.h [iso-8859-1] (original) +++ trunk/reactos/dll/shellext/fontext/fontext.h [iso-8859-1] Mon Jan 20 13:10:32 2014 @@ -1,7 +1,6 @@ +#include <stdarg.h> + +#define WIN32_NO_STATUS #define COBJMACROS -#define WIN32_NO_STATUS -#include <stdarg.h> + #include <windef.h> -#include <winbase.h> - -#include <debug.h>