aboutsummaryrefslogtreecommitdiff
path: root/core/sys/windows/ux_theme.odin
blob: 679d9998f9885e840f230269e4181ece727d127d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#+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 ---
}