Disable all code related to libXp
[oweals/cde.git] / cde / programs / dtinfo / DtMmdb / utility / types.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 librararies 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 /*
24  * $XConsortium: types.h /main/5 1996/08/21 15:55:48 drk $
25  *
26  * Copyright (c) 1992 HaL Computer Systems, Inc.  All rights reserved.
27  * UNPUBLISHED -- rights reserved under the Copyright Laws of the United
28  * States.  Use of a copyright notice is precautionary only and does not
29  * imply publication or disclosure.
30  * 
31  * This software contains confidential information and trade secrets of HaL
32  * Computer Systems, Inc.  Use, disclosure, or reproduction is prohibited
33  * without the prior express written permission of HaL Computer Systems, Inc.
34  * 
35  *                         RESTRICTED RIGHTS LEGEND
36  * Use, duplication, or disclosure by the Government is subject to
37  * restrictions as set forth in subparagraph (c)(l)(ii) of the Rights in
38  * Technical Data and Computer Software clause at DFARS 252.227-7013.
39  *                        HaL Computer Systems, Inc.
40  *                  1315 Dell Avenue, Campbell, CA  95008
41  * 
42  */
43
44
45
46 #ifndef _types_h
47 #define _types_h 1
48
49 #ifdef C_API
50 #include "utility/c_iostream.h"
51 #else
52 #include <iostream>
53 using namespace std;
54 #endif
55
56 #define true  1
57 #define false 0
58
59 typedef char Boolean;
60 typedef void* voidPtr;
61 typedef char* charPtr;
62
63 typedef short           s_int16;
64 typedef unsigned short  u_int16;
65
66 typedef int             s_int32;
67 typedef unsigned int    u_int32;
68
69 typedef long            s_long32;
70
71 typedef float           s_float32;
72
73 enum io_status { done, fail };
74
75 class root;
76 typedef Boolean (*cmp_func_ptr_t)(const void*, const void*);
77 typedef void (*app_func_ptr_t)(const void*);
78 typedef void (*print_func_ptr_t)(ostream&, const void*);
79
80 //enum Boolean { true, false };
81
82 #if !defined(__osf__) && !defined(linux) && !defined(CSRG_BASED)
83 typedef long mmdb_pos_t;
84 #else
85 typedef int mmdb_pos_t;
86 #endif
87
88
89 #endif