Alexandre Julliard : gdi32/tests: Define the required Windows version before including anything.
Module: wine Branch: master Commit: eaf78eadf08b5057b0aeff0e76e71e1c3566b354 URL: http://source.winehq.org/git/wine.git/?a=commit;h=eaf78eadf08b5057b0aeff0e76... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Mon Feb 18 12:31:40 2013 +0100 gdi32/tests: Define the required Windows version before including anything. --- dlls/gdi32/tests/dc.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/gdi32/tests/dc.c b/dlls/gdi32/tests/dc.c index e47a091..5f19370 100644 --- a/dlls/gdi32/tests/dc.c +++ b/dlls/gdi32/tests/dc.c @@ -20,13 +20,13 @@ */ -#include <assert.h> -#include <stdio.h> - #define WINVER 0x0501 /* request latest DEVMODE */ #define NONAMELESSSTRUCT #define NONAMELESSUNION +#include <assert.h> +#include <stdio.h> + #include "wine/test.h" #include "winbase.h" #include "wingdi.h"
participants (1)
-
Alexandre Julliard