API Guide
2-246 API Functions 601355 Rev A
VSE_ERR_NULLSTRING - A null value was passed to a
string argument.
Example 1 /****************************************
*********
2*
3 * FUNCTION: vst_set_globals
4*
5 * PURPOSE:
6 * This function allows the user to set
VolServ API’s
7 * global parameters.
8*
9 * PARAMETERS:
10 * none
11 *
12 ****************************************
*********/
13 #ifdef ANSI_C
14 VST_BOOLEAN vst_set_globals( void )
15 #else
16 VST_BOOLEAN vst_set_globals()
17 #endif
18 {
19 VST_PRIORITY priority;
20 VST_USER_FIELD user_field;
21 VST_TIME_OUT timeout;
22 VST_RETRY_LIMIT retries;
23 VST_STATUS_WAIT_FLAG wait_flag;
24 VST_ENTERPRISE_ID enterprise_id;
25 VST_BOOLEAN rc;
26
27 printf(“*** Set Global Parameters
***\n\n”);
28 vst_promptforglobals(&priority,
user_field, &timeout, &retries,
&wait_flag, &enterprise_id);
29 rc =
VS_Global_SetFields(VSID_PRIORITY
, priority,