- indexing
- title: "Visual Eiffel Library.", "The WAPI_CLIENTCREATESTRUCT class contains information about", "the menu and first multiple document interface (MDI)", "child window of an MDI client window."
- 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_CLIENTCREATESTRUCT
- inherit
-
WAPI_GET_POINTER
- end
- creation
- make
- feature -- Class data
-
hWindowMenu: INTEGER
-
idFirstChild: INTEGER
- feature -- Creation
-
make (hwindowmenup, idfirstchildp: INTEGER)
-
- ensure
-
hwindowmenu_set:
hwindowmenu = hwindowmenup
-
idfirstchild_set:
idfirstchild = idfirstchildp
- feature -- Access
-
ptr: POINTER
- feature -- Change
-
set_hWindowMenu (i: INTEGER)
-
- ensure
-
correct_set:
hwindowmenu = i
-
set_idFirstChild (i: INTEGER)
-
- ensure
-
correct_set:
idfirstchild = i
end -- class WAPI_CLIENTCREATESTRUCT