FPDF_InitLibraryWithConfig function

  1. @Native<Void Function(Pointer<FPDF_LIBRARY_CONFIG>)>(ffi.Pointer<FPDF_LIBRARY_CONFIG>)>()
void FPDF_InitLibraryWithConfig(
  1. Pointer<FPDF_LIBRARY_CONFIG> config
)

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

@ffi.Native<ffi.Void Function(ffi.Pointer<FPDF_LIBRARY_CONFIG>)>()
external void FPDF_InitLibraryWithConfig(
  ffi.Pointer<FPDF_LIBRARY_CONFIG> config,
);