WriteBlock property

Pointer<NativeFunction<Int Function(Pointer<FPDF_FILEWRITE> self, Pointer<Void> data, UnsignedLong size)>> WriteBlock
getter/setter pair

Method: WriteBlock Output a block of data in your custom way. Interface Version: 1 Implementation Required: Yes Comments: Called by function FPDF_SaveDocument Parameters: self - Pointer to the structure itself data - Pointer to a buffer to output size - The size of the buffer. Return value: Should be non-zero if successful, zero for error.

Implementation

external ffi.Pointer<
  ffi.NativeFunction<
    ffi.Int Function(
      ffi.Pointer<FPDF_FILEWRITE_> self,
      ffi.Pointer<ffi.Void> data,
      ffi.UnsignedLong size,
    )
  >
>
WriteBlock;