supportsDataField method

int supportsDataField(
  1. Pointer<PROPERTYKEY> key,
  2. Pointer<Int16> pIsSupported
)

Implementation

int supportsDataField(
  Pointer<PROPERTYKEY> key,
  Pointer<Int16> pIsSupported,
) => (ptr.ref.vtable + 11)
    .cast<
      Pointer<
        NativeFunction<
          Int32 Function(
            Pointer,
            Pointer<PROPERTYKEY> key,
            Pointer<Int16> pIsSupported,
          )
        >
      >
    >()
    .value
    .asFunction<
      int Function(
        Pointer,
        Pointer<PROPERTYKEY> key,
        Pointer<Int16> pIsSupported,
      )
    >()(ptr.ref.lpVtbl, key, pIsSupported);