Autosyncing with Wine HEAD

svn path=/trunk/; revision=26497
This commit is contained in:
The Wine Synchronizer 2007-04-25 08:21:30 +00:00
parent 2815d57683
commit dbf733fa0d
3 changed files with 10 additions and 3 deletions

View file

@ -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()

View file

@ -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;
}

View file

@ -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);
}
/*************************************************************************