INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "Visual Eiffel Library.", "Win32 API: The `STARTUPINFO%' structure is used with the `CreateProcess%' function to specify main window properties if a new window is created for the new process. For graphical user interface (GUI) processes, this information affects the first window created by the `CreateWindow%' function and shown by the `ShowWindow%' function. For console processes, this information affects the console window if a new console is created for the process. A process can use the `GetStartupInfo%' function to retrieve the `STARTUPINFO%' structure specified when the process was created."
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_STARTUPINFO
creation

make
feature -- Creation

make
feature -- Class data

cb: INTEGER

lpReserved: POINTER

lpDesktop: POINTER

lpTitle: POINTER

dwX: INTEGER

dwY: INTEGER

dwXSize: INTEGER

dwYSize: INTEGER

dwXCountChars: INTEGER

dwYCountChars: INTEGER

dwFillAttribute: BIT 32

dwFlags: BIT 32

wShowWindowL: BIT 8

wShowWindowH: BIT 8

cbReserved2L: BIT 8

cbReserved2H: BIT 8

lpReserved2: POINTER

hStdInput: INTEGER

hStdOutput: INTEGER

hStdError: INTEGER

wShowWindow: INTEGER
feature -- Access

ptr: POINTER
feature -- Operations

set_cb (cb_: INTEGER)

set_lpReserved (lpreserved_: POINTER)

set_lpDesktop (lpdesktop_: POINTER)

set_lpTitle (lptitle_: POINTER)

set_dwX (dwx_: INTEGER)

set_dwY (dwy_: INTEGER)

set_dwXSize (dwxsize_: INTEGER)

set_dwYSize (dwysize_: INTEGER)

set_dwXCountChars (dwxcountchars_: INTEGER)

set_dwYCountChars (dwycountchars_: INTEGER)

set_dwFillAttribute (dwfillattribute_: BIT 32)

set_dwFlags (dwflags_: BIT 32)

set_wShowWindow (wshowwindow_: INTEGER)

set_hStdInput (hstdinput_: INTEGER)

set_hStdOutput (hstdoutput_: INTEGER)

set_hStdError (hstderror_: INTEGER)
end -- class WAPI_STARTUPINFO

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES