Commit d8817fe4 authored by Lionel Ulmer's avatar Lionel Ulmer Committed by Alexandre Julliard

Added stub for _CrtCheckMemory.

parent 6122eeb5
......@@ -115,6 +115,16 @@ int _CrtDumpMemoryLeaks()
}
/*********************************************************************
* _CrtCheckMemory (MSVCRTD.@)
*/
int _CrtCheckMemory()
{
/* Note: maybe we could call here our heap validating functions ? */
return TRUE;
}
/*********************************************************************
* __p__crtAssertBusy (MSVCRTD.@)
*/
int *__p__crtAssertBusy(void)
......
......@@ -66,7 +66,7 @@
@ cdecl _CIsqrt() msvcrt._CIsqrt
@ cdecl _CItan() msvcrt._CItan
@ cdecl _CItanh() msvcrt._CItanh
@ stub _CrtCheckMemory
@ cdecl _CrtCheckMemory()
@ stub _CrtDbgBreak
@ varargs _CrtDbgReport(long ptr long ptr ptr)
@ stub _CrtDoForAllClientObjects
......
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