Home | History | Annotate | Download | only in win

Lines Matching refs:hWnd

23 LRESULT CALLBACK    WndProc(HWND, UINT, WPARAM, LPARAM);
24 INT_PTR CALLBACK About(HWND, UINT, WPARAM, LPARAM);
96 extern SkOSWindow* create_sk_window(void* hwnd, int argc, char** argv);
130 HWND hWnd = CreateWindow(szWindowClass, szTitle, WS_OVERLAPPEDWINDOW,
133 if (!hWnd)
151 gSkWind = create_sk_window(hWnd, argc, argv);
155 ShowWindow(hWnd, nCmdShow);
156 UpdateWindow(hWnd);
162 // FUNCTION: WndProc(HWND, UINT, WPARAM, LPARAM)
171 LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
175 return DefWindowProc(hWnd, message, wParam, lParam);
180 if (gSkWind->wndProc(hWnd, message, wParam, lParam)) {
183 return DefWindowProc(hWnd, message, wParam, lParam);
190 INT_PTR CALLBACK About(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)