STARTUPINFOEX structure
Specifies the window station, desktop, standard handles, and attributes for a new process. It is used with the CreateProcess and CreateProcessAsUser functions.
Syntax
typedef struct _STARTUPINFOEX { STARTUPINFO StartupInfo; PPROC_THREAD_ATTRIBUTE_LIST lpAttributeList; } STARTUPINFOEX, *LPSTARTUPINFOEX;
Members
- StartupInfo
-
A STARTUPINFO structure.
- lpAttributeList
-
An attribute list. This list is created by the InitializeProcThreadAttributeList function.
Remarks
Be sure to set the cb member of the STARTUPINFO structure to sizeof(STARTUPINFOEX).
Requirements
|
Minimum supported client |
Windows Vista [desktop apps only] |
|---|---|
|
Minimum supported server |
Windows Server 2008 [desktop apps only] |
|
Header |
|
|
Unicode and ANSI names |
STARTUPINFOEXW (Unicode) and STARTUPINFOEXA (ANSI) |
See also