mirror of
https://github.com/reactos/reactos.git
synced 2025-04-28 01:11:35 +00:00
Autosyncing with Wine HEAD
svn path=/trunk/; revision=26497
This commit is contained in:
parent
2815d57683
commit
dbf733fa0d
3 changed files with 10 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -665,7 +665,7 @@ VOID WINAPI FreePadrlist(LPADRLIST lpAddrs)
|
|||
TRACE("(%p)\n", lpAddrs);
|
||||
|
||||
/* Structures are binary compatible; use the same implementation */
|
||||
return FreeProws((LPSRowSet)lpAddrs);
|
||||
FreeProws((LPSRowSet)lpAddrs);
|
||||
}
|
||||
|
||||
/*************************************************************************
|
||||
|
|
Loading…
Reference in a new issue