getResults method
void
getResults()
Implementation
void getResults() {
final hr = ptr.ref.vtable
.elementAt(8)
.cast<Pointer<NativeFunction<HRESULT Function(VTablePointer lpVtbl)>>>()
.value
.asFunction<int Function(VTablePointer lpVtbl)>()(ptr.ref.lpVtbl);
if (FAILED(hr)) throwWindowsException(hr);
}