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
abdc08e0
Commit
abdc08e0
authored
Apr 14, 2008
by
Rob Shearman
Committed by
Alexandre Julliard
Apr 14, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
widl: Make the attrs parameter passed to start_typelib const.
parent
e9afe272
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
typelib.c
tools/widl/typelib.c
+1
-1
typelib.h
tools/widl/typelib.h
+1
-1
widltypes.h
tools/widl/widltypes.h
+1
-1
No files found.
tools/widl/typelib.c
View file @
abdc08e0
...
@@ -241,7 +241,7 @@ unsigned short get_type_vt(type_t *t)
...
@@ -241,7 +241,7 @@ unsigned short get_type_vt(type_t *t)
return
0
;
return
0
;
}
}
void
start_typelib
(
char
*
name
,
attr_list_t
*
attrs
)
void
start_typelib
(
char
*
name
,
const
attr_list_t
*
attrs
)
{
{
in_typelib
++
;
in_typelib
++
;
if
(
!
do_typelib
)
return
;
if
(
!
do_typelib
)
return
;
...
...
tools/widl/typelib.h
View file @
abdc08e0
...
@@ -22,7 +22,7 @@
...
@@ -22,7 +22,7 @@
#define __WIDL_TYPELIB_H
#define __WIDL_TYPELIB_H
extern
int
in_typelib
;
extern
int
in_typelib
;
extern
void
start_typelib
(
char
*
name
,
attr_list_t
*
attrs
);
extern
void
start_typelib
(
char
*
name
,
const
attr_list_t
*
attrs
);
extern
void
end_typelib
(
void
);
extern
void
end_typelib
(
void
);
extern
void
add_typelib_entry
(
type_t
*
t
);
extern
void
add_typelib_entry
(
type_t
*
t
);
extern
void
add_importlib
(
const
char
*
name
);
extern
void
add_importlib
(
const
char
*
name
);
...
...
tools/widl/widltypes.h
View file @
abdc08e0
...
@@ -307,7 +307,7 @@ struct _importlib_t {
...
@@ -307,7 +307,7 @@ struct _importlib_t {
struct
_typelib_t
{
struct
_typelib_t
{
char
*
name
;
char
*
name
;
char
*
filename
;
char
*
filename
;
attr_list_t
*
attrs
;
const
attr_list_t
*
attrs
;
struct
list
entries
;
struct
list
entries
;
struct
list
importlibs
;
struct
list
importlibs
;
};
};
...
...
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