diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-03-02 13:50:00 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-02 13:50:00 +0100 |
| commit | 7841d0b14bf37caa6140b57aaa2a5258ba50cd62 (patch) | |
| tree | e3d87422795482981f98426c9442ccbf6334af6c /core/sys | |
| parent | dc1d49f353a923de2e7abe57316c3f01e64e93a9 (diff) | |
| parent | 3963ad1cc1103190a6f45acd8b371ccd19a0f903 (diff) | |
Merge pull request #4884 from Dzentsetsu/master
Add DWM_WINDOW_CORNER_PREFERENCE enum for window corner preferences
Diffstat (limited to 'core/sys')
| -rw-r--r-- | core/sys/windows/dwmapi.odin | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/core/sys/windows/dwmapi.odin b/core/sys/windows/dwmapi.odin index 11a46f53a..11e91c704 100644 --- a/core/sys/windows/dwmapi.odin +++ b/core/sys/windows/dwmapi.odin @@ -38,6 +38,13 @@ DWMNCRENDERINGPOLICY :: enum { DWMNCRP_LAST, } +DWM_WINDOW_CORNER_PREFERENCE :: enum c_int { + DEFAULT, + DONOTROUND, + ROUND, + ROUNDSMALL, +} + @(default_calling_convention="system") foreign dwmapi { DwmFlush :: proc() -> HRESULT --- |