diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-11-07 13:04:39 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-07 13:04:39 +0000 |
| commit | 1fb60c43481506da4f47f75ca4e0de1c70446cf0 (patch) | |
| tree | 1e56ecf006c6f7ce77d2ad5cf9ae30a0f24f8d30 | |
| parent | 40437b52ebca62b787337e1ddb684cbb92ff5b97 (diff) | |
| parent | fbbdbc37fa0918f493638d07cfdf37e53447b64e (diff) | |
Merge pull request #5885 from mailgerigk/master
Add missing SetLayeredWindowAttributes constants
| -rw-r--r-- | core/sys/windows/user32.odin | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/sys/windows/user32.odin b/core/sys/windows/user32.odin index 49ebb49cb..76826f80b 100644 --- a/core/sys/windows/user32.odin +++ b/core/sys/windows/user32.odin @@ -871,3 +871,6 @@ NONCLIENTMETRICSW :: struct { iPaddedBorderWidth: i32, } LPNONCLIENTMETRICSW :: ^NONCLIENTMETRICSW + +LWA_COLORKEY :: 0x1 +LWA_ALPHA :: 0x2 |