FPDF_InitLibraryWithConfig method
Function: FPDF_InitLibraryWithConfig Initialize the PDFium library and allocate global resources for it. Parameters: config - configuration information as above. Return value: None. Comments: You have to call this function before you can call any PDF processing functions.
Implementation
void FPDF_InitLibraryWithConfig(ffi.Pointer<FPDF_LIBRARY_CONFIG> config) {
return _FPDF_InitLibraryWithConfig(config);
}