From fe9d36005fb7450177719f826ebabb895c71a5f6 Mon Sep 17 00:00:00 2001 From: Huw Davies Date: Fri, 24 Jul 2009 12:27:13 +0100 Subject: [PATCH] include: Remote parameter should be a pointer not an array. --- include/dbprop.idl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/dbprop.idl b/include/dbprop.idl index 088cf8c7293..77ceab01c94 100644 --- a/include/dbprop.idl +++ b/include/dbprop.idl @@ -30,7 +30,7 @@ interface IDBProperties : IUnknown { [call_as(GetProperties)] HRESULT RemoteGetProperties( [in] ULONG cPropertyIDSets, - [in, unique, size_is(cPropertyIDSets)] const DBPROPIDSET rgPropertyIDSets[], + [in, unique, size_is(cPropertyIDSets)] const DBPROPIDSET *rgPropertyIDSets, [in, out] ULONG *pcPropertySets, [out, size_is(,*pcPropertySets)] DBPROPSET **prgPropertySets, [out] IErrorInfo **ppErrorInfoRem);