FPDF_GetNamedDestByName method

FPDF_DEST FPDF_GetNamedDestByName(
  1. FPDF_DOCUMENT document,
  2. FPDF_BYTESTRING name
)

Function: FPDF_GetNamedDestByName Get a the destination handle for the given name. Parameters: document - Handle to the loaded document. name - The name of a destination. Return value: The handle to the destination.

Implementation

FPDF_DEST FPDF_GetNamedDestByName(
  FPDF_DOCUMENT document,
  FPDF_BYTESTRING name,
) {
  return _FPDF_GetNamedDestByName(document, name);
}