mirror of
https://github.com/odin-lang/Odin.git
synced 2026-04-18 20:40:28 +00:00
sys/windows: fix build issues
This commit is contained in:
@@ -69,6 +69,6 @@ foreign gdi32 {
|
||||
|
||||
// Windows colors are packed as ABGR
|
||||
RGB :: #force_inline proc "contextless" (r, g, b: u8) -> COLORREF {
|
||||
res: [4]u8 = {0, rgb.b, rgb.g, rgb.r}
|
||||
res: [4]u8 = {0, b, g, r}
|
||||
return transmute(COLORREF)res
|
||||
}
|
||||
|
||||
@@ -55,7 +55,7 @@ UINT_PTR :: uintptr
|
||||
ULONG :: c_ulong
|
||||
UCHAR :: BYTE
|
||||
NTSTATUS :: c.long
|
||||
COLORREF :: DWORD
|
||||
COLORREF :: DWORD // Windows colors are packed as ABGR
|
||||
LPCOLORREF :: ^COLORREF
|
||||
LPARAM :: LONG_PTR
|
||||
WPARAM :: UINT_PTR
|
||||
|
||||
Reference in New Issue
Block a user