Source code of Windows XP (NT5)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
//+-------------------------------------------------------------------------
//
// Microsoft Windows
//
// Copyright (C) Microsoft Corporation, 1997 - 1997
//
// File: leakchk.h
//
//--------------------------------------------------------------------------
//
// leakchk.h: simple macros to aid in checking for memory leaks in base classes
//
#ifndef _LEAKCHK_H_
#define _LEAKCHK_H_
#ifdef _DEBUG
#define LEAK_VAR_DECL static int _cNew;
#define LEAK_VAR_UPD(i) { _cNew += i; }
#define LEAK_VAR_DEF(CLS) int CLS::_cNew = 0;
#define LEAK_VAR_ACCESSOR static int CNew () { return _cNew; }
#else
#define LEAK_VAR_DECL
#define LEAK_VAR_UPD(i)
#define LEAK_VAR_DEF(CLS)
#define LEAK_VAR_ACCESSOR static int CNew () { return -1; }
#endif
#endif // _LEAKCHK_H_
|