Author: fireball Date: Sat Jan 29 18:18:35 2011 New Revision: 50564
URL: http://svn.reactos.org/svn/reactos?rev=50564&view=rev Log: - Fix compiling in recent trunk.
Modified: branches/arwinss/reactos/subsystems/win32/win32k/gre/arc.c branches/arwinss/reactos/subsystems/win32/win32k/gre/drawing.c branches/arwinss/reactos/subsystems/win32/win32k/wine/queue.c
Modified: branches/arwinss/reactos/subsystems/win32/win32k/gre/arc.c URL: http://svn.reactos.org/svn/reactos/branches/arwinss/reactos/subsystems/win32... ============================================================================== --- branches/arwinss/reactos/subsystems/win32/win32k/gre/arc.c [iso-8859-1] (original) +++ branches/arwinss/reactos/subsystems/win32/win32k/gre/arc.c [iso-8859-1] Sat Jan 29 18:18:35 2011 @@ -9,7 +9,9 @@ /* INCLUDES ******************************************************************/
#include <win32k.h> -#include "math.h" +#define _USE_MATH_DEFINES +#include <math.h> + #define NDEBUG #include <debug.h>
Modified: branches/arwinss/reactos/subsystems/win32/win32k/gre/drawing.c URL: http://svn.reactos.org/svn/reactos/branches/arwinss/reactos/subsystems/win32... ============================================================================== --- branches/arwinss/reactos/subsystems/win32/win32k/gre/drawing.c [iso-8859-1] (original) +++ branches/arwinss/reactos/subsystems/win32/win32k/gre/drawing.c [iso-8859-1] Sat Jan 29 18:18:35 2011 @@ -50,7 +50,9 @@ */
#include <win32k.h> -#include "math.h" +#define _USE_MATH_DEFINES +#include <math.h> + #define NDEBUG #include <debug.h>
Modified: branches/arwinss/reactos/subsystems/win32/win32k/wine/queue.c URL: http://svn.reactos.org/svn/reactos/branches/arwinss/reactos/subsystems/win32... ============================================================================== --- branches/arwinss/reactos/subsystems/win32/win32k/wine/queue.c [iso-8859-1] (original) +++ branches/arwinss/reactos/subsystems/win32/win32k/wine/queue.c [iso-8859-1] Sat Jan 29 18:18:35 2011 @@ -19,6 +19,7 @@ */
#include <win32k.h> +#include <undocuser.h>
#include <limits.h> #include "object.h"