msi: Implement STREAMS_get_row.

This commit is contained in:
Hans Leidekker 2010-02-04 10:00:46 +01:00 committed by Alexandre Julliard
parent 74d6fe35a2
commit 5741df2e58
1 changed files with 2 additions and 2 deletions

View File

@ -124,9 +124,9 @@ static UINT STREAMS_get_row( struct tagMSIVIEW *view, UINT row, MSIRECORD **rec
{
MSISTREAMSVIEW *sv = (MSISTREAMSVIEW *)view;
FIXME("%p %d %p\n", sv, row, rec);
TRACE("%p %d %p\n", sv, row, rec);
return ERROR_CALL_NOT_IMPLEMENTED;
return msi_view_get_row( sv->db, view, row, rec );
}
static UINT STREAMS_set_row(struct tagMSIVIEW *view, UINT row, MSIRECORD *rec, UINT mask)