getAlertBoundary method

void getAlertBoundary(
  1. Pointer<Int32> peBoundary
)

Throws a WindowsException on failure.

Implementation

@pragma('vm:prefer-inline')
void getAlertBoundary(Pointer<Int32> peBoundary) {
  final hr$ = HRESULT(_GetAlertBoundaryFn(ptr, peBoundary));
  if (hr$.isError) throw WindowsException(hr$);
}