FPDFPath_GetPathSegment method

FPDF_PATHSEGMENT FPDFPath_GetPathSegment(
  1. FPDF_PAGEOBJECT path,
  2. int index
)

Get segment in |path| at |index|.

path - handle to a path. index - the index of a segment.

Returns the handle to the segment, or NULL on faiure.

Implementation

FPDF_PATHSEGMENT FPDFPath_GetPathSegment(FPDF_PAGEOBJECT path, int index) {
  return _FPDFPath_GetPathSegment(path, index);
}