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

msado15: Field ActualSize return a default size.

parent 669107f6
...@@ -198,8 +198,10 @@ static HRESULT WINAPI field_get_Properties( Field *iface, Properties **obj ) ...@@ -198,8 +198,10 @@ static HRESULT WINAPI field_get_Properties( Field *iface, Properties **obj )
static HRESULT WINAPI field_get_ActualSize( Field *iface, ADO_LONGPTR *size ) static HRESULT WINAPI field_get_ActualSize( Field *iface, ADO_LONGPTR *size )
{ {
FIXME( "%p, %p\n", iface, size ); struct field *field = impl_from_Field( iface );
return E_NOTIMPL; FIXME( "%p, %p\n", field, size );
*size = 0;
return S_OK;
} }
static HRESULT WINAPI field_get_Attributes( Field *iface, LONG *attrs ) static HRESULT WINAPI field_get_Attributes( Field *iface, LONG *attrs )
......
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