From 9949a3a46304395862d95620ed963a2fcabf4730 Mon Sep 17 00:00:00 2001 From: Mike McCormack Date: Thu, 24 Aug 2006 19:16:01 +0900 Subject: [PATCH] shell32: Fix compilation of test on MSVC6. --- dlls/shell32/tests/shlfileop.c | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/dlls/shell32/tests/shlfileop.c b/dlls/shell32/tests/shlfileop.c index 12b286288f5..3a9caa3ceb7 100644 --- a/dlls/shell32/tests/shlfileop.c +++ b/dlls/shell32/tests/shlfileop.c @@ -22,14 +22,20 @@ #include #define WINE_NOWINSOCK -#include "windef.h" -#include "winbase.h" -#include "wtypes.h" +#include #include "shellapi.h" #include "shlobj.h" #include "wine/test.h" +#ifndef INVALID_FILE_ATTRIBUTES +#define INVALID_FILE_ATTRIBUTES 0xffffffff +#endif + +#ifndef FOF_NORECURSION +#define FOF_NORECURSION 0x1000 +#endif + CHAR CURR_DIR[MAX_PATH]; static HMODULE hshell32;