Commit fdb36878 authored by Damjan Jovanovic's avatar Damjan Jovanovic Committed by Alexandre Julliard

mapi32: MAPIAdminProfiles stub.

parent 3d79f1b8
......@@ -7,8 +7,8 @@
15 stdcall MAPIAllocateMore@12(long ptr ptr) MAPIAllocateMore
16 stdcall MAPIFreeBuffer(ptr)
17 stdcall MAPIFreeBuffer@4(ptr) MAPIFreeBuffer
18 stub MAPIAdminProfiles
19 stub MAPIAdminProfiles@8
18 stdcall MAPIAdminProfiles(long ptr)
19 stdcall MAPIAdminProfiles@8(long ptr) MAPIAdminProfiles
20 stdcall MAPIInitialize(ptr)
21 stdcall MAPIInitialize@4(ptr) MAPIInitialize
22 stdcall MAPIUninitialize()
......
......@@ -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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment