windows-nt/Source/XPSP1/NT/admin/netui/common/h/heapsig.hxx
2020-09-26 16:20:57 +08:00

12 lines
337 B
C++

#ifdef HEAPSIG
void *operator new(unsigned sz, char * szFile, unsigned short usLineNo);
// void *operator new(size_t sz, char * szFile, unsigned short usLineNo);
void heapstat( int status );
void uiHeapDump(void);
#define NEW new (__FILE__, __LINE__)
#define UIHEAPWALK atexit(uiHeapDump)
#else
#define NEW new
#define UIHEAPWALK
#endif