getGuidHeapSize method

int getGuidHeapSize(
  1. Pointer<Uint32> pcbGuids
)

Implementation

int getGuidHeapSize(Pointer<Uint32> pcbGuids) => (ptr.ref.vtable + 5)
    .cast<
      Pointer<
        NativeFunction<Int32 Function(Pointer, Pointer<Uint32> pcbGuids)>
      >
    >()
    .value
    .asFunction<int Function(Pointer, Pointer<Uint32> pcbGuids)>()(
  ptr.ref.lpVtbl,
  pcbGuids,
);