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