API Guide
601355 Rev A API Functions 2-687
Functions
Example 1 /****************************************
*********
2*
3 * FUNCTION: vst_import_defaults
4*
5 * PURPOSE:
6 * This function sets the default
parameters for the
7 * VSCMD_Import API call.
8*
9 * PARAMETERS:
10 * none
11 *
12 ****************************************
*********/
13 #ifdef ANSI_C
14 VST_BOOLEAN
vst_import_defaults(void)
15 #else
16 VST_BOOLEAN vst_import_defaults()
17 #endif
18 {
19 VST_BOOLEAN rc =
VSE_FALSE;
20 VST_PRIORITY priority;
21 VST_USER_FIELD user_field;
22 VST_TIME_OUT timeout;
23 VST_RETRY_LIMIT retries;
24 VST_STATUS_WAIT_FLAG wait_flag;
25 VST_ENTERPRISE_ID
enterprise_id;
26 VST_BATCH_NAME batch;
27 VST_MANUFACTURER_NAME manuf;
28
29 /* get parameters from user */
30 printf(ā€œ*** Import default
parameters ***\nā€ );
31 vst_promptforglobals(&priority,
user_field, &timeout, &retries,
&wait_flag, &enterprise_id);
32 printf(ā€œ\nEnter Batch ā€œ);
33 gets( batch);