ReactOS 0.4.16-dev-937-g7afcd2a
heapchk.cpp File Reference
#include <corecrt_internal.h>
#include <malloc.h>
Include dependency graph for heapchk.cpp:

Go to the source code of this file.

Functions

int __cdecl _heapchk ()
 

Function Documentation

◆ _heapchk()

int __cdecl _heapchk ( void  )

Definition at line 15 of file heapchk.cpp.

16{
17 if (!HeapValidate(__acrt_heap, 0, nullptr))
18 return _HEAPBADNODE;
19
20 return _HEAPOK;
21}
#define _HEAPOK
Definition: malloc.h:29
#define _HEAPBADNODE
Definition: malloc.h:31
HANDLE __acrt_heap
Definition: heap_handle.cpp:15
BOOL WINAPI HeapValidate(HANDLE hHeap, DWORD dwFlags, LPCVOID lpMem)
Definition: heapmem.c:156