aboutsummaryrefslogtreecommitdiff
path: root/core/sys/windows/comctl32.odin
blob: 983c45d36ef994e985e99bc4dbc57a7fc57671b0 (plain)
1
2
3
4
5
6
7
8
9
// +build windows
package sys_windows

foreign import "system:Comctl32.lib"

@(default_calling_convention="stdcall")
foreign Comctl32 {
	LoadIconWithScaleDown :: proc(hinst: HINSTANCE, pszName: PCWSTR, cx: c_int, cy: c_int, phico: ^HICON) -> HRESULT ---
}