sqwarmed/sdk_src/public/crtmemdebug.h

34 lines
624 B
C
Raw Normal View History

2024-08-29 19:18:30 -04: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