카테고리 없음

황당한 leak - GetDC()의 메모리 누수 막기

췌엠 2014. 2. 11. 21:26
GetDC()의 메모리 누수 막기 2006-12-27 00:50
간단한 예를 들면.....CDC tmpDC;tmpDC.CreateCompatibleDC(GetDC());CBitmap tmpBitmap;tmpBitmap.CreateCompatibleBitmap(GetDC(),100,100);.....
Posted in 윈도우즈 . Tags: DC, leak, memoryleak, 메모리누수


모달리스 다이얼로그 와 메모리 리크(Leaks) 2006-12-27 00:46
Cdialog 즉 다이얼로그 창은. 간단하게 메시지를 주고 받을수 있는 가장 간단한 인터페이스부터미디어 플레이어 같은 매우 복작합 인터페이스까지 쉽게 구현할수 있는 보편적인 인터페이스 입니다.저두 처음에는 다이얼로그 모드에서 작업...
Posted in 윈도우즈 . Tags: leak, memoryleak, 메모리누수


간단히 WIN32에서 MFC의 메모리 누수 체크하는 방법 2006-12-27 00:30
1. main.cpp든 어디든 소스파일의 가장 윗줄에#define CRTDBG_MAP_ALLOC#include <stdlib.h>#include <crtdbg.h>위 세줄을 붙여넣기 합니다.2. 모든 에플리케...
Posted in 윈도우즈 . Tags: leak, memoryleak, 메모리누수