API Guide
2-532 API Functions 601355 Rev A
ā€¢VSE_ERR_NULLSTRING - A null value was passed to a
string argument.
Example 1 /****************************************
*********
2*
3 * FUNCTION: vst_checkin_defaults
4*
5 * PURPOSE:
6 * This function sets the default
parameters for the
7 * VSCMD_Checkin API call.
8*
9 * PARAMETERS:
10 * none
11 *
12 ****************************************
**********/
13 #ifdef ANSI_C
14 VST_BOOLEAN
vst_checkin_defaults(void)
15 #else
16 VST_BOOLEAN vst_checkin_defaults()
17 #endif
18 {
19 VST_BOOLEAN rc = VSE_FALSE;
20 int count;
21 VST_PRIORITY priority;
22 VST_USER_FIELD user_field;
23 VST_TIME_OUT timeout;
24 VST_RETRY_LIMIT retries;
25 VST_STATUS_WAIT_FLAG wait_flag;
26 VST_ENTERPRISE_ID enterprise_id;
27 char
archive[VSD_ARCHIVE_NAME_LEN];
28
29 /* get parameters from user */
30 printf(ā€œ*** Check-in default
parameters ***\nā€ );