Programming Guide



sm_jplpublic

Executes JPL's public command

int sm_jplpublic(char *module_list);

module_list
Specifies the JPL modules to load as public modules, where module_list is a string of up to 255 characters that contains one or more module names delimited by spaces.

Returns

Description

sm_jplpublic is the C interface to the JPL public command. Use this command to load the procedures of one or more modules into memory. Calling sm_jplpublic is equivalent to using the JPL public command. For more information, refer to the public command.

Use sm_jplunload to remove a module from memory.

Example

/* Make the error handler procedures within the file
err_handlers available to the application */
sm_jplpublic("err_handlers")

See Also

sm_jplunload