XPRMgetdsoparam
| XPRMgetdsoparam | 
  Purpose
 
  
  Synopsis
 
 int XPRMgetdsoparam(XPRMmodel model, XPRMdsolib dso, const char *name, int *type, XPRMalltypes *value);
 
  Arguments
 
 | 
     model 
     | 
     Reference to a model
     | 
| 
     dso 
     | 
     Reference to a dynamic shared object loaded by Mosel or
     NULL
     | 
| 
     name 
     | 
     Name of the control parameter (lower case only)
     | 
| 
     type 
     | 
     Returned type of the control parameter
     | 
| 
     value 
     | 
     Returned value of the control parameter
     | 
  Return value
 
 
 0 if successful, 1 otherwise.
 
  Further information
 
 
 1. This function returns the current value of a control parameter of the given module in the context of the given model. This function requires that the model has been executed and uses the requested module.
 
 
 2. If the argument
 dso is
 NULL, the function looks for the value of a Mosel parameter (like
 "realfmt").
 
 
 3. If both arguments
 dso and
 model are
 NULL, the function looks for the default value of a Mosel parameter (like
 "realfmt").
 
 
 4. The type can be decoded using the macro
 XPRM_TYP. Moreover, the bits
 XPRM_CPAR_READ and
 XPRM_CPAR_WRITE are set to indicate if the parameter can be read or written respectively (using
 getparam and
 setparam).
 
 
