Music property

int Music

Implementation

int get Music {
  final retValuePtr = calloc<IntPtr>();

  try {
    final hr = Pointer<NativeFunction<_get_Music_Native>>.fromAddress(
            ptr.ref.vtable.elementAt(16).value)
        .asFunction<_get_Music_Dart>()(ptr.ref.lpVtbl, retValuePtr);
    if (FAILED(hr)) throw WindowsException(hr);

    final retValue = retValuePtr.value;
    return retValue;
  } finally {
    free(retValuePtr);
  }
}