MatchesAttributes method

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

Implementation

int MatchesAttributes(Pointer<Utf16> Attributes, Pointer<Int16> Matches) =>
    ptr.ref.vtable
            .elementAt(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);