aboutsummaryrefslogtreecommitdiff
path: root/core/sys
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2022-09-01 16:26:51 +0100
committerGitHub <noreply@github.com>2022-09-01 16:26:51 +0100
commit4858e16a11aef6d55c9f021da9f3476201577df2 (patch)
tree2e07fc77375824ddf0a55d720123efaef1b55b93 /core/sys
parent902a6db0e1e5304e687dbf71ef2a099ed7c52cd7 (diff)
parent96e033b22caff96924d2e0d72bd3d7166ec7ad02 (diff)
Merge pull request #1976 from matias-eduardo/patch-2
Add Extended Window Styles (WS_EX)
Diffstat (limited to 'core/sys')
-rw-r--r--core/sys/windows/types.odin29
1 files changed, 29 insertions, 0 deletions
diff --git a/core/sys/windows/types.odin b/core/sys/windows/types.odin
index 0a03baaa2..7fbc6fea1 100644
--- a/core/sys/windows/types.odin
+++ b/core/sys/windows/types.odin
@@ -978,6 +978,35 @@ WS_TILEDWINDOW : UINT : WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU | WS_THICKF
WS_VISIBLE : UINT : 0x1000_0000
WS_VSCROLL : UINT : 0x0020_0000
+WS_EX_ACCEPTFILES : UINT : 0x0000_0010
+WS_EX_APPWINDOW : UINT : 0x0004_0000
+WS_EX_CLIENTEDGE : UINT : 0x0000_0200
+WS_EX_COMPOSITED : UINT : 0x0200_0000
+WS_EX_CONTEXTHELP : UINT : 0x0000_0400
+WS_EX_CONTROLPARENT : UINT : 0x0001_0000
+WS_EX_DLGMODALFRAME : UINT : 0x0000_0001
+WS_EX_DRAGDETECT : UINT : 0x0000_0002 // undocumented
+WS_EX_LAYERED : UINT : 0x0008_0000
+WS_EX_LAYOUTRTL : UINT : 0x0040_0000
+WS_EX_LEFT : UINT : 0x0000_0000
+WS_EX_LEFTSCROLLBAR : UINT : 0x0000_4000
+WS_EX_LTRREADING : UINT : 0x0000_0000
+WS_EX_MDICHILD : UINT : 0x0000_0040
+WS_EX_NOACTIVATE : UINT : 0x0800_0000
+WS_EX_NOINHERITLAYOUT : UINT : 0x0010_0000
+WS_EX_NOPARENTNOTIFY : UINT : 0x0000_0004
+WS_EX_NOREDIRECTIONBITMAP : UINT : 0x0020_0000
+WS_EX_OVERLAPPEDWINDOW : UINT : WS_EX_WINDOWEDGE | WS_EX_CLIENTEDGE
+WS_EX_PALETTEWINDOW : UINT : WS_EX_WINDOWEDGE | WS_EX_TOOLWINDOW | WS_EX_TOPMOST
+WS_EX_RIGHT : UINT : 0x0000_1000
+WS_EX_RIGHTSCROLLBAR : UINT : 0x0000_0000
+WS_EX_RTLREADING : UINT : 0x0000_2000
+WS_EX_STATICEDGE : UINT : 0x0002_0000
+WS_EX_TOOLWINDOW : UINT : 0x0000_0080
+WS_EX_TOPMOST : UINT : 0x0000_0008
+WS_EX_TRANSPARENT : UINT : 0x0000_0020
+WS_EX_WINDOWEDGE : UINT : 0x0000_0100
+
PBS_SMOOTH :: 0x01
PBS_VERTICAL :: 0x04