31 Mar
2009
31 Mar
'09
10:25 a.m.
On Mo, 2009-03-30 at 18:17 +0500, Vladimir Pankratov wrote:
+ return DefWindowProcW (hWnd, msg, wParam, lParam);
+ WCHAR className[] = {'T','e','s','t','H','o','t','K','e','y',0}; + WCHAR winName[] = {'H','o','t','K','e','y','T','e','s','t',0}; + ATOM classatom; + WNDCLASSW cls;
+ cls.hIcon = LoadIconW (0, (LPWSTR)IDI_APPLICATION); + cls.hCursor = LoadCursorW (0, (LPWSTR)IDC_ARROW); ....
Next to the other comments, beware that UNICODE Functions are missing or not implemented in win9x. Please use ANSI Functions in the tests. -- By by ... Detlef