INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "Dynamic-link library containing one or more functions ", "that are compiled, linked, and stored separately from the ", "processes using them. ", "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-2001 Object Tools ", "All rights reserved. Duplication and distribution prohibited", "May be used only with Visual Eiffel under terms of user ", "license "
cluster: wel
class WEL_DLL
inherit

WEL_ANY
end
creation

make
feature {NONE}-- Initialization

make (dll_name: STRING)
-- Load the DLL `dll_name'
require
dll_name_not_void: dll_name /= void
dll_name_not_empty: not dll_name.is_empty
feature -- Access

name: STRING
-- DLL name (including the path)
require
exists: exists
ensure
result_not_void: Result /= void
result_not_empty: not Result.is_empty
end -- class WEL_DLL

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES