/********************************************************************************************************************************/ /* Created: 15-MAR-2001 23:37:12 by OpenVMS SDL EV1-33 */ /* Source: 15-MAR-2001 23:35:03 _$11$DUA933:[BUILD.SDL]CLI$ROUTINES.SDI;1 */ /********************************************************************************************************************************/ /*** MODULE CLI$ROUTINES IDENT X-1 ***/ #ifndef __CLI$ROUTINES_LOADED #define __CLI$ROUTINES_LOADED 1 #pragma nostandard #ifdef __cplusplus extern "C" { #define __unknown_params ... #else #define __unknown_params #endif #if !defined(__VAXC) && !defined(VAXC) #define __struct struct #define __union union #else #define __struct variant_struct #define __union variant_union #endif /* */ /* Command Language Interpreter (CLI) Routines */ /* */ /* */ /* CLI$DCL_PARSE - Parse DCL command string */ /* */ /* status = CLI$DCL_PARSE ([command_string], table [,param_routine] */ /* [,prompt_routine] [,prompt_string]) */ /* */ /* command_string - Command string to parse */ /* table - Command table */ /* param_routine - Routine to obtain omitted parameters */ /* prompt_routine - Routine to prompt for input */ /* prompt_string - Prompt string for display */ /* */ unsigned int cli$dcl_parse(__unknown_params); /* */ /* CLI$DISPATCH - Dispatch to action routine */ /* */ /* status = CLI$DISPATCH ([userarg]) */ /* */ /* userarg - User argument */ /* */ unsigned int cli$dispatch(__unknown_params); /* */ /* CLI$GET_VALUE - Get value of entity in command string */ /* */ /* status = CLI$GET_VALUE (entity_desc, retdesc [, retlength]) */ /* */ /* entity_desc - Entity to retrieve */ /* retdesc - Returned value string */ /* retlength - Length of returned value */ /* */ unsigned int cli$get_value(__unknown_params); /* */ /* CLI$PRESENT - Determine presence of entity in command string */ /* */ /* status = CLI$PRESENT (entity_desc) */ /* */ /* entity_desc - Entity to retrieve */ /* */ unsigned int cli$present(__unknown_params); #ifdef __cplusplus } #endif #pragma standard #endif /* __CLI$ROUTINES_LOADED */