![]() | Programming Guide | ![]() |
Executes a JPL send command
int sm_send(char *send_args);
send_args- A string constant that contains
sendcommand arguments:[bundlebundle-name] [ append ] datadata-expr[,...]For a description of these arguments, refer to the
sendcommand.
sm_sendexecutes a JPL send command exactly as if called from JPL.sm_sendwrites screen data to a buffer that is accessible to other screens through calls to sm_receive or the JPL receive command.sm_sendcan send one or more values from fields and array occurrences on a screen. It can also send character string constants as well as parts of arrays or the current occurrence of an array.Panther writes the data that you specify in
sm_sendto a temporary buffer, or bundle, which you can optionally name. Panther by default maintains up to ten bundles; you can set the number of available bundles using themax_bundlesproperty. If you omit a bundle name, Panther writes the data to an unnamed bundle; this data is accessed by the next call to sm_receive or receive that also omits a bundle name argument or specifies it as an empty string.For more information, refer to the send command.