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
8b43f8be
Commit
8b43f8be
authored
Feb 07, 2007
by
Rob Shearman
Committed by
Alexandre Julliard
Feb 08, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Fix the IDL for the "Value" method in the tmarshal tests.
parent
d794398e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
10 deletions
+4
-10
tmarshal.c
dlls/oleaut32/tests/tmarshal.c
+3
-9
tmarshal.idl
dlls/oleaut32/tests/tmarshal.idl
+1
-1
No files found.
dlls/oleaut32/tests/tmarshal.c
View file @
8b43f8be
...
...
@@ -916,20 +916,14 @@ static void test_typelibmarshal(void)
dispparams
.
rgvarg
=
vararg
;
VariantInit
(
&
varresult
);
hr
=
IDispatch_Invoke
(
pDispatch
,
DISPID_VALUE
,
&
IID_NULL
,
LOCALE_NEUTRAL
,
DISPATCH_PROPERTYGET
,
&
dispparams
,
&
varresult
,
&
excepinfo
,
NULL
);
todo_wine
{
ok_ole_success
(
hr
,
IDispatch_Invoke
);
}
ok_ole_success
(
hr
,
IDispatch_Invoke
);
ok
(
excepinfo
.
wCode
==
0x0
&&
excepinfo
.
scode
==
S_OK
,
"EXCEPINFO differs from expected: wCode = 0x%x, scode = 0x%08x
\n
"
,
excepinfo
.
wCode
,
excepinfo
.
scode
);
todo_wine
{
ok
(
V_VT
(
&
varresult
)
==
VT_I2
,
"V_VT(&varresult) was %d instead of VT_I2
\n
"
,
V_VT
(
&
varresult
));
ok
(
V_I2
(
&
varresult
)
==
1234
,
"V_I2(&varresult) was %d instead of 1234
\n
"
,
V_I2
(
&
varresult
));
}
ok
(
V_VT
(
&
varresult
)
==
VT_I2
,
"V_VT(&varresult) was %d instead of VT_I2
\n
"
,
V_VT
(
&
varresult
));
ok
(
V_I2
(
&
varresult
)
==
1234
,
"V_I2(&varresult) was %d instead of 1234
\n
"
,
V_I2
(
&
varresult
));
VariantClear
(
&
varresult
);
/* call Variant - exercises variant copying in ITypeInfo::Invoke and
...
...
dlls/oleaut32/tests/tmarshal.idl
View file @
8b43f8be
...
...
@@ -76,7 +76,7 @@ library TestTypelib
[
propget
,
id
(
DISPID_TM_CLONECOCLASS
)
]
HRESULT
CloneCoclass
(
[
out
,
retval
]
ApplicationObject2
**
ppVal
)
;
[
id
(
DISPID_VALUE
)
]
[
propget
,
id
(
DISPID_VALUE
)
]
HRESULT
Value
(
[
in
]
VARIANT
*
value
,
[
out
,
retval
]
VARIANT
*
retval
)
;
[
id
(
DISPID_TM_ARRAY
)
]
...
...
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