共用方式為


AfxEnableMemoryTracking

偵錯版本的 MFC 通常會啟用診斷追蹤的記憶體。

BOOL AfxEnableMemoryTracking(
   BOOL bTrack 
); 

參數

  • bTrack
    此值設定為 ,則為 TRUE 開啟的記錄追蹤 ; 錯誤予以關閉。

傳回值

啟用追蹤的旗標的先前的設定。

備註

若要停用追蹤您所知正確地配置區塊的程式碼的區段] 子功能表中使用此函數。

如需有關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;
}

需求

標頭: afx.h

請參閱

概念

MFC 巨集和全域變數