Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
0eaab1ad
Commit
0eaab1ad
authored
Jan 31, 2008
by
Rob Shearman
Committed by
Alexandre Julliard
Feb 04, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mapi32: Add a stub implementation of HrQueryAllRows@24.
parent
7b81ea47
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
mapi32.spec
dlls/mapi32/mapi32.spec
+1
-1
util.c
dlls/mapi32/util.c
+9
-0
No files found.
dlls/mapi32/mapi32.spec
View file @
0eaab1ad
...
...
@@ -54,7 +54,7 @@
72 stdcall FEqualNames@8(ptr ptr) FEqualNames
73 stub WrapStoreEntryID@24
74 stdcall IsBadBoundedStringPtr@8(ptr long) IsBadBoundedStringPtr
75 st
ub HrQueryAllRows@24
75 st
dcall 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
...
...
dlls/mapi32/util.c
View file @
0eaab1ad
...
...
@@ -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
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment