Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
886c970d
Commit
886c970d
authored
Jul 01, 2007
by
Andrew Talbot
Committed by
Alexandre Julliard
Jul 02, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Constify some variables.
parent
3a0233d6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
enumx.c
dlls/ole32/enumx.c
+1
-1
enumx.h
dlls/ole32/enumx.h
+1
-1
No files found.
dlls/ole32/enumx.c
View file @
886c970d
...
...
@@ -189,7 +189,7 @@ enumx_impl *enumx_allocate(REFIID riid, const void *vtbl, ULONG elem_size)
*
* Add an element to the enumeration.
*/
void
*
enumx_add_element
(
enumx_impl
*
enumx
,
void
*
data
)
void
*
enumx_add_element
(
enumx_impl
*
enumx
,
const
void
*
data
)
{
struct
list
*
element
;
...
...
dlls/ole32/enumx.h
View file @
886c970d
...
...
@@ -29,6 +29,6 @@ extern HRESULT WINAPI enumx_Skip(enumx_impl *, ULONG);
extern
HRESULT
WINAPI
enumx_Reset
(
enumx_impl
*
);
extern
HRESULT
WINAPI
enumx_Clone
(
enumx_impl
*
,
enumx_impl
**
);
extern
enumx_impl
*
enumx_allocate
(
REFIID
,
const
void
*
,
ULONG
);
extern
void
*
enumx_add_element
(
enumx_impl
*
,
void
*
);
extern
void
*
enumx_add_element
(
enumx_impl
*
,
const
void
*
);
#endif
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