From 96e8568c881794fc6ef731a1d6b53eee6d131a9a Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Fri, 19 Jan 2007 13:16:45 +0100 Subject: [PATCH] rpc.h: Include excpt.h, and windef.h in Wine so that the header compiles. --- include/rpc.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/include/rpc.h b/include/rpc.h index 6ddc4846d87..c52e539267d 100644 --- a/include/rpc.h +++ b/include/rpc.h @@ -18,8 +18,12 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ -#if !defined(RPC_NO_WINDOWS_H) && !defined(__WINESRC__) -#include +#ifndef RPC_NO_WINDOWS_H +# ifdef __WINESRC__ +# include +# else +# include +# endif #endif #ifndef __WINE_RPC_H @@ -50,6 +54,7 @@ typedef void* I_RPC_HANDLE; #include /* #include */ #include +#include #include /* ignore exception handling for now */ -- 2.11.4.GIT