INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "Visual Eiffel Library.", "Win32 API: Console and Standard Handles Functions"
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
expanded class WAPI_CONSOLE_FUNCTIONS
inherit

WAPI_ERROR_SERVER
end
feature -- Access: console

AllocConsole: INTEGER
-- BOOL
-- The AllocConsole function allocates a new console for the calling process.
-- If the function succeeds, the return value is TRUE.
-- If the function fails, the return value is FALSE.
-- To get extended error information, call GetLastError.
feature -- Access: standard handles

GetStdHandle (nstdhandle: INTEGER): INTEGER
-- HANDLE
-- The GetStdHandle function returns a handle for the standard input,
-- standard output, or standard error device.

SetStdHandle (nstdhandle: INTEGER; hhandle: INTEGER): INTEGER
-- BOOL
-- Set the handle for the standard input, standard output or
-- standard error device. The specified handle can be used by
-- subsequent calls to the GetStdHandle function to refer to
-- the input, output, or error device.
end -- class WAPI_CONSOLE_FUNCTIONS

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES