...640, 30, hWnd, (HMENU)ID_START_RECOG, GetModuleHandle(NULL), NULL);
//LaunchRecognition(hWnd);
}
break;
case WM_RECOEVENT:
{
WCHAR *pwszText = HandleEvent();
SetDlgItemText(hWnd, IDC_EDIT1, (char*)pwszText);
SetDlgItemText(hWnd, IDC_EDIT1, "\r\n");
}
break;
...