mapi32: Add a stub implementation of HrQueryAllRows@24.
This commit is contained in:
parent
7b81ea47c6
commit
0eaab1add2
|
@ -54,7 +54,7 @@
|
|||
72 stdcall FEqualNames@8(ptr ptr) FEqualNames
|
||||
73 stub WrapStoreEntryID@24
|
||||
74 stdcall IsBadBoundedStringPtr@8(ptr long) IsBadBoundedStringPtr
|
||||
75 stub HrQueryAllRows@24
|
||||
75 stdcall HrQueryAllRows@24(ptr ptr ptr ptr long ptr) HrQueryAllRows
|
||||
76 stdcall PropCopyMore@16(ptr ptr ptr ptr) PropCopyMore
|
||||
77 stdcall UlPropSize@4(ptr) UlPropSize
|
||||
78 stdcall FPropContainsProp@12(ptr ptr long) FPropContainsProp
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue