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
0dc1c6ac
Commit
0dc1c6ac
authored
May 08, 2023
by
Zhiyi Zhang
Committed by
Alexandre Julliard
May 09, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oledb32: Support converting DBTYPE_VARIANT to DBTYPE_UI8.
parent
c29b7db3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
convert.c
dlls/oledb32/convert.c
+5
-0
convert.c
dlls/oledb32/tests/convert.c
+0
-4
No files found.
dlls/oledb32/convert.c
View file @
0dc1c6ac
...
...
@@ -826,6 +826,11 @@ static HRESULT WINAPI convert_DataConvert(IDataConvert* iface,
case
DBTYPE_UI4
:
hr
=
VarUI8FromUI4
(
*
(
DWORD
*
)
src
,
d
);
break
;
case
DBTYPE_I8
:
hr
=
VarUI8FromI8
(
*
(
LONGLONG
*
)
src
,
d
);
break
;
case
DBTYPE_UI8
:
*
d
=
*
(
ULONGLONG
*
)
src
;
hr
=
S_OK
;
break
;
case
DBTYPE_VARIANT
:
VariantInit
(
&
tmp
);
if
((
hr
=
VariantChangeType
(
&
tmp
,
src
,
0
,
VT_UI8
))
==
S_OK
)
*
d
=
V_UI8
(
&
tmp
);
break
;
default:
FIXME
(
"Unimplemented conversion %04x -> UI8
\n
"
,
src_type
);
return
E_NOTIMPL
;
}
break
;
...
...
dlls/oledb32/tests/convert.c
View file @
0dc1c6ac
...
...
@@ -3082,13 +3082,9 @@ static void test_converttoui8(void)
V_UI8
(
&
v
)
=
4321
;
dst_len
=
0x1234
;
hr
=
IDataConvert_DataConvert
(
convert
,
DBTYPE_VARIANT
,
DBTYPE_UI8
,
0
,
&
dst_len
,
&
v
,
&
dst
,
sizeof
(
dst
),
0
,
&
dst_status
,
0
,
0
,
0
);
todo_wine
ok
(
hr
==
S_OK
,
"got %08lx
\n
"
,
hr
);
todo_wine
ok
(
dst_status
==
DBSTATUS_S_OK
,
"got %08lx
\n
"
,
dst_status
);
todo_wine
ok
(
dst_len
==
sizeof
(
dst
),
"got %Id
\n
"
,
dst_len
);
todo_wine
ok
(
dst
.
QuadPart
==
4321
,
"got %d
\n
"
,
(
int
)
dst
.
QuadPart
);
}
...
...
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