mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-29 17:34:34 +00:00
14 lines
322 B
Odin
14 lines
322 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 ---
|
|
SetWindowTheme :: proc(hWnd: HWND, pszSubAppName, pszSubIdList: LPCWSTR) -> HRESULT ---
|
|
}
|