mirror of
https://github.com/odin-lang/Odin.git
synced 2026-02-13 06:43:35 +00:00
19 lines
408 B
Odin
19 lines
408 B
Odin
#+build windows
|
|
package sys_windows
|
|
|
|
foreign import uxtheme "system:UxTheme.lib"
|
|
|
|
MARGINS :: struct {
|
|
cxLeftWidth: c_int,
|
|
cxRightWidth: c_int,
|
|
cyTopHeight: c_int,
|
|
cyBottomHeight: c_int,
|
|
}
|
|
PMARGINS :: ^MARGINS
|
|
|
|
@(default_calling_convention="system")
|
|
foreign uxtheme {
|
|
IsThemeActive :: proc() -> BOOL ---
|
|
SetWindowTheme :: proc(hWnd: HWND, pszSubAppName, pszSubIdList: LPCWSTR) -> HRESULT ---
|
|
}
|