getContentType method

int getContentType(
  1. Pointer<Pointer<Utf16>> contentType
)

Implementation

int getContentType(Pointer<Pointer<Utf16>> contentType) =>
    (ptr.ref.vtable + 4)
            .cast<
                Pointer<
                    NativeFunction<
                        Int32 Function(
                            Pointer, Pointer<Pointer<Utf16>> contentType)>>>()
            .value
            .asFunction<
                int Function(Pointer, Pointer<Pointer<Utf16>> contentType)>()(
        ptr.ref.lpVtbl, contentType);