Module: wine Branch: master Commit: fe9d36005fb7450177719f826ebabb895c71a5f6 URL: http://source.winehq.org/git/wine.git/?a=commit;h=fe9d36005fb7450177719f826e...
Author: Huw Davies huw@codeweavers.com Date: Fri Jul 24 12:27:13 2009 +0100
include: Remote parameter should be a pointer not an array.
---
include/dbprop.idl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/include/dbprop.idl b/include/dbprop.idl index 088cf8c..77ceab0 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);