AfxEnableMemoryTracking
Diagnostic memory tracking is normally enabled in the Debug version of MFC.
BOOL AfxEnableMemoryTracking(
BOOL bTrack
);
Параметры
- bTrack
Setting this value to TRUE turns on memory tracking; FALSE turns it off.
Возвращаемое значение
The previous setting of the tracking-enable flag.
Заметки
Use this function to disable tracking on sections of your code that you know are allocating blocks correctly.
For more information on AfxEnableMemoryTracking, see Debugging MFC Applications.
![]() |
---|
This function works only in the Debug version of 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