1 /* $Header$ */
2 
3 /*
4  *   Copyright (c) 1999, 2002 Michael J. Roberts.  All Rights Reserved.
5  *
6  *   Please see the accompanying license file, LICENSE.TXT, for information
7  *   on using and copying this software.
8  */
9 /*
10 Name
11   vmvsn.h - VM Version Information
12 Function
13 
14 Notes
15 
16 Modified
17   07/12/99 MJRoberts  - Creation
18 */
19 
20 #ifndef VMVSN_H
21 #define VMVSN_H
22 
23 /*
24  *   The VM version number.  A VM program can obtain this value through
25  *   the get_vm_vsn() function in the T3VM intrinsic function set.
26  *
27  *   The value is encoded as a 32-bit value with the major version number
28  *   in the high-order 16 bits, the minor version number in the next 8
29  *   bits, and the patch release number in the low-order 8 bits.  So, the
30  *   release 1.2.3 would be encoded as 0x00010203.
31  */
32 #define T3VM_VSN_NUMBER  0x00030008
33 
34 /*
35  *   The VM identification string
36  */
37 #define T3VM_IDENTIFICATION "mjr-T3"
38 
39 /*
40  *   The VM banner string.  A VM program can obtain this value through the
41  *   get_vm_banner() function in the T3VM intrinsic function set.
42  */
43 /* copyright-date-string */
44 #define T3VM_BANNER_STRING \
45     "T3 VM 3.0.8 - Copyright 1999, 2004 Michael J. Roberts"
46 
47 /*
48  *   The VM short version string.  This contains merely the version
49  *   number, in display format.
50  */
51 #define T3VM_VSN_STRING "3.0.8"
52 
53 #endif /* VMVSN_H */
54 
55