aboutsummaryrefslogtreecommitdiff
path: root/core/sys
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2024-11-15 21:17:35 +0100
committerGitHub <noreply@github.com>2024-11-15 21:17:35 +0100
commita3442b22da2cc4adbd52327d99d47e79c7e3a7bb (patch)
tree40bdaa479d3d1f9dd8e8a52194f4b112e25eaf28 /core/sys
parent2af014b9608f7dd992ffda0fcdb2c2b790637aff (diff)
parent5486327e0bd1a8f57bd8f41cb20987147e6e14fb (diff)
Merge pull request #4488 from NicknEma/win32-struct-fix
Fix integer type
Diffstat (limited to 'core/sys')
-rw-r--r--core/sys/windows/ux_theme.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/sys/windows/ux_theme.odin b/core/sys/windows/ux_theme.odin
index 527abd62f..392cf1e18 100644
--- a/core/sys/windows/ux_theme.odin
+++ b/core/sys/windows/ux_theme.odin
@@ -3,7 +3,7 @@ package sys_windows
foreign import uxtheme "system:UxTheme.lib"
-MARGINS :: distinct [4]int
+MARGINS :: distinct [4]i32
PMARGINS :: ^MARGINS
@(default_calling_convention="system")