csgo-2018-source/public/crtmemdebug.h

34 lines
591 B
C
Raw Normal View History

2021-07-25 12:11:47 +08:00
//========= Copyright <20> 1996-2005, Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $Workfile: $
// $Date: $
//
//-----------------------------------------------------------------------------
// $Log: $
//
// $NoKeywords: $
//=============================================================================//
#ifndef CRTMEMDEBUG_H
#define CRTMEMDEBUG_H
#pragma once
#ifdef USECRTMEMDEBUG
#include <crtdbg.h>
#define MEMCHECK CheckHeap()
void CheckHeap( void );
#else
#define MEMCHECK
#endif
void InitCRTMemDebug( void );
#endif // CRTMEMDEBUG_H