INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "Abstract notions of a Windows data structure. ", "WEL: library of reusable components for Eiffel. ", "Based on WEL library for ISE Eiffel, used with permission. "
project: "Windows Eiffel Library"
copyright: "(c) 1986-1997 Interactive Software Engineering Inc. ", "Modifications and extensions: ", "(c) 1997 Object Tools ", "All rights reserved. Duplication and distribution prohibited", "May be used only with Visual Eiffel under terms of user ", "license "
cluster: wel
deferred class WEL_STRUCTURE
inherit

WEL_ANY
end
feature -- Basic operations

memory_copy (source_pointer: POINTER; length: INTEGER)
-- Copy `length' bytes from `source_pointer' to `item'.
require
length_small_enough: length <= structure_size
length_large_enough: length > 0
feature -- Measurement

structure_size: INTEGER
-- Size to allocate (in bytes)
ensure
positive_result: Result > 0
invariant

exists: exists
end -- class WEL_STRUCTURE

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES