activeds: Implement ReallocADsMem.

Signed-off-by: Dmitry Timoshkov <dmitry@baikal.ru>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
feature/deterministic
Dmitry Timoshkov 2020-02-18 19:33:38 +08:00 committed by Alexandre Julliard
parent ddd5dbd8e9
commit e896017464
1 changed files with 1 additions and 2 deletions

View File

@ -229,8 +229,7 @@ BOOL WINAPI FreeADsMem(LPVOID pMem)
*/
LPVOID WINAPI ReallocADsMem(LPVOID pOldMem, DWORD cbOld, DWORD cbNew)
{
FIXME("(%p,%d,%d)!stub\n", pOldMem, cbOld, cbNew);
return NULL;
return HeapReAlloc(GetProcessHeap(), 0, pOldMem, cbNew);
}
/*****************************************************