Home | History | Annotate | Download | only in menu

Lines Matching refs:Window

1 /* -*-C++-*-	$NetBSD: window.cpp,v 1.2 2008/04/28 20:23:20 martin Exp $	*/
33 #include <menu/window.h>
37 Window::_wnd_proc(HWND h, UINT msg, WPARAM param, LPARAM lparam)
39 Window *w;
45 w = reinterpret_cast <Window *>(s->lpCreateParams);
51 w = reinterpret_cast <Window *>(GetWindowLong(h, 0));
55 // dispatch window procedure.
64 Window::_dlg_proc(HWND h, UINT msg, WPARAM param, LPARAM lparam)
66 Window *w;
70 w = reinterpret_cast <Window *>(lparam);
72 w = reinterpret_cast <Window *>(GetWindowLong(h, DWL_USER));
81 Window::proc(HWND w, UINT msg, WPARAM wparam, LPARAM lparam)