- indexing
- title: "Visual Eiffel Library.", "The WAPI_OVERLAPPED class contains information used in", "asynchronous input and output (I/O)."
- 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_OVERLAPPED
- inherit
-
WAPI_GET_POINTER
- end
- feature -- Class data
-
Internal: INTEGER
-
InternalHigh: INTEGER
-
Offset: INTEGER
-
OffsetHigh: INTEGER
-
hEvent: INTEGER
- feature -- Access
-
ptr: POINTER
- feature -- Change
-
set_Internal (i: INTEGER)
-
- ensure
-
correct_set:
internal = i
-
set_InternalHigh (i: INTEGER)
-
- ensure
-
correct_set:
internalhigh = i
-
set_Offset (i: INTEGER)
-
- ensure
-
correct_set:
offset = i
-
set_OffsetHigh (i: INTEGER)
-
- ensure
-
correct_set:
offsethigh = i
-
set_hEvent (i: INTEGER)
-
- ensure
-
correct_set:
hevent = i
end -- class WAPI_OVERLAPPED