FPDFPath_SetDrawMode method
Set the drawing mode of a path.
path - the handle to the path object. fillmode - the filling mode to be set: one of the FPDF_FILLMODE_* flags. stroke - a boolean specifying if the path should be stroked or not.
Returns TRUE on success
Implementation
int FPDFPath_SetDrawMode(FPDF_PAGEOBJECT path, int fillmode, int stroke) {
return _FPDFPath_SetDrawMode(path, fillmode, stroke);
}