Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
85342a15
Commit
85342a15
authored
Aug 18, 2009
by
Huw Davies
Committed by
Alexandre Julliard
Aug 18, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Remove const from [out] parameter.
parent
548cd05c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
usrmarshal.c
dlls/msdaps/usrmarshal.c
+2
-2
sesprp.idl
include/sesprp.idl
+2
-2
No files found.
dlls/msdaps/usrmarshal.c
View file @
85342a15
...
...
@@ -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
);
...
...
include/sesprp.idl
View file @
85342a15
...
...
@@ -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
)
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment