Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
09216669
Commit
09216669
authored
Jun 21, 2006
by
James Hawkins
Committed by
Alexandre Julliard
Jun 22, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mapi32: Add a stub implementation of MAPIOpenLocalFormContainer.
parent
d50ff220
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
mapi32.spec
dlls/mapi32/mapi32.spec
+2
-2
mapi32_main.c
dlls/mapi32/mapi32_main.c
+6
-0
No files found.
dlls/mapi32/mapi32.spec
View file @
09216669
...
...
@@ -20,8 +20,8 @@
28 stdcall -private DllCanUnloadNow()
29 stub MAPIOpenFormMgr
30 stub MAPIOpenFormMgr@8
31 st
ub MAPIOpenLocalFormContainer
32 st
ub MAPIOpenLocalFormContainer@4
31 st
dcall MAPIOpenLocalFormContainer(ptr)
32 st
dcall MAPIOpenLocalFormContainer@4(ptr) MAPIOpenLocalFormContainer
33 stdcall ScInitMapiUtil@4(long) ScInitMapiUtil
34 stdcall DeinitMapiUtil@0() DeinitMapiUtil
35 stub ScGenerateMuid@4
...
...
dlls/mapi32/mapi32_main.c
View file @
09216669
...
...
@@ -100,6 +100,12 @@ HRESULT WINAPI MAPILogonEx(ULONG_PTR uiparam, LPWSTR profile,
return
SUCCESS_SUCCESS
;
}
HRESULT
WINAPI
MAPIOpenLocalFormContainer
(
LPVOID
*
ppfcnt
)
{
FIXME
(
"(%p) Stub
\n
"
,
ppfcnt
);
return
E_FAIL
;
}
VOID
WINAPI
MAPIUninitialize
(
void
)
{
FIXME
(
"Stub
\n
"
);
...
...
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