FPDFPath_GetDrawMode function
Get the drawing mode of a path.
path - the handle to the path object. fillmode - the filling mode of the path: one of the FPDF_FILLMODE_* flags. stroke - a boolean specifying if the path is stroked or not.
Returns TRUE on success
Implementation
@ffi.Native<
FPDF_BOOL Function(
FPDF_PAGEOBJECT,
ffi.Pointer<ffi.Int>,
ffi.Pointer<FPDF_BOOL>,
)
>()
external int FPDFPath_GetDrawMode(
FPDF_PAGEOBJECT path,
ffi.Pointer<ffi.Int> fillmode,
ffi.Pointer<FPDF_BOOL> stroke,
);