priority property

int priority

Implementation

int get priority {
  final retValuePtr = calloc<Int32>();

  try {
    final hr = (ptr.ref.vtable + 23)
            .cast<
                Pointer<
                    NativeFunction<
                        Int32 Function(Pointer, Pointer<Int32> Priority)>>>()
            .value
            .asFunction<int Function(Pointer, Pointer<Int32> Priority)>()(
        ptr.ref.lpVtbl, retValuePtr);

    if (FAILED(hr)) throw WindowsException(hr);

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

Implementation

set priority(int value) {
  final hr = (ptr.ref.vtable + 22)
      .cast<
          Pointer<NativeFunction<Int32 Function(Pointer, Int32 Priority)>>>()
      .value
      .asFunction<
          int Function(Pointer, int Priority)>()(ptr.ref.lpVtbl, value);

  if (FAILED(hr)) throw WindowsException(hr);
}