Commit 4d5e1f07 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

msado15: Fix the name of the GetString() delimiter parameters.

parent 516dc46b
......@@ -526,11 +526,11 @@ static HRESULT WINAPI recordset_get_StayInSync( _Recordset *iface, VARIANT_BOOL
}
static HRESULT WINAPI recordset_GetString( _Recordset *iface, StringFormatEnum string_format, LONG num_rows,
BSTR column_delimeter, BSTR row_delimeter, BSTR null_expr,
BSTR column_delimiter, BSTR row_delimiter, BSTR null_expr,
BSTR *ret_string )
{
FIXME( "%p, %u, %d, %s, %s, %s, %p\n", iface, string_format, num_rows, debugstr_w(column_delimeter),
debugstr_w(row_delimeter), debugstr_w(null_expr), ret_string );
FIXME( "%p, %u, %d, %s, %s, %s, %p\n", iface, string_format, num_rows, debugstr_w(column_delimiter),
debugstr_w(row_delimiter), debugstr_w(null_expr), ret_string );
return E_NOTIMPL;
}
......
......@@ -1068,8 +1068,8 @@ interface Recordset20 : Recordset15
HRESULT GetString(
[in, defaultvalue(adClipString)] StringFormatEnum string_format,
[in, defaultvalue(-1)] LONG num_rows,
[in, optional] BSTR column_delimeter,
[in, optional] BSTR row_delimeter,
[in, optional] BSTR column_delimiter,
[in, optional] BSTR row_delimiter,
[in, optional] BSTR null_expr,
[out, retval] BSTR *ret_string);
......
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