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
4e406750
Commit
4e406750
authored
Feb 07, 2006
by
Robert Shearman
Committed by
Alexandre Julliard
Feb 07, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
widl: Make 'attrs' field of type_t const.
parent
e9ec85a0
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
13 deletions
+14
-13
header.c
tools/widl/header.c
+4
-4
header.h
tools/widl/header.h
+4
-4
parser.y
tools/widl/parser.y
+5
-4
widltypes.h
tools/widl/widltypes.h
+1
-1
No files found.
tools/widl/header.c
View file @
4e406750
...
...
@@ -490,7 +490,7 @@ void write_externdef(const var_t *v)
fprintf
(
header
,
";
\n\n
"
);
}
void
write_library
(
const
char
*
name
,
attr_t
*
attr
)
{
void
write_library
(
const
char
*
name
,
const
attr_t
*
attr
)
{
const
UUID
*
uuid
=
get_attrp
(
attr
,
ATTR_UUID
);
fprintf
(
header
,
"
\n
"
);
write_guid
(
"LIBID"
,
name
,
uuid
);
...
...
@@ -521,7 +521,7 @@ const var_t* get_explicit_handle_var(const func_t* func)
/********** INTERFACES **********/
int
is_object
(
attr_t
*
a
)
int
is_object
(
const
attr_t
*
a
)
{
while
(
a
)
{
if
(
a
->
type
==
ATTR_OBJECT
||
a
->
type
==
ATTR_ODL
)
return
1
;
...
...
@@ -530,12 +530,12 @@ int is_object(attr_t *a)
return
0
;
}
int
is_local
(
attr_t
*
a
)
int
is_local
(
const
attr_t
*
a
)
{
return
is_attr
(
a
,
ATTR_LOCAL
);
}
const
var_t
*
is_callas
(
attr_t
*
a
)
const
var_t
*
is_callas
(
const
attr_t
*
a
)
{
return
get_attrp
(
a
,
ATTR_CALLAS
);
}
...
...
tools/widl/header.h
View file @
4e406750
...
...
@@ -28,9 +28,9 @@ extern int is_void(const type_t *t, const var_t *v);
extern
void
write_name
(
FILE
*
h
,
const
var_t
*
v
);
extern
const
char
*
get_name
(
const
var_t
*
v
);
extern
void
write_type
(
FILE
*
h
,
type_t
*
t
,
const
var_t
*
v
,
const
char
*
n
);
extern
int
is_object
(
attr_t
*
a
);
extern
int
is_local
(
attr_t
*
a
);
extern
const
var_t
*
is_callas
(
attr_t
*
a
);
extern
int
is_object
(
const
attr_t
*
a
);
extern
int
is_local
(
const
attr_t
*
a
);
extern
const
var_t
*
is_callas
(
const
attr_t
*
a
);
extern
void
write_args
(
FILE
*
h
,
var_t
*
arg
,
const
char
*
name
,
int
obj
,
int
do_indent
);
extern
void
write_array
(
FILE
*
h
,
const
expr_t
*
v
,
int
field
);
extern
void
write_forward
(
type_t
*
iface
);
...
...
@@ -41,7 +41,7 @@ extern void write_typedef(type_t *type, const var_t *names);
extern
void
write_expr
(
FILE
*
h
,
const
expr_t
*
e
,
int
brackets
);
extern
void
write_constdef
(
const
var_t
*
v
);
extern
void
write_externdef
(
const
var_t
*
v
);
extern
void
write_library
(
const
char
*
name
,
attr_t
*
attr
);
extern
void
write_library
(
const
char
*
name
,
const
attr_t
*
attr
);
extern
void
write_user_types
(
void
);
extern
const
var_t
*
get_explicit_handle_var
(
const
func_t
*
func
);
...
...
tools/widl/parser.y
View file @
4e406750
...
...
@@ -623,11 +623,12 @@ dispinterface: tDISPINTERFACE aIDENTIFIER { $$ = get_type(0, $2, 0); }
| tDISPINTERFACE aKNOWNTYPE { $$ = get_type(0, $2, 0); }
;
dispinterfacehdr: attributes dispinterface { $$ = $2;
dispinterfacehdr: attributes dispinterface { attr_t *attrs;
$$ = $2;
if ($$->defined) yyerror("multiple definition error\n");
$$->attrs = $1
;
$$->attrs = make_attr(ATTR_DISPINTERFACE
);
LINK($$->attrs, $1)
;
attrs = make_attr(ATTR_DISPINTERFACE)
;
LINK(attrs, $1
);
$$->attrs = attrs
;
$$->ref = find_type("IDispatch", 0);
if (!$$->ref) yyerror("IDispatch is undefined\n");
$$->defined = TRUE;
...
...
tools/widl/widltypes.h
View file @
4e406750
...
...
@@ -183,7 +183,7 @@ struct _type_t {
char
*
name
;
unsigned
char
type
;
struct
_type_t
*
ref
;
attr_t
*
attrs
;
const
attr_t
*
attrs
;
func_t
*
funcs
;
var_t
*
fields
;
int
ignore
,
is_const
,
sign
;
...
...
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