matchesAttributes method

int matchesAttributes(
  1. Pointer<Utf16> Attributes,
  2. Pointer<Int16> Matches
)

Implementation

int matchesAttributes(Pointer<Utf16> Attributes, Pointer<Int16> Matches) =>
    (ptr.ref.vtable + 19)
        .cast<
          Pointer<
            NativeFunction<
              Int32 Function(
                Pointer,
                Pointer<Utf16> Attributes,
                Pointer<Int16> Matches,
              )
            >
          >
        >()
        .value
        .asFunction<
          int Function(
            Pointer,
            Pointer<Utf16> Attributes,
            Pointer<Int16> Matches,
          )
        >()(ptr.ref.lpVtbl, Attributes, Matches);