XPRMregstatdso
| XPRMregstatdso | 
  Purpose
 
 Declare a module as static.
 
  Synopsis
 
int XPRMregstatdso(const char *name, int (*dsoinit)(XPRMnifct, int *, int *, XPRMdsointer **));
 
  Arguments
 
| 
     name 
     | 
     Name of the module
     | 
| 
     dsoinit 
     | 
     Address of the module initialization function
     | 
  Return value
 
 0 if successful, 1 otherwise.
  Further information
 
 This function declares a module as static. If parameter
 dsoinit is
 NULL, the module is loaded and will not be unloaded until the termination of the program. Otherwise the module is implemented in the current program (instead of being an external library) and
 dsoinit is the initialization function of the module (see Mosel Native Interface Reference Manual).
 
 
