displayUI method
void
displayUI()
Throws a WindowsException on failure.
Implementation
@pragma('vm:prefer-inline')
void displayUI(
int hWnd,
BSTR title,
BSTR typeOfUI,
Pointer<VARIANT> extraData,
IUnknown? object,
) {
final hr$ = HRESULT(
_DisplayUIFn(
ptr,
hWnd,
title,
typeOfUI,
extraData,
object?.ptr ?? nullptr,
),
);
if (hr$.isError) throw WindowsException(hr$);
}