getUInt64 method
Implementation
int getUInt64() {
final retValuePtr = calloc<Uint64>();
try {
final hr = ptr.ref.vtable
.elementAt(6)
.cast<
Pointer<
NativeFunction<HRESULT Function(Pointer, Pointer<Uint64>)>>>()
.value
.asFunction<
int Function(
Pointer, Pointer<Uint64>)>()(ptr.ref.lpVtbl, retValuePtr);
if (FAILED(hr)) throw WindowsException(hr);
final retValue = retValuePtr.value;
return retValue;
} finally {
free(retValuePtr);
}
}