From 29a4a9c84948daae486271832559e05c939e2e2a Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Sun, 27 May 2007 13:23:37 +0200 Subject: [PATCH] shell32/tests: We need NTDDI_VERSION >= NTDDI_WINXPSP1 to get SEE_MASK_NOZONECHECKS with the PSDK. --- dlls/shell32/tests/shlexec.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dlls/shell32/tests/shlexec.c b/dlls/shell32/tests/shlexec.c index a22666739be..97f43b6df81 100644 --- a/dlls/shell32/tests/shlexec.c +++ b/dlls/shell32/tests/shlexec.c @@ -35,6 +35,10 @@ #include #include +/* Needed to get SEE_MASK_NOZONECHECKS with the PSDK */ +#define NTDDI_WINXPSP1 0x05010100 +#define NTDDI_VERSION NTDDI_WINXPSP1 + #include "wtypes.h" #include "winbase.h" #include "windef.h"