aboutsummaryrefslogtreecommitdiff
path: root/core/sys/windows/comctl32.odin
blob: 9c4404a9d2d40c84aae14f1ce8f96d0b80603b61 (plain)
1
2
3
4
5
6
7
8
9
// +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 ---
}