Description |
 |
The VERS3270 intrinsic returns the version number of the SNA
IMF intrinsics. Although intrinsics are shared by both IMF/3000
and SNA IMF, internal checks ensure that the correct version of
the product is used.
CALL "CVERS3270" USING VERSION. (on MPE V and in compatibility mode on MPE XL)
CALL INTRINSIC "VERS3270" USING VERSION. (in native mode on MPE XL)
VERSION is an alphanumeric data item.
CALL VERS3270 (VERSION)
VERSION is a character array.
CALL BVERS3270 (V$) (on MPE V and in compatibility mode on MPE XL)
CALL VERS3270 (V$) (in native mode on MPE XL)
V$ is a string variable.
VERS3270 (VERSION)
VERSION is a byte array.
VERS3270 (VERSION);
VERSION is a packed array of char.
VERS3270 (VERSION);
VERSION is an array of characters (a pointer to a char).
Following are excerpts from a Pascal program that calls SNA
IMF intrinsics. For examples of complete Pascal programs in non-transparent
and transparent modes, see Appendix F “Sample Programs”
{************************** Global Declarations **************************}procedure VERS3270; intrinsic;...{************************** Local Declarations **************************}var version : packed array[1..14] of char;...{************** Variable Initialization and Intrinsic Call **************}version := ' ';VERS3270 (version); |