cachedPositionInSet property
int
get
cachedPositionInSet
Implementation
int get cachedPositionInSet {
final retValuePtr = calloc<Int32>();
try {
final hr = (ptr.ref.vtable + 99)
.cast<
Pointer<
NativeFunction<Int32 Function(Pointer, Pointer<Int32> retVal)>
>
>()
.value
.asFunction<int Function(Pointer, Pointer<Int32> retVal)>()(
ptr.ref.lpVtbl,
retValuePtr,
);
if (FAILED(hr)) throw WindowsException(hr);
final retValue = retValuePtr.value;
return retValue;
} finally {
free(retValuePtr);
}
}