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
14e069b3
Commit
14e069b3
authored
May 27, 2008
by
Michael Karcher
Committed by
Alexandre Julliard
May 27, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32/tests: Call functions via manually obtained pointers.
parent
b58cab40
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
vartype.c
dlls/oleaut32/tests/vartype.c
+5
-5
No files found.
dlls/oleaut32/tests/vartype.c
View file @
14e069b3
...
...
@@ -1098,7 +1098,7 @@ static void test_VarUI1FromDisp(void)
dispatch
.
vt
=
VT_UI1
;
dispatch
.
bFailInvoke
=
FALSE
;
hres
=
VarUI1FromDisp
((
IDispatch
*
)
&
dispatch
,
in
,
&
out
);
hres
=
p
VarUI1FromDisp
((
IDispatch
*
)
&
dispatch
,
in
,
&
out
);
trace
(
"0x%08x
\n
"
,
hres
);
hres
=
VariantChangeTypeEx
(
&
vDst
,
&
vSrc
,
in
,
0
,
VT_UI1
);
...
...
@@ -1106,7 +1106,7 @@ static void test_VarUI1FromDisp(void)
dispatch
.
bFailInvoke
=
TRUE
;
hres
=
VarUI1FromDisp
((
IDispatch
*
)
&
dispatch
,
in
,
&
out
);
hres
=
p
VarUI1FromDisp
((
IDispatch
*
)
&
dispatch
,
in
,
&
out
);
trace
(
"0x%08x
\n
"
,
hres
);
hres
=
VariantChangeTypeEx
(
&
vDst
,
&
vSrc
,
in
,
0
,
VT_UI1
);
...
...
@@ -4803,7 +4803,7 @@ static void test_VarBstrFromDate(void)
#define BSTR_CY(l, a, b, e) \
S(l).Lo = b; S(l).Hi = a; \
hres = VarBstrFromCy(l, lcid, LOCALE_NOUSEROVERRIDE, &bstr);\
hres =
p
VarBstrFromCy(l, lcid, LOCALE_NOUSEROVERRIDE, &bstr);\
ok(hres == S_OK, "got hres 0x%08x\n", hres);\
if (hres== S_OK && bstr)\
{\
...
...
@@ -4865,7 +4865,7 @@ static void test_VarBstrFromCy(void)
#define BSTR_DEC(l, a, b, c, d, e) \
SETDEC(l, a,b,c,d);\
hres = VarBstrFromDec(&l, lcid, LOCALE_NOUSEROVERRIDE, &bstr);\
hres =
p
VarBstrFromDec(&l, lcid, LOCALE_NOUSEROVERRIDE, &bstr);\
ok(hres == S_OK, "got hres 0x%08x\n", hres);\
if (hres== S_OK && bstr)\
{\
...
...
@@ -4874,7 +4874,7 @@ static void test_VarBstrFromCy(void)
#define BSTR_DEC64(l, a, b, c, x, d, e) \
SETDEC64(l, a,b,c,x,d);\
hres = VarBstrFromDec(&l, lcid, LOCALE_NOUSEROVERRIDE, &bstr);\
hres =
p
VarBstrFromDec(&l, lcid, LOCALE_NOUSEROVERRIDE, &bstr);\
ok(hres == S_OK, "got hres 0x%08x\n", hres);\
if (hres== S_OK && bstr)\
{\
...
...
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