ShellAbout function shell32

int ShellAbout(
  1. HWND? hWnd,
  2. PCWSTR szApp,
  3. PCWSTR? szOtherStuff,
  4. HICON? hIcon,
)

Displays a ShellAbout dialog box.

To learn more, see learn.microsoft.com/windows/win32/api/shellapi/nf-shellapi-shellaboutw.

Implementation

@pragma('vm:prefer-inline')
int ShellAbout(HWND? hWnd, PCWSTR szApp, PCWSTR? szOtherStuff, HICON? hIcon) =>
    _ShellAbout(
      hWnd ?? nullptr,
      szApp,
      szOtherStuff ?? nullptr,
      hIcon ?? nullptr,
    );