Commit 85342a15 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

include: Remove const from [out] parameter.

parent 548cd05c
......@@ -209,7 +209,7 @@ HRESULT __RPC_STUB IDBDataSourceAdmin_ModifyDataSource_Stub(IDBDataSourceAdmin*
HRESULT CALLBACK ISessionProperties_GetProperties_Proxy(ISessionProperties* This, ULONG cPropertyIDSets,
const DBPROPIDSET rgPropertyIDSets[], ULONG *pcPropertySets,
const DBPROPSET **prgPropertySets)
DBPROPSET **prgPropertySets)
{
FIXME("(%p, %d, %p, %p, %p): stub\n", This, cPropertyIDSets, rgPropertyIDSets,
pcPropertySets, prgPropertySets);
......@@ -218,7 +218,7 @@ HRESULT CALLBACK ISessionProperties_GetProperties_Proxy(ISessionProperties* This
HRESULT __RPC_STUB ISessionProperties_GetProperties_Stub(ISessionProperties* This, ULONG cPropertyIDSets,
const DBPROPIDSET *rgPropertyIDSets, ULONG *pcPropertySets,
const DBPROPSET **prgPropertySets, IErrorInfo **ppErrorInfoRem)
DBPROPSET **prgPropertySets, IErrorInfo **ppErrorInfoRem)
{
FIXME("(%p, %d, %p, %p, %p, %p): stub\n", This, cPropertyIDSets, rgPropertyIDSets,
pcPropertySets, prgPropertySets, ppErrorInfoRem);
......
......@@ -27,13 +27,13 @@ interface ISessionProperties : IUnknown
HRESULT GetProperties([in] ULONG cPropertyIDSets,
[in, size_is(cPropertyIDSets)] const DBPROPIDSET rgPropertyIDSets[],
[in, out] ULONG *pcPropertySets,
[out, size_is(,*pcPropertySets)] const DBPROPSET **prgPropertySets);
[out, size_is(,*pcPropertySets)] DBPROPSET **prgPropertySets);
[call_as(GetProperties)]
HRESULT RemoteGetProperties([in] ULONG cPropertyIDSets,
[in, unique, size_is(cPropertyIDSets)] const DBPROPIDSET *rgPropertyIDSets,
[in, out] ULONG *pcPropertySets,
[out, size_is(,*pcPropertySets)] const DBPROPSET **prgPropertySets,
[out, size_is(,*pcPropertySets)] DBPROPSET **prgPropertySets,
[out] IErrorInfo **ppErrorInfoRem);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment