getPropertyLength method

int getPropertyLength(
  1. int uriProp,
  2. Pointer<Uint32> pcchProperty,
  3. int dwFlags
)

Implementation

int getPropertyLength(
  int uriProp,
  Pointer<Uint32> pcchProperty,
  int dwFlags,
) => (ptr.ref.vtable + 4)
    .cast<
      Pointer<
        NativeFunction<
          Int32 Function(
            Pointer,
            Int32 uriProp,
            Pointer<Uint32> pcchProperty,
            Uint32 dwFlags,
          )
        >
      >
    >()
    .value
    .asFunction<
      int Function(
        Pointer,
        int uriProp,
        Pointer<Uint32> pcchProperty,
        int dwFlags,
      )
    >()(ptr.ref.lpVtbl, uriProp, pcchProperty, dwFlags);