FPDFBookmark_GetDest method

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

FPDF_DEST FPDFBookmark_GetDest(
  FPDF_DOCUMENT document,
  FPDF_BOOKMARK bookmark,
) {
  return _FPDFBookmark_GetDest(document, bookmark);
}