FPDF_GetNamedDest method

Pointer<fpdf_dest_t__> FPDF_GetNamedDest(
  1. Pointer<fpdf_document_t__> document,
  2. int index,
  3. Pointer<Void> buffer,
  4. Pointer<Int64> buflen,
)

Implementation

ffi.Pointer<fpdf_dest_t__> FPDF_GetNamedDest(
  ffi.Pointer<fpdf_document_t__> document,
  int index,
  ffi.Pointer<ffi.Void> buffer,
  ffi.Pointer<ffi.Int64> buflen,
) {
  return _FPDF_GetNamedDest(
    document,
    index,
    buffer,
    buflen,
  );
}