FPDFBookmark_GetDest function

  1. @Native<FPDF_DEST Function(FPDF_DOCUMENT document, FPDF_BOOKMARK bookmark)>(FPDF_DOCUMENT, FPDF_BOOKMARK)>()
FPDF_DEST FPDFBookmark_GetDest(
  1. FPDF_DOCUMENT document,
  2. FPDF_BOOKMARK bookmark
)

Get the destination associated with |bookmark|.

document - handle to the document. bookmark - handle to the bookmark.

Returns the handle to the destination data, or NULL if no destination is associated with |bookmark|.

Implementation

@ffi.Native<FPDF_DEST Function(FPDF_DOCUMENT, FPDF_BOOKMARK)>()
external FPDF_DEST FPDFBookmark_GetDest(
  FPDF_DOCUMENT document,
  FPDF_BOOKMARK bookmark,
);