Lines Matching defs:wnd
48 LRESULT CALLBACK WndProc(HWND wnd, UINT msg, WPARAM wParam, LPARAM lParam);
66 HWND wnd;
106 wnd = CreateWindow(lpszAppName, "The Hello World",
112 ShowWindow(wnd, nShowCmd);
113 UpdateWindow(wnd);
134 LRESULT CALLBACK WndProc(HWND wnd, UINT msg, WPARAM wParam, LPARAM lParam)
143 hdc = BeginPaint(wnd, &ps);
145 GetClientRect(wnd, &rect);
150 EndPaint(wnd, &ps);
176 return DefWindowProc(wnd, msg, wParam, lParam);