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
9d4284cc
Commit
9d4284cc
authored
Apr 23, 2013
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Apr 23, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oledb32: Implement GetConversionSize DBTYPE_STR->DBTYPE_WSTR.
parent
aeb7362e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
0 deletions
+24
-0
convert.c
dlls/oledb32/convert.c
+6
-0
convert.c
dlls/oledb32/tests/convert.c
+18
-0
No files found.
dlls/oledb32/convert.c
View file @
9d4284cc
...
...
@@ -1108,6 +1108,12 @@ static HRESULT WINAPI convert_GetConversionSize(IDataConvert* iface,
{
switch
(
src_type
)
{
case
DBTYPE_STR
:
if
(
src_len
)
*
dst_len
=
(
*
src_len
+
1
)
*
sizeof
(
WCHAR
);
else
*
dst_len
=
(
strlen
(
src
)
+
1
)
*
sizeof
(
WCHAR
);
break
;
case
DBTYPE_WSTR
:
if
(
src_len
)
*
dst_len
=
(
*
src_len
)
+
sizeof
(
WCHAR
);
...
...
dlls/oledb32/tests/convert.c
View file @
9d4284cc
...
...
@@ -2484,6 +2484,7 @@ static void test_getconversionsize(void)
HRESULT
hr
;
BSTR
str
;
static
WCHAR
strW
[]
=
{
't'
,
'e'
,
's'
,
't'
,
0
};
static
char
strTest
[]
=
"test"
;
hr
=
CoCreateInstance
(
&
CLSID_OLEDB_CONVERSIONLIBRARY
,
NULL
,
CLSCTX_INPROC_SERVER
,
&
IID_IDataConvert
,
(
void
**
)
&
convert
);
if
(
FAILED
(
hr
))
...
...
@@ -2530,6 +2531,23 @@ static void test_getconversionsize(void)
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
ok
(
dst_len
==
22
,
"%ld
\n
"
,
dst_len
);
dst_len
=
0
;
hr
=
IDataConvert_GetConversionSize
(
convert
,
DBTYPE_STR
,
DBTYPE_WSTR
,
NULL
,
&
dst_len
,
strTest
);
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
ok
(
dst_len
==
10
||
broken
(
dst_len
==
12
),
"%ld
\n
"
,
dst_len
);
dst_len
=
0
;
src_len
=
2
;
hr
=
IDataConvert_GetConversionSize
(
convert
,
DBTYPE_STR
,
DBTYPE_WSTR
,
&
src_len
,
&
dst_len
,
strTest
);
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
ok
(
dst_len
==
6
,
"%ld
\n
"
,
dst_len
);
dst_len
=
0
;
src_len
=
20
;
hr
=
IDataConvert_GetConversionSize
(
convert
,
DBTYPE_STR
,
DBTYPE_WSTR
,
&
src_len
,
&
dst_len
,
strTest
);
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
ok
(
dst_len
==
42
,
"%ld
\n
"
,
dst_len
);
IDataConvert_Release
(
convert
);
}
...
...
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