mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-16 02:42:22 -07:00
5486327e0b
Change int to i32 so it is the correct size
13 lines
230 B
Odin
13 lines
230 B
Odin
#+build windows
|
|
package sys_windows
|
|
|
|
foreign import uxtheme "system:UxTheme.lib"
|
|
|
|
MARGINS :: distinct [4]i32
|
|
PMARGINS :: ^MARGINS
|
|
|
|
@(default_calling_convention="system")
|
|
foreign uxtheme {
|
|
IsThemeActive :: proc() -> BOOL ---
|
|
}
|