getCurrentPropertyValue method
Implementation
int getCurrentPropertyValue(int propertyId, Pointer<VARIANT> retVal) =>
(ptr.ref.vtable + 10)
.cast<
Pointer<
NativeFunction<
Int32 Function(
Pointer,
Uint32 propertyId,
Pointer<VARIANT> retVal,
)
>
>
>()
.value
.asFunction<
int Function(Pointer, int propertyId, Pointer<VARIANT> retVal)
>()(ptr.ref.lpVtbl, propertyId, retVal);