From 41f20a9b193d505c34ddec1d9842bcb4b3a0ed5d Mon Sep 17 00:00:00 2001 From: Stefan Ginsberg Date: Fri, 7 Aug 2009 21:15:17 +0000 Subject: [PATCH] - Don't assume _MSC_VER means PSDK in regedit -- add a note so this isn't forgotten. svn path=/trunk/; revision=42484 --- reactos/base/applications/regedit/security.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/reactos/base/applications/regedit/security.c b/reactos/base/applications/regedit/security.c index f39a74159e4..ce666c89801 100644 --- a/reactos/base/applications/regedit/security.c +++ b/reactos/base/applications/regedit/security.c @@ -30,7 +30,11 @@ DEFINE_GUID(IID_IRegKeySecurity2, 0xc3ccfdb4, 0x6f88, 0x11d2, 0x00a3, 0xce,0x00, #endif /* FIXME: already defined in aclui.h - causing problems when compiling with MSVC/PSDK*/ -#ifndef _MSC_VER +#ifdef _MSC_VER +#pragma message ("INVESTIGATE ME") +#endif + +#if 1 //#ifndef _MSC_VER DEFINE_GUID(IID_IEffectivePermission, 0x3853dc76, 0x9f35, 0x407c, 0x0088, 0xa1,0xd1,0x93,0x44,0x36,0x5f,0xbc); DEFINE_GUID(IID_ISecurityObjectTypeInfo, 0xfc3066eb, 0x79ef, 0x444b, 0x0091, 0x11,0xd1,0x8a,0x75,0xeb,0xf2,0xfa); #endif -- 2.17.1