API Guide
601355 Rev A API Functions 2-997
Functins
29 /* loop through the number of mount
request */
30 for ( i = 0 ; i < num ; i++ )
31 {
32 /* Create a mount handle. */
33 /* Each mount handle stores a
single mount */
34 /* request. The MultiMount command
accepts */
35 /* multiple mount requests
andexecutes them */
36 /* all as one operation. */
37 mounth[i] =
vst_create_mount_handle();
38 if ( mounth[i] !=
(VST_MOUNT_HANDLE) NULL )
39 {
40 /* add the mount request to the
t */
41 /* multimount via the command
*/
42 /* default function */
43 VSCMD_MultiMount_SetDefaults (
44 VSID_MOUNT_HANDLE, i,
mounth[i],
45 VSID_ENDFIELD );
46 }
47 else
48 {
49 rc = VSE_FALSE;
50 break;
51 }
52 }
53
54 if ( rc )
55 {
56 cmdh = VS_Command_Create();
57 if (cmdh != (VST_COMMAND_HANDLE)
NULL)
58 {
59 /* execute the multimount
command, note */