mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-29 09:24:33 +00:00
10 lines
255 B
Odin
10 lines
255 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 ---
|
|
}
|