Programming Guide |
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.
- 0 Success.
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. Callingsm_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.
/* Make the error handler procedures within the file
err_handlers available to the application */
sm_jplpublic("err_handlers")