AfxEnableMemoryTracking

内存诊断跟踪在 MFC 的调试版本通常启用。

BOOL AfxEnableMemoryTracking(
   BOOL bTrack 
); 

参数

  • bTrack
    设置为 TRUE 的该值打开内存跟踪; FALSE 将其关闭。

返回值

先前的设置跟踪启用标志。

备注

使用此功能禁用跟踪在您知道分配正确地阻止代码的一部分。

有关 AfxEnableMemoryTracking的更多信息,请参见 调试 MFC 应用程序

备注

此函数在 MFC 的调试版本只工作。

示例

BOOL CMyWinApp::InitInstance()
{
#ifdef _DEBUG
   // Disable tracking of memory for the scope of the InitInstance()
   AfxEnableMemoryTracking(FALSE);
#endif  // _DEBUG

   // ...

#ifdef _DEBUG
   // Re-enable tracking of memory
   AfxEnableMemoryTracking(TRUE);
#endif  // _DEBUG

   return TRUE;
}

要求

Header: afx.h

请参见

概念

MFC宏和Globals