모니터 해상도 구하기 GetWindowRect(), GetDesktopWindow() CRect rc; ::GetWindowRect(GetDesktopWindow()->m_hWnd, &rc); int nWidth = rc.right - rc.left; int nHeight = rc.bottom - rc.top; GetSystemMetrics() int nWidth = GetSystemMetrics(SM_CXSCREEN); int nHeight = GetSystemMetrics(SM_CYSCREEN); GetDeviceCaps() HDC hDC = GetDC(); // 가져오는 HDC에 따라 듀얼모니터의 해상도도 가져올 수 있음 int nWidth = GetDeviceCaps(hDC, HORZRES); i..