LoadIcon function user32

int LoadIcon(
  1. int hInstance,
  2. Pointer<Utf16> lpIconName
)

Loads the specified icon resource from the executable (.exe) file associated with an application instance.

HICON LoadIconW(
  HINSTANCE hInstance,
  LPCWSTR   lpIconName
);

Implementation

int LoadIcon(int hInstance, Pointer<Utf16> lpIconName) =>
    _LoadIcon(hInstance, lpIconName);