JCL Help:JclVersion
From Project JEDI Wiki
Jump to navigationJump to searchJCL Help: JclVersion Constant
Search in JCL Help
Search in all projects
Summary
Constants describing the JCL version.
Pascal
JclVersionMajor = 2;
JclVersionMinor = 4;
JclVersionRelease = 0;
JclVersionBuild = 4198;
JclVersion = (JclVersionMajor shl 24) or (JclVersionMinor shl 16) or (JclVersionRelease shl 15) or (JclVersionBuild shl 0);
Description
The JclVersion constants define the version of JCL. Major, Minor, Release and Build are merely placeholders, you can lookup the actual value in JclBase.pas.
Constant | Description: |
JclVersion | All of the other version values packed into a single integer. The separate values are moved into the individual bytes. From the most significant byte towards the least significant: Major, Minor, Release, Build |
JclVersionMajor | Major version of JCL |
JclVersionMinor | Minor version of JCL. Incremented for each minor release such as when minor additions and/or bug fixes have been made |
JclVersionBuild | Build number of JCL. This is roughly equivalent to the number of days that JCL has been worked on (starting February 2000) |
JclVersionRelease | If set to 1 this is an official release. If 0 this is a preview or beta version. |
About
Unit
Donator
Marcel van Brakel
Contribute to this help topic
This documentation wiki is based on the collaborative effort of Project JEDI users. Your edits are welcome in order to improve documentation quality: edit this page