- indexing
- title: "Visual Eiffel Library.", "The WAPI_MSG class contains message information", "from a thread%'s message queue."
- project: "Visual Eiffel Win32 Library"
- revision: "$Revision: 1.1 $"
- copyright: "Copyright (C) 1996-2005 Object Tools Group"
- license: "http://visual-eiffel.com/license"
- cluster: winlib
class WAPI_MSG
- inherit
-
WAPI_GET_POINTER
- end
- feature -- Class data
-
hWnd: INTEGER
-
message: INTEGER
-
wParam: INTEGER
-
lParam: INTEGER
-
time: INTEGER
-
pt: expanded WAPI_POINT
- feature -- Access
-
ptr: POINTER
- feature -- Change
-
set_hWnd (i: INTEGER)
-
- ensure
-
correct_set:
hwnd = i
-
set_message (i: INTEGER)
-
- ensure
-
correct_set:
message = i
-
set_wParam (i: INTEGER)
-
- ensure
-
correct_set:
wparam = i
-
set_lParam (i: INTEGER)
-
- ensure
-
correct_set:
lparam = i
-
set_time (i: INTEGER)
-
- ensure
-
correct_set:
time = i
-
set_pt (pnt: WAPI_POINT)
-
- ensure
-
correct_set:
standard_equal (pt, pnt)
end -- class WAPI_MSG