mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 22:52:54 +00:00
[MAPI32] Sync with Wine Staging 1.9.4. CORE-10912
svn path=/trunk/; revision=70874
This commit is contained in:
parent
5d4b069a8b
commit
c3677ca740
2 changed files with 3 additions and 3 deletions
|
@ -98,7 +98,7 @@ static ULONG WINAPI IMAPIMalloc_fnRelease(LPMALLOC iface)
|
||||||
*/
|
*/
|
||||||
static LPVOID WINAPI IMAPIMalloc_fnAlloc(LPMALLOC iface, SIZE_T cb)
|
static LPVOID WINAPI IMAPIMalloc_fnAlloc(LPMALLOC iface, SIZE_T cb)
|
||||||
{
|
{
|
||||||
TRACE("(%p)->(%d)\n", iface, cb);
|
TRACE("(%p)->(%ld)\n", iface, cb);
|
||||||
|
|
||||||
return LocalAlloc(LMEM_FIXED, cb);
|
return LocalAlloc(LMEM_FIXED, cb);
|
||||||
}
|
}
|
||||||
|
@ -108,7 +108,7 @@ static LPVOID WINAPI IMAPIMalloc_fnAlloc(LPMALLOC iface, SIZE_T cb)
|
||||||
*/
|
*/
|
||||||
static LPVOID WINAPI IMAPIMalloc_fnRealloc(LPMALLOC iface, LPVOID pv, SIZE_T cb)
|
static LPVOID WINAPI IMAPIMalloc_fnRealloc(LPMALLOC iface, LPVOID pv, SIZE_T cb)
|
||||||
{
|
{
|
||||||
TRACE("(%p)->(%p, %d)\n", iface, pv, cb);
|
TRACE("(%p)->(%p, %ld)\n", iface, pv, cb);
|
||||||
|
|
||||||
if (!pv)
|
if (!pv)
|
||||||
return LocalAlloc(LMEM_FIXED, cb);
|
return LocalAlloc(LMEM_FIXED, cb);
|
||||||
|
|
|
@ -91,7 +91,7 @@ reactos/dll/win32/loadperf # Synced to WineStaging-1.7.55
|
||||||
reactos/dll/win32/localspl # Synced to WineStaging-1.7.55
|
reactos/dll/win32/localspl # Synced to WineStaging-1.7.55
|
||||||
reactos/dll/win32/localui # Synced to WineStaging-1.7.55
|
reactos/dll/win32/localui # Synced to WineStaging-1.7.55
|
||||||
reactos/dll/win32/lz32 # Synced to WineStaging-1.7.55
|
reactos/dll/win32/lz32 # Synced to WineStaging-1.7.55
|
||||||
reactos/dll/win32/mapi32 # Synced to WineStaging-1.7.55
|
reactos/dll/win32/mapi32 # Synced to WineStaging-1.9.4
|
||||||
reactos/dll/win32/mciavi32 # Synced to WineStaging-1.7.55
|
reactos/dll/win32/mciavi32 # Synced to WineStaging-1.7.55
|
||||||
reactos/dll/win32/mcicda # Synced to WineStaging-1.7.55
|
reactos/dll/win32/mcicda # Synced to WineStaging-1.7.55
|
||||||
reactos/dll/win32/mciqtz32 # Synced to WineStaging-1.7.55
|
reactos/dll/win32/mciqtz32 # Synced to WineStaging-1.7.55
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue