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;
}
需求
標頭: afx.h