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

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2019-12-10 09:24:13 +01:00 committed by Alexandre Julliard
parent 516dc46b82
commit 4d5e1f07ef
2 changed files with 5 additions and 5 deletions

View File

@ -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;
}

View File

@ -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);