aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2025-02-09 15:26:07 +0100
committerGitHub <noreply@github.com>2025-02-09 15:26:07 +0100
commit40cf9a33e98f6815f0fdb09b2e5dab9feef72db8 (patch)
tree283f04b0173af6beddc46f3f92949b8b88c69bfe
parent963663b8e1dd84b4ed82e6db2aca8052f6c861e0 (diff)
parenta14a4d9de78743183f815836adba881d2b1806e6 (diff)
Merge pull request #4817 from bplu4t2f/master
Add more win32 STARTF_* constants
-rw-r--r--core/sys/windows/types.odin19
1 files changed, 18 insertions, 1 deletions
diff --git a/core/sys/windows/types.odin b/core/sys/windows/types.odin
index 8069659c9..888150708 100644
--- a/core/sys/windows/types.odin
+++ b/core/sys/windows/types.odin
@@ -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