getPropertyProgrammaticName method

int getPropertyProgrammaticName(
  1. int property,
  2. Pointer<Pointer<Utf16>> name
)

Implementation

int getPropertyProgrammaticName(int property, Pointer<Pointer<Utf16>> name) =>
    (ptr.ref.vtable + 49)
            .cast<
                Pointer<
                    NativeFunction<
                        Int32 Function(Pointer, Uint32 property,
                            Pointer<Pointer<Utf16>> name)>>>()
            .value
            .asFunction<
                int Function(
                    Pointer, int property, Pointer<Pointer<Utf16>> name)>()(
        ptr.ref.lpVtbl, property, name);