Change CDE version info for 2.3.1 release
[oweals/cde.git] / cde / lib / DtSvc / DtUtil1 / Dt.h
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these libraries and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $TOG: Dt.h /main/12 1999/10/18 14:49:57 samborn $ */
24 /* 
25  * (c) Copyright 1997, The Open Group 
26  */
27 /*
28  * (c) Copyright 1996 Digital Equipment Corporation.
29  * (c) Copyright 1993,1994,1996 Hewlett-Packard Company.
30  * (c) Copyright 1993,1994,1996 International Business Machines Corp.
31  * (c) Copyright 1993-1996 Sun Microsystems, Inc.
32  * (c) Copyright 1993,1994,1996 Novell, Inc. 
33  * (c) Copyright 1996 FUJITSU LIMITED.
34  * (c) Copyright 1996 Hitachi.
35  */
36
37 #ifndef _Dt_Dt_h
38 #define _Dt_Dt_h
39
40 #include <X11/Intrinsic.h>
41
42 #ifdef __cplusplus
43 extern "C" {
44 #endif
45
46
47 /*
48  * Constants
49  */
50
51 /* CDE Version information */
52
53 #define DtVERSION               2
54 #define DtREVISION              3
55 #define DtUPDATE_LEVEL          1
56
57 #define DtVERSION_NUMBER        (DtVERSION * 10000 +  \
58                                 DtREVISION * 100 + \
59                                 DtUPDATE_LEVEL)
60
61 #define DtVERSION_STRING "CDE Version 2.3.1"
62
63
64 /* 
65  * CDE Version information 
66  */
67
68 externalref const int DtVersion;
69 externalref const char *DtVersionString;
70
71
72 /*
73  * Functions
74  */
75
76 extern Boolean DtInitialize(
77                 Display         *display,
78                 Widget          widget,
79                 char            *name,
80                 char            *tool_class);
81
82 extern Boolean DtAppInitialize(
83                 XtAppContext    app_context,
84                 Display         *display,
85                 Widget          widget,
86                 char            *name,
87                 char            *tool_class);
88
89 #ifdef __cplusplus
90 }
91 #endif
92
93 #endif /* _Dt_Dt_h */