Skip to content
Snippets Groups Projects
Commit d8817fe4 authored by Lionel Ulmer's avatar Lionel Ulmer Committed by Alexandre Julliard
Browse files

Added stub for _CrtCheckMemory.

parent 6122eeb5
No related branches found
No related tags found
No related merge requests found
......@@ -114,6 +114,16 @@ int _CrtDumpMemoryLeaks()
return 0;
}
/*********************************************************************
* _CrtCheckMemory (MSVCRTD.@)
*/
int _CrtCheckMemory()
{
/* Note: maybe we could call here our heap validating functions ? */
return TRUE;
}
/*********************************************************************
* __p__crtAssertBusy (MSVCRTD.@)
*/
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment