Initial import of the CDE 2.1.30 sources from the Open Group.
[oweals/cde.git] / cde / lib / DtHelp / il / ilversion.c
1 /* $XConsortium: ilversion.c /main/3 1995/10/23 16:02:54 rswiston $ */
2 /*  /ilc/ilversion.c : Contains the IL version string
3     (which should really be dynamically generated).
4 */
5
6 #include "ilint.h"
7
8 /*
9    Image Library version <external>[ <baselevel>], for <OS> <OS version> '<library name>'
10    WARNING: FIXED FORMAT EXPECTED BY /ilc/iltiffwrite.c !!!
11    See notes below "ilVersionName".
12 */
13
14 #ifdef __hpux 
15     IL_PRIVATE 
16    char _ilVersionString[] = "HP IL BETA v 23.  bl08";
17 /*                                nnnnn vvvvvv bbbb       see below
18                                   xxxxxxxxxxxxxxxxx       total size = 17 chars
19
20         The above version string *must* maintain the syntax and position of all fields
21         before the ";".  The strings have the following format; each string is 5 chars:
22             nnnnn       A 5 char fixed string equal to "HP IL ".
23             vvvvvv      A 6 char string in the format "v!!.??", where !! is the two-digit
24                         major version number (" n" if less than 10), and ?? is the minor
25                         version number ("n " if less than 10).  Examples: "v10.12",
26                         "v 9.6 ".
27             bbbbb       A 4 char string in the format "bl??", where ?? is the baselevel
28                         number (e.g. "bl01", "bl56").
29
30 */
31
32 #else
33
34     IL_PRIVATE
35    char _ilVersionString[] = "@(#)HP IL v 2.1  bl06; Image Library for Domain/OS SR10.X 'il'";
36 /*                                nnnnn vvvvvv bbbb       see above
37                                   xxxxxxxxxxxxxxxxx       total size = 17 chars
38 */
39
40 #endif
41