Commit 8af32e41 authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

msado15: Implement ADOConnectionConstruction15 get_Session.

parent 3289a7a2
......@@ -753,8 +753,12 @@ static HRESULT WINAPI adoconstruct_get_DSO(ADOConnectionConstruction15 *iface, I
static HRESULT WINAPI adoconstruct_get_Session(ADOConnectionConstruction15 *iface, IUnknown **session)
{
struct connection *connection = impl_from_ADOConnectionConstruction15( iface );
FIXME("%p, %p\n", connection, session);
return E_NOTIMPL;
TRACE("%p, %p\n", connection, session);
*session = connection->session;
if (*session)
IUnknown_AddRef(*session);
return S_OK;
}
static HRESULT WINAPI adoconstruct_WrapDSOandSession(ADOConnectionConstruction15 *iface, IUnknown *dso,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment