File or Product version type
Source position: versiontypes.pp line 44
type TFileProductVersion = array [0..3] of Word; |
This type is a 4-element array of words that is used to represent a file or product version.
Major version number is stored in the lowest word
Example
Product version 4.2.1.1200 can be represented this way
const myver : TFileProductVersion = (4,2,1,1200);