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

oledb32: Add FIXME for DBTYPE_NUMERIC type.

parent 23b5640b
......@@ -1081,7 +1081,10 @@ static HRESULT WINAPI convert_DataConvert(IDataConvert* iface,
}
break;
}
break;
case DBTYPE_NUMERIC:
FIXME("Unimplemented conversion %04x -> DBTYPE_NUMERIC\n", src_type);
return E_NOTIMPL;
default:
FIXME("Unimplemented conversion %04x -> %04x\n", src_type, dst_type);
......
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