Rob Shearman : mapi32: Add a stub implementation of HrQueryAllRows at 24.

Alexandre Julliard julliard at winehq.org
Mon Feb 4 08:42:57 CST 2008


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

Author: Rob Shearman <rob at codeweavers.com>
Date:   Thu Jan 31 14:54:23 2008 +0000

mapi32: Add a stub implementation of HrQueryAllRows at 24.

---

 dlls/mapi32/mapi32.spec |    2 +-
 dlls/mapi32/util.c      |    9 +++++++++
 2 files changed, 10 insertions(+), 1 deletions(-)

diff --git a/dlls/mapi32/mapi32.spec b/dlls/mapi32/mapi32.spec
index bf97415..abf79bf 100644
--- a/dlls/mapi32/mapi32.spec
+++ b/dlls/mapi32/mapi32.spec
@@ -54,7 +54,7 @@
  72 stdcall FEqualNames at 8(ptr ptr) FEqualNames
  73 stub WrapStoreEntryID at 24
  74 stdcall IsBadBoundedStringPtr at 8(ptr long) IsBadBoundedStringPtr
- 75 stub HrQueryAllRows at 24
+ 75 stdcall HrQueryAllRows at 24(ptr ptr ptr ptr long ptr) HrQueryAllRows
  76 stdcall PropCopyMore at 16(ptr ptr ptr ptr) PropCopyMore
  77 stdcall UlPropSize at 4(ptr) UlPropSize
  78 stdcall FPropContainsProp at 12(ptr ptr long) FPropContainsProp
diff --git a/dlls/mapi32/util.c b/dlls/mapi32/util.c
index 6621e6f..76c08ca 100644
--- a/dlls/mapi32/util.c
+++ b/dlls/mapi32/util.c
@@ -890,3 +890,12 @@ BOOL WINAPI FGetComponentPath(LPCSTR component, LPCSTR qualifier, LPSTR dll_path
     }
     return ret;
 }
+
+HRESULT WINAPI HrQueryAllRows(LPMAPITABLE lpTable, LPSPropTagArray lpPropTags,
+    LPSRestriction lpRestriction, LPSSortOrderSet lpSortOrderSet,
+    LONG crowsMax, LPSRowSet *lppRows)
+{
+    FIXME("(%p, %p, %p, %p, %d, %p): stub\n", lpTable, lpPropTags, lpRestriction, lpSortOrderSet, crowsMax, lppRows);
+    *lppRows = NULL;
+    return MAPI_E_CALL_FAILED;
+}




More information about the wine-cvs mailing list