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
e9b36904
Commit
e9b36904
authored
Feb 10, 2004
by
Alastair Bridgewater
Committed by
Alexandre Julliard
Feb 10, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support for a small handful more return value/argument/variable types.
parent
f0b082b3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
typelib2.c
dlls/oleaut32/typelib2.c
+20
-0
No files found.
dlls/oleaut32/typelib2.c
View file @
e9b36904
...
...
@@ -815,6 +815,17 @@ static int ctl2_encode_typedesc(
*
alignment
=
1
;
break
;
case
VT_INT
:
*
encoded_tdesc
=
0x80000000
|
(
VT_I4
<<
16
)
|
VT_INT
;
if
((
This
->
typelib_header
.
varflags
&
0x0f
)
==
SYS_WIN16
)
{
*
width
=
2
;
*
alignment
=
2
;
}
else
{
*
width
=
4
;
*
alignment
=
4
;
}
break
;
case
VT_UINT
:
*
encoded_tdesc
=
0x80000000
|
(
VT_UI4
<<
16
)
|
VT_UINT
;
if
((
This
->
typelib_header
.
varflags
&
0x0f
)
==
SYS_WIN16
)
{
...
...
@@ -827,6 +838,8 @@ static int ctl2_encode_typedesc(
break
;
case
VT_UI2
:
case
VT_I2
:
case
VT_BOOL
:
*
encoded_tdesc
=
default_tdesc
;
*
width
=
2
;
*
alignment
=
2
;
...
...
@@ -834,6 +847,7 @@ static int ctl2_encode_typedesc(
case
VT_I4
:
case
VT_UI4
:
case
VT_R4
:
case
VT_ERROR
:
case
VT_BSTR
:
case
VT_HRESULT
:
...
...
@@ -842,6 +856,12 @@ static int ctl2_encode_typedesc(
*
alignment
=
4
;
break
;
case
VT_CY
:
*
encoded_tdesc
=
default_tdesc
;
*
width
=
8
;
*
alignment
=
4
;
/* guess? */
break
;
case
VT_VOID
:
*
encoded_tdesc
=
0x80000000
|
(
VT_EMPTY
<<
16
)
|
tdesc
->
vt
;
*
width
=
0
;
...
...
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