From a3d974ee28dd911bb6a65b2749678decedc65a4e Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Mon, 19 Jul 2010 23:47:00 +0000 Subject: [PATCH] [rpcndr.h] Add a tag to NDR_SCONTEXT struct. MS headers don't have it, but gcc 4.5.x requires it, because without the tag, the struct would be from an unnamed namespace and can't be shared by different compilation units in C++. Yeah whatever... svn path=/trunk/; revision=48125 --- reactos/include/psdk/rpcndr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/include/psdk/rpcndr.h b/reactos/include/psdk/rpcndr.h index 9691dba9ecd..0164200b98a 100644 --- a/reactos/include/psdk/rpcndr.h +++ b/reactos/include/psdk/rpcndr.h @@ -128,7 +128,7 @@ typedef unsigned char boolean; (RpcExceptionCode() == RPC_X_BAD_STUB_DATA) || \ (RpcExceptionCode() == RPC_S_INVALID_BOUND)) -typedef struct +typedef struct tagNDR_SCONTEXT { void *pad[2]; void *userContext;