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
fed2ca76
Commit
fed2ca76
authored
Oct 29, 2021
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Oct 29, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msdasql: Add IConvertType interface for ICommandText.
Signed-off-by:
Alistair Leslie-Hughes
<
leslie_alistair@hotmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
d9e0dde2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
46 additions
and
3 deletions
+46
-3
session.c
dlls/msdasql/session.c
+44
-0
provider.c
dlls/msdasql/tests/provider.c
+2
-3
No files found.
dlls/msdasql/session.c
View file @
fed2ca76
...
...
@@ -280,6 +280,7 @@ struct command
ICommandText
ICommandText_iface
;
ICommandProperties
ICommandProperties_iface
;
IColumnsInfo
IColumnsInfo_iface
;
IConvertType
IConvertType_iface
;
LONG
refs
;
};
...
...
@@ -298,6 +299,11 @@ static inline struct command *impl_from_IColumnsInfo( IColumnsInfo *iface )
return
CONTAINING_RECORD
(
iface
,
struct
command
,
IColumnsInfo_iface
);
}
static
inline
struct
command
*
impl_from_IConvertType
(
IConvertType
*
iface
)
{
return
CONTAINING_RECORD
(
iface
,
struct
command
,
IConvertType_iface
);
}
static
HRESULT
WINAPI
command_QueryInterface
(
ICommandText
*
iface
,
REFIID
riid
,
void
**
ppv
)
{
struct
command
*
command
=
impl_from_ICommandText
(
iface
);
...
...
@@ -319,6 +325,10 @@ static HRESULT WINAPI command_QueryInterface(ICommandText *iface, REFIID riid, v
{
*
ppv
=
&
command
->
IColumnsInfo_iface
;
}
else
if
(
IsEqualGUID
(
&
IID_IConvertType
,
riid
))
{
*
ppv
=
&
command
->
IConvertType_iface
;
}
if
(
*
ppv
)
{
...
...
@@ -510,6 +520,39 @@ static struct IColumnsInfoVtbl columninfoVtbl =
colsinfo_MapColumnIDs
};
static
HRESULT
WINAPI
converttype_QueryInterface
(
IConvertType
*
iface
,
REFIID
riid
,
void
**
out
)
{
struct
command
*
command
=
impl_from_IConvertType
(
iface
);
return
ICommandText_QueryInterface
(
&
command
->
ICommandText_iface
,
riid
,
out
);
}
static
ULONG
WINAPI
converttype_AddRef
(
IConvertType
*
iface
)
{
struct
command
*
command
=
impl_from_IConvertType
(
iface
);
return
ICommandText_AddRef
(
&
command
->
ICommandText_iface
);
}
static
ULONG
WINAPI
converttype_Release
(
IConvertType
*
iface
)
{
struct
command
*
command
=
impl_from_IConvertType
(
iface
);
return
ICommandText_Release
(
&
command
->
ICommandText_iface
);
}
static
HRESULT
WINAPI
converttype_CanConvert
(
IConvertType
*
iface
,
DBTYPE
from
,
DBTYPE
to
,
DBCONVERTFLAGS
flags
)
{
struct
command
*
command
=
impl_from_IConvertType
(
iface
);
FIXME
(
"%p, %u, %d, 0x%08x
\n
"
,
command
,
from
,
to
,
flags
);
return
E_NOTIMPL
;
}
static
struct
IConvertTypeVtbl
converttypeVtbl
=
{
converttype_QueryInterface
,
converttype_AddRef
,
converttype_Release
,
converttype_CanConvert
};
static
HRESULT
WINAPI
createcommand_CreateCommand
(
IDBCreateCommand
*
iface
,
IUnknown
*
outer
,
REFIID
riid
,
IUnknown
**
out
)
{
...
...
@@ -529,6 +572,7 @@ static HRESULT WINAPI createcommand_CreateCommand(IDBCreateCommand *iface, IUnkn
command
->
ICommandText_iface
.
lpVtbl
=
&
commandVtbl
;
command
->
ICommandProperties_iface
.
lpVtbl
=
&
commonpropsVtbl
;
command
->
IColumnsInfo_iface
.
lpVtbl
=
&
columninfoVtbl
;
command
->
IConvertType_iface
.
lpVtbl
=
&
converttypeVtbl
;
command
->
refs
=
1
;
hr
=
ICommandText_QueryInterface
(
&
command
->
ICommandText_iface
,
riid
,
(
void
**
)
out
);
...
...
dlls/msdasql/tests/provider.c
View file @
fed2ca76
...
...
@@ -130,9 +130,8 @@ static void test_command_interfaces(IUnknown *cmd)
ICommandText_Release
(
comand_text
);
hr
=
IUnknown_QueryInterface
(
cmd
,
&
IID_IConvertType
,
(
void
**
)
&
convertype
);
todo_wine
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
if
(
hr
==
S_OK
)
IConvertType_Release
(
convertype
);
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
IConvertType_Release
(
convertype
);
hr
=
IUnknown_QueryInterface
(
cmd
,
&
IID_ICommandPrepare
,
(
void
**
)
&
commandprepare
);
todo_wine
ok
(
hr
==
S_OK
,
"got 0x%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