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
ea9e7b63
Commit
ea9e7b63
authored
Mar 18, 2014
by
Nikolay Sivov
Committed by
Alexandre Julliard
Mar 18, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
widl: Fix default value types.
parent
5cfca92c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
4 deletions
+30
-4
write_msft.c
tools/widl/write_msft.c
+30
-4
No files found.
tools/widl/write_msft.c
View file @
ea9e7b63
...
...
@@ -1191,6 +1191,8 @@ static void write_value(msft_typelib_t* typelib, int *out, int vt, const void *v
case
VT_UINT
:
case
VT_HRESULT
:
case
VT_PTR
:
case
VT_UNKNOWN
:
case
VT_DISPATCH
:
{
const
unsigned
int
lv
=
get_ulong_val
(
*
(
const
unsigned
int
*
)
value
,
vt
);
if
((
lv
&
0x3ffffff
)
==
lv
)
{
...
...
@@ -1257,6 +1259,33 @@ static HRESULT set_custdata(msft_typelib_t *typelib, REFGUID guid,
return
S_OK
;
}
/* It's possible to have a default value for pointer arguments too.
In this case default value has a referenced type, e.g.
'LONG*' argument gets VT_I4, 'DOUBLE*' - VT_R8. IUnknown* and IDispatch*
are recognised too and stored as VT_UNKNOWN and VT_DISPATCH.
But IUnknown/IDispatch arguments can only have default value of 0
(or expression that resolves to zero) while other pointers can have
any default value. */
static
int
get_defaultvalue_vt
(
type_t
*
type
)
{
int
vt
=
get_type_vt
(
type
);
if
(
type_get_type
(
type
)
==
TYPE_ENUM
)
vt
=
VT_I4
;
else
{
vt
=
get_type_vt
(
type
);
if
(
vt
==
VT_PTR
&&
is_ptr
(
type
))
{
vt
=
get_type_vt
(
type_pointer_get_ref
(
type
));
/* The only acceptable value for pointers to non-basic types
is NULL, it's stored as VT_I4 for both 32 and 64 bit typelibs. */
if
(
vt
==
VT_USERDEFINED
)
vt
=
VT_I4
;
}
}
return
vt
;
}
static
HRESULT
add_func_desc
(
msft_typeinfo_t
*
typeinfo
,
var_t
*
func
,
int
index
)
{
int
offset
,
name_offset
;
...
...
@@ -1481,10 +1510,7 @@ static HRESULT add_func_desc(msft_typeinfo_t* typeinfo, var_t *func, int index)
{
int
vt
;
expr_t
*
expr
=
(
expr_t
*
)
attr
->
u
.
pval
;
if
(
type_get_type
(
arg
->
type
)
==
TYPE_ENUM
)
vt
=
VT_INT
;
else
vt
=
get_type_vt
(
arg
->
type
);
vt
=
get_defaultvalue_vt
(
arg
->
type
);
paramflags
|=
0x30
;
/* PARAMFLAG_FHASDEFAULT | PARAMFLAG_FOPT */
if
(
expr
->
type
==
EXPR_STRLIT
||
expr
->
type
==
EXPR_WSTRLIT
)
{
...
...
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