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
a6181cb3
Commit
a6181cb3
authored
Jun 17, 2009
by
Huw Davies
Committed by
Alexandre Julliard
Jun 17, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tools/widl: Fix behaviour when both lcid and retval arguments are present.
parent
5d898e3e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
write_msft.c
tools/widl/write_msft.c
+5
-5
No files found.
tools/widl/write_msft.c
View file @
a6181cb3
...
...
@@ -1515,15 +1515,15 @@ static HRESULT add_func_desc(msft_typeinfo_t* typeinfo, var_t *func, int index)
paramdata
[
2
]
=
paramflags
;
typedata
[
3
]
+=
decoded_size
<<
16
;
if
(
lcid_retval_count
==
1
)
typedata
[
4
]
|=
0x4000
;
else
if
(
lcid_retval_count
==
2
)
typedata
[
4
]
|=
0x8000
;
i
++
;
}
}
if
(
lcid_retval_count
==
1
)
typedata
[
4
]
|=
0x4000
;
else
if
(
lcid_retval_count
==
2
)
typedata
[
4
]
|=
0x8000
;
if
(
typeinfo
->
funcs_allocated
==
0
)
{
typeinfo
->
funcs_allocated
=
10
;
typeinfo
->
func_indices
=
xmalloc
(
typeinfo
->
funcs_allocated
*
sizeof
(
int
));
...
...
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