From da83fe4dcc0538d5188b1b4f6ddca5ee82b40787 Mon Sep 17 00:00:00 2001 From: Christoph von Wittich Date: Mon, 17 Oct 2005 11:09:35 +0000 Subject: [PATCH] fix some headers to compile with MSVC svn path=/trunk/; revision=18509 --- reactos/w32api/include/excpt.h | 4 +++- reactos/w32api/include/objsel.h | 5 +++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/reactos/w32api/include/excpt.h b/reactos/w32api/include/excpt.h index 3c18cd41e39..646de45466c 100644 --- a/reactos/w32api/include/excpt.h +++ b/reactos/w32api/include/excpt.h @@ -14,8 +14,10 @@ #ifndef _EXCPT_H_ #define _EXCPT_H_ -/* All the headers include this file. */ +/* All the headers include this file. */ +#if defined(__MINGW32__) #include <_mingw.h> +#endif #include diff --git a/reactos/w32api/include/objsel.h b/reactos/w32api/include/objsel.h index 4e2f3177e21..a8619bdb0aa 100644 --- a/reactos/w32api/include/objsel.h +++ b/reactos/w32api/include/objsel.h @@ -22,6 +22,11 @@ extern "C" { #endif #include +#include +#include + +#define INITGUID +#include DEFINE_GUID(CLSID_DsObjectPicker, 0x17d6ccd8, 0x3b7b, 0x11d2, 0x00b9, 0xe0,0x00,0xc0,0x4f,0xd8,0xdb,0xf7); DEFINE_GUID(IID_IDsObjectPicker, 0x0c87e64e, 0x3b7a, 0x11d2, 0x00b9, 0xe0,0x00,0xc0,0x4f,0xd8,0xdb,0xf7);