Hans Leidekker : msi: Support retrieving rows from join tables.

Alexandre Julliard julliard at winehq.org
Mon Jan 18 10:58:56 CST 2010


Module: wine
Branch: master
Commit: 1423ef9923de2e4882395acff7d0b52fcfc5d444
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=1423ef9923de2e4882395acff7d0b52fcfc5d444

Author: Hans Leidekker <hans at codeweavers.com>
Date:   Mon Jan 18 13:09:46 2010 +0100

msi: Support retrieving rows from join tables.

---

 dlls/msi/join.c |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/dlls/msi/join.c b/dlls/msi/join.c
index a577aea..b4685b5 100644
--- a/dlls/msi/join.c
+++ b/dlls/msi/join.c
@@ -117,8 +117,11 @@ static UINT JOIN_fetch_stream( struct tagMSIVIEW *view, UINT row, UINT col, IStr
 
 static UINT JOIN_get_row( struct tagMSIVIEW *view, UINT row, MSIRECORD **rec )
 {
-    FIXME("(%p, %d, %p): stub!\n", view, row, rec);
-    return ERROR_FUNCTION_FAILED;
+    MSIJOINVIEW *jv = (MSIJOINVIEW*)view;
+
+    TRACE("%p %d %p\n", jv, row, rec);
+
+    return msi_view_get_row( jv->db, view, row, rec );
 }
 
 static UINT JOIN_execute( struct tagMSIVIEW *view, MSIRECORD *record )




More information about the wine-cvs mailing list