mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-29 17:34:34 +00:00
13 lines
233 B
Odin
13 lines
233 B
Odin
// +build windows
|
|
package sys_windows
|
|
|
|
foreign import uxtheme "system:UxTheme.lib"
|
|
|
|
MARGINS :: distinct [4]int
|
|
PMARGINS :: ^MARGINS
|
|
|
|
@(default_calling_convention="stdcall")
|
|
foreign uxtheme {
|
|
IsThemeActive :: proc() -> BOOL ---
|
|
}
|