그래픽 출력, 메세지 박스
Programming/API
2015. 6. 8. 15:32
그래픽 출력 COLORREF SetPixel(hdc, nXPos, nYPos, clrref) - 화면에 점을 출력 - nXPos, nYPos좌표에 clrref색상으로 점을 찍는다. DWORD MoveToEx(hdc, x, y, lpPoint) BOOL LineTo(hdc, xEnd, yEnd) - 선을 그을 때는 이 두 함수를 같이 써야한다. BOOL Rectangle(hdc, nLeftRect, nTopRect, nRightRect, nBottomRect) - 사각형 그리기 BOOL Elipse(hdc, nLeftRect, nTopRect, nRightRect,nBottomRect) - 원 그리기 메시지 박스 int MessageBox(HWND hWnd, LPCTSTR lpText, LPCTSTR lp..