void CMyEdit::(UINT nChar, UINT nRepCnt, UINT nFlags) 
{
        // TODO: Add your message handler code here and/or call default
        if (nChar == VK_RETURN)
        {
                char temp[1024];
                GetWindowText(temp,1024);
                GetParent()->SendMessage(WM_MYSENDMESSAGE,(WPARAM)temp);
                SetWindowText(\"\");
        }
        CEdit::(nChar, nRepCnt, nFlags);
}


지금 이거 엔터치면 Edit에서 메세지 받아서 전송하게 하는소스 일부거든?

저기서 SendMessage해줄때 temp를 보내는데 저기서 WPARAM이 된 

temp가 단순히 char배열의 주소인지 아니면 temp[1024]이걸 전체크기로 다잡아서 뭉태기로 보내는지 모르겠어

도와줘 횽들 ㅠ