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.
34 lines
578 B
34 lines
578 B
5 years ago
|
//========= Copyright 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
|