Added stub for _CrtCheckMemory.
This commit is contained in:
parent
6122eeb5ca
commit
d8817fe467
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue