mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-03 11:42:28 +00:00
Merge pull request #4817 from bplu4t2f/master
Add more win32 STARTF_* constants
This commit is contained in:
@@ -2204,7 +2204,24 @@ DUPLICATE_SAME_ACCESS: DWORD : 0x00000002
|
||||
CONDITION_VARIABLE_INIT :: CONDITION_VARIABLE{}
|
||||
SRWLOCK_INIT :: SRWLOCK{}
|
||||
|
||||
STARTF_USESTDHANDLES: DWORD : 0x00000100
|
||||
// Flags in STARTUPINFOW.dwFlags.
|
||||
STARTF_USESHOWWINDOW: DWORD : 0x00000001
|
||||
STARTF_USESIZE: DWORD : 0x00000002
|
||||
STARTF_USEPOSITION: DWORD : 0x00000004
|
||||
STARTF_USECOUNTCHARS: DWORD : 0x00000008
|
||||
STARTF_USEFILLATTRIBUTE: DWORD : 0x00000010
|
||||
STARTF_RUNFULLSCREEN: DWORD : 0x00000020 // ignored for non-x86 platforms
|
||||
STARTF_FORCEONFEEDBACK: DWORD : 0x00000040
|
||||
STARTF_FORCEOFFFEEDBACK: DWORD : 0x00000080
|
||||
STARTF_USESTDHANDLES: DWORD : 0x00000100
|
||||
// WINVER >= 0x400
|
||||
STARTF_USEHOTKEY: DWORD : 0x00000200
|
||||
STARTF_TITLEISLINKNAME: DWORD : 0x00000800
|
||||
STARTF_TITLEISAPPID: DWORD : 0x00001000
|
||||
STARTF_PREVENTPINNING: DWORD : 0x00002000
|
||||
// WINVER >= 0x600
|
||||
STARTF_UNTRUSTEDSOURCE: DWORD : 0x00008000
|
||||
|
||||
|
||||
VOLUME_NAME_DOS: DWORD : 0x0
|
||||
|
||||
|
||||
Reference in New Issue
Block a user