diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2026-01-02 10:02:23 +0000 |
|---|---|---|
| committer | gingerBill <gingerBill@users.noreply.github.com> | 2026-01-02 10:02:23 +0000 |
| commit | 111ed21e7e5f7ca4cb4358073ab060d138fc782f (patch) | |
| tree | 43710129e3d45cb838802ca4b67f12cb8c24ee9f /core/sys/windows/user32.odin | |
| parent | 747ecc69115d35ab99be3b27e27f751288f12a77 (diff) | |
Change usage of `i32` to `c_int` where appropriate
Diffstat (limited to 'core/sys/windows/user32.odin')
| -rw-r--r-- | core/sys/windows/user32.odin | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/core/sys/windows/user32.odin b/core/sys/windows/user32.odin index cd73f80e6..287ed59e7 100644 --- a/core/sys/windows/user32.odin +++ b/core/sys/windows/user32.odin @@ -859,21 +859,21 @@ FKF_CLICKON :: 0x40 NONCLIENTMETRICSW :: struct { cbSize: UINT, - iBorderWidth: i32, - iScrollWidth: i32, - iScrollHeight: i32, - iCaptionWidth: i32, - iCaptionHeight: i32, + iBorderWidth: c_int, + iScrollWidth: c_int, + iScrollHeight: c_int, + iCaptionWidth: c_int, + iCaptionHeight: c_int, lfCaptionFont: LOGFONTW, - iSmCaptionWidth: i32, - iSmCaptionHeight: i32, + iSmCaptionWidth: c_int, + iSmCaptionHeight: c_int, lfSmCaptionFont: LOGFONTW, - iMenuWidth: i32, - iMenuHeight: i32, + iMenuWidth: c_int, + iMenuHeight: c_int, lfMenuFont: LOGFONTW, lfStatusFont: LOGFONTW, lfMessageFont: LOGFONTW, - iPaddedBorderWidth: i32, + iPaddedBorderWidth: c_int, } LPNONCLIENTMETRICSW :: ^NONCLIENTMETRICSW |