API WM_CHAR

By | 2013년 12월 30일

WM_CHAR

    static char str[256];
	int len;
    
    case WM_CHAR:
		len = strlen(str);
		str[len] = (TCHAR)wParam;
		str[len + 1] = 0;
		InvalidateRect(hWnd, NULL, FALSE);
        break;
	case WM_PAINT:
		hdc = BeginPaint(hWnd, &ps);
		// TODO: 여기에 그리기 코드를 추가합니다.
		TextOutA(hdc, 10, 10, str, strlen(str));
		break;

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다