From: Jeffrey Altman Date: Thu, 21 Jan 2010 21:43:18 +0000 (-0500) Subject: Windows: Windows v6.0 SDK does not define __RPC__out X-Git-Tag: openafs-devel-1_5_70~13 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=d8bda273b09ed7d7b7395390f58891913e5fafdc;p=packages%2Fo%2Fopenafs.git 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 --- 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