include: Remove const from [out] parameter.

This commit is contained in:
Huw Davies 2009-08-18 10:37:32 +01:00 committed by Alexandre Julliard
parent 548cd05ceb
commit 85342a1562
2 changed files with 4 additions and 4 deletions

View file

@ -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);

View file

@ -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);