Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
elpa_load_settings(3)	    Library Functions Manual	   elpa_load_settings(3)

NAME
     elpa_load_settings - loads the setting of an elpa object

SYNOPSIS
   FORTRAN INTERFACE
     use elpa
     class(elpa_t), pointer :: elpa_handle

     call elpa_handle%load_settings (filename, error)

     With the definitions of the input and output variables:

     class(elpa_t)	 :: elpa
	    An instance of the ELPA object

     character(*)	 :: filename
	    The file from where to load the settings

     integer, optional	 :: error
	    An error return code

   C/C++ INTERFACE
     #include <elpa/elpa.h>
     elpa_t elpa_handle;

     void  elpa_load_settings(elpa_t elpa_handle, const char *filename, int *er-
     ror);

     With the definitions of the input and output variables:

     elpa_t  elpa_handle;
	    The handle to the ELPA object

     const char  *filename;
	    The filename to load the settings

     int  *error;
	    The error return code

DESCRIPTION
     Loads all the settings of an previously stored  ELPA  object  from  a  file
     specified via the filename parameter.

SEE ALSO
     elpa_store_setting(3)

ELPA				 Thu Nov 28 2024	   elpa_load_settings(3)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=elpa_load_settings&sektion=3&manpath=FreeBSD+Ports+15.1.quarterly>

home | help