CoTaskMemRealloc function ole32

Pointer<NativeType> CoTaskMemRealloc(
  1. Pointer<NativeType> pv,
  2. int cb
)

Changes the size of a previously allocated block of task memory.

LPVOID CoTaskMemRealloc(
  LPVOID pv,
  SIZE_T cb
);

Implementation

Pointer CoTaskMemRealloc(Pointer pv, int cb) => _CoTaskMemRealloc(pv, cb);