comctl32.odin 256 B

123456789
  1. // +build windows
  2. package sys_windows
  3. foreign import "system:Comctl32.lib"
  4. @(default_calling_convention="stdcall")
  5. foreign Comctl32 {
  6. LoadIconWithScaleDown :: proc(hinst: HINSTANCE, pszName: PCWSTR, cx: c_int, cy: c_int, phico: ^HICON) -> HRESULT ---
  7. }