From d8bda273b09ed7d7b7395390f58891913e5fafdc Mon Sep 17 00:00:00 2001 From: Jeffrey Altman Date: Thu, 21 Jan 2010 16:43:18 -0500 Subject: [PATCH] Windows: Windows v6.0 SDK does not define __RPC__out The Windows v6.0 SDK does not define __RPC__out in the rpcsal.h header file. The preprocessor symbol was added in the v6.0A SDK update. In case the v6.0 SDK is used with the 6000 WDK, add a symbol declaration. Change-Id: Iecce566e906977f41be00efb458753acd09f7949 Reviewed-on: http://gerrit.openafs.org/1138 Reviewed-by: Jeffrey Altman Tested-by: Jeffrey Altman --- src/WINNT/install/loopback/wmi.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/WINNT/install/loopback/wmi.cpp b/src/WINNT/install/loopback/wmi.cpp index 813c29860..4b192b000 100644 --- a/src/WINNT/install/loopback/wmi.cpp +++ b/src/WINNT/install/loopback/wmi.cpp @@ -45,6 +45,11 @@ SOFTWARE. #include +/* __RPC__out is not defined in the v6.0 Windows SDK */ +#ifndef __RPC__out +#define __RPC__out +#endif + /* These two are from the Windows DDK */ #include #include -- 2.39.5