API Guide
601355 Rev A API Functions 2-539
Functions
33 /* vst_dispatch when finalstatus is
received. */
34 cmd = VS_Command_Create();
35 /* validate the command handle */
36 if ( cmd != (VST_COMMAND_HANDLE)
NULL)
37 {
38 /* Send the command to the
VolServ */
39 /* software. Note that status
is not */
40 /* processed here. Instead, it
is */
41 /* processed it the
vst_dispatch */
42 /* routine. Also, note that
default */
43 /* values such as timeout,
value retry */
44 /* limit and priority are set
as default */
45 /* parameters. */
46 rc = VSCMD_Checkout(cmd,
47 VSID_COMMENT, comment,
48 VSID_MEDIA_ID_LIST, count,
medialist,
49 VSID_ENDFIELD);
50 }
51
52 return ( rc );
53 }