AfxEnableMemoryTracking
진단 메모리 추적은 MFC의 디버그 버전에서 일반적으로 사용 됩니다.
BOOL AfxEnableMemoryTracking(
BOOL bTrack
);
매개 변수
- bTrack
이 값을 TRUE 로 설정하는 것은 메모리를 추적합니다. FALSE 는 기능을 해제합니다.
반환 값
이전 사용 추적 플래그의 설정입니다.
설명
이 함수를 사용하여 올바르게 할당되는 코드의 섹션에서 사용하지 않는 추적합니다.
AfxEnableMemoryTracking 에 대한 자세한 정보는 Debugging MFC Applications 를 참조하십시오.
참고
이 함수는 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