ReleaseDC 위치가 중요한가?
스프라이트 툴 제작 중 ZoomDlg 에서 이상하게 메모리 누수가 발생 하였다.. 대충 소스는 다음과 같이 작성을 하였었다.. { CClientDC dc(this); CDC* pDC = CWnd::GetDC(); ... // dc를 얻어와 Dialog 창에 뿌리는 작업 들.. ... ... ... ... ... ... ... dc.StretchBlt(0, 0, drt.right, drt.bottom, pDC, spt.x, spt.y, sWidth, sHeight, SRCCOPY); dc.MoveTo(drt.right/2, drt.top); dc.LineTo(drt.right/2, drt.bottom); dc.MoveTo(drt.left, drt.bottom/2); dc.LineTo(drt.right, d..
2008. 6. 20.