getUserStringHeapSize method

int getUserStringHeapSize(
  1. Pointer<Uint32> pcbBlobs
)

Implementation

int getUserStringHeapSize(Pointer<Uint32> pcbBlobs) => (ptr.ref.vtable + 6)
    .cast<
      Pointer<
        NativeFunction<Int32 Function(Pointer, Pointer<Uint32> pcbBlobs)>
      >
    >()
    .value
    .asFunction<int Function(Pointer, Pointer<Uint32> pcbBlobs)>()(
  ptr.ref.lpVtbl,
  pcbBlobs,
);