[rpcndr.h]
authorTimo Kreuzer <timo.kreuzer@reactos.org>
Mon, 19 Jul 2010 23:47:00 +0000 (23:47 +0000)
committerTimo Kreuzer <timo.kreuzer@reactos.org>
Mon, 19 Jul 2010 23:47:00 +0000 (23:47 +0000)
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

index 9691dba..0164200 100644 (file)
@@ -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;