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
fdb36878
Commit
fdb36878
authored
Apr 16, 2007
by
Damjan Jovanovic
Committed by
Alexandre Julliard
Apr 16, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mapi32: MAPIAdminProfiles stub.
parent
3d79f1b8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
mapi32.spec
dlls/mapi32/mapi32.spec
+2
-2
mapi32_main.c
dlls/mapi32/mapi32_main.c
+7
-0
No files found.
dlls/mapi32/mapi32.spec
View file @
fdb36878
...
...
@@ -7,8 +7,8 @@
15 stdcall MAPIAllocateMore@12(long ptr ptr) MAPIAllocateMore
16 stdcall MAPIFreeBuffer(ptr)
17 stdcall MAPIFreeBuffer@4(ptr) MAPIFreeBuffer
18 st
ub MAPIAdminProfiles
19 st
ub MAPIAdminProfiles@8
18 st
dcall MAPIAdminProfiles(long ptr)
19 st
dcall MAPIAdminProfiles@8(long ptr) MAPIAdminProfiles
20 stdcall MAPIInitialize(ptr)
21 stdcall MAPIInitialize@4(ptr) MAPIInitialize
22 stdcall MAPIUninitialize()
...
...
dlls/mapi32/mapi32_main.c
View file @
fdb36878
...
...
@@ -110,3 +110,10 @@ VOID WINAPI MAPIUninitialize(void)
{
FIXME
(
"Stub
\n
"
);
}
HRESULT
WINAPI
MAPIAdminProfiles
(
ULONG
ulFlags
,
LPPROFADMIN
*
lppProfAdmin
)
{
FIXME
(
"(%u, %p): stub
\n
"
,
ulFlags
,
lppProfAdmin
);
*
lppProfAdmin
=
NULL
;
return
E_FAIL
;
}
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