INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "Execute commands. ", "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
class WEL_COMMAND_EXEC
creation

make
feature -- Initialization

make (a_command: WEL_COMMAND; an_argument: ANY)
-- Set `command' and `argument' with
-- `a_command' and `an_argument'.
require
a_command_not_void: a_command /= void
ensure
command_set: command = a_command
argument_set: argument = an_argument
feature -- Access

command: WEL_COMMAND

argument: ANY
feature -- Execution

execute (window: WEL_WINDOW; message, wparam, lparam: INTEGER)
-- Create message information corresponding to `message'
-- and execute `command'.
require
window_not_void: window /= void
positive_message: message >= 0
end -- class WEL_COMMAND_EXEC

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES