ux_theme.odin 232 B

123456789101112
  1. // +build windows
  2. package sys_windows
  3. foreign import uxtheme "system:UxTheme.lib"
  4. MARGINS :: distinct [4]int
  5. PMARGINS :: ^MARGINS
  6. @(default_calling_convention="system")
  7. foreign uxtheme {
  8. IsThemeActive :: proc() -> BOOL ---
  9. }