Windows: Windows v6.0 SDK does not define __RPC__out
authorJeffrey Altman <jaltman@your-file-system.com>
Thu, 21 Jan 2010 21:43:18 +0000 (16:43 -0500)
committerJeffrey Altman <jaltman|account-1000011@unknown>
Thu, 21 Jan 2010 21:47:21 +0000 (13:47 -0800)
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 <jaltman@openafs.org>
Tested-by: Jeffrey Altman <jaltman@openafs.org>

src/WINNT/install/loopback/wmi.cpp

index 813c298..4b192b0 100644 (file)
@@ -45,6 +45,11 @@ SOFTWARE.
 
 #include <devguid.h>
 
+/* __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 <netcfgx.h>
 #include <netcfgn.h>