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
b4b45471
Commit
b4b45471
authored
Apr 18, 2013
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Apr 24, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oledb32: Implement DataConvert DBTYPE_BOOL->VARIANT.
parent
103693e4
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
0 deletions
+16
-0
convert.c
dlls/oledb32/convert.c
+5
-0
convert.c
dlls/oledb32/tests/convert.c
+11
-0
No files found.
dlls/oledb32/convert.c
View file @
b4b45471
...
...
@@ -752,6 +752,11 @@ static HRESULT WINAPI convert_DataConvert(IDataConvert* iface,
switch
(
src_type
)
{
case
DBTYPE_BOOL
:
V_VT
(
v
)
=
VT_BOOL
;
V_BOOL
(
v
)
=
*
(
VARIANT_BOOL
*
)
src
;
hr
=
S_OK
;
break
;
case
DBTYPE_I4
:
V_VT
(
v
)
=
VT_I4
;
V_I4
(
v
)
=
*
(
signed
int
*
)
src
;
...
...
dlls/oledb32/tests/convert.c
View file @
b4b45471
...
...
@@ -2564,6 +2564,7 @@ static void test_converttovar(void)
DATE
date
;
INT
i4
;
LARGE_INTEGER
i8
;
VARIANT_BOOL
boolean
=
VARIANT_TRUE
;
hr
=
CoCreateInstance
(
&
CLSID_OLEDB_CONVERSIONLIBRARY
,
NULL
,
CLSCTX_INPROC_SERVER
,
&
IID_IDataConvert
,
(
void
**
)
&
convert
);
if
(
FAILED
(
hr
))
...
...
@@ -2617,6 +2618,16 @@ static void test_converttovar(void)
V_VT
(
&
dst
)
=
VT_EMPTY
;
dst_len
=
0
;
dst_status
=
DBSTATUS_S_DEFAULT
;
hr
=
IDataConvert_DataConvert
(
convert
,
DBTYPE_BOOL
,
DBTYPE_VARIANT
,
sizeof
(
boolean
),
&
dst_len
,
&
boolean
,
&
dst
,
sizeof
(
dst
),
0
,
&
dst_status
,
0
,
0
,
0
);
ok
(
hr
==
S_OK
,
"got %08x
\n
"
,
hr
);
ok
(
dst_status
==
DBSTATUS_S_OK
,
"got %08x
\n
"
,
dst_status
);
ok
(
dst_len
==
sizeof
(
dst
),
"got %ld
\n
"
,
dst_len
);
ok
(
V_VT
(
&
dst
)
==
VT_BOOL
,
"got %d
\n
"
,
V_VT
(
&
dst
));
ok
(
V_BOOL
(
&
dst
)
==
VARIANT_TRUE
,
"got %d
\n
"
,
V_BOOL
(
&
dst
));
V_VT
(
&
dst
)
=
VT_EMPTY
;
dst_len
=
0
;
dst_status
=
DBSTATUS_S_DEFAULT
;
i4
=
123
;
hr
=
IDataConvert_DataConvert
(
convert
,
DBTYPE_I4
,
DBTYPE_VARIANT
,
sizeof
(
i4
),
&
dst_len
,
&
i4
,
&
dst
,
sizeof
(
dst
),
0
,
&
dst_status
,
0
,
0
,
0
);
ok
(
hr
==
S_OK
,
"got %08x
\n
"
,
hr
);
...
...
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