Commit e8960174 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

activeds: Implement ReallocADsMem.

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