mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-06 04:57:55 +00:00
11 lines
368 B
Odin
11 lines
368 B
Odin
#+build windows
|
|
package sys_windows
|
|
|
|
foreign import "system:Comctl32.lib"
|
|
|
|
@(default_calling_convention="system")
|
|
foreign Comctl32 {
|
|
LoadIconWithScaleDown :: proc(hinst: HINSTANCE, pszName: PCWSTR, cx: c_int, cy: c_int, phico: ^HICON) -> HRESULT ---
|
|
SetWindowSubclass :: proc(hwnd: HWND, pfnSubclass: SUBCLASSPROC, uIdSubclass: UINT_PTR, dwRefData: DWORD_PTR) ---
|
|
}
|