Tizen 2.1 base
[platform/upstream/hplip.git] / prnt / hpijs / hptypes.h
1 /*****************************************************************************\
2   hptypes.h : HP types defined used by imaging modeules
3
4   Copyright (c) 1996 - 2001, Hewlett-Packard Co.
5   All rights reserved.
6
7   Redistribution and use in source and binary forms, with or without
8   modification, are permitted provided that the following conditions
9   are met:
10   1. Redistributions of source code must retain the above copyright
11      notice, this list of conditions and the following disclaimer.
12   2. Redistributions in binary form must reproduce the above copyright
13      notice, this list of conditions and the following disclaimer in the
14      documentation and/or other materials provided with the distribution.
15   3. Neither the name of Hewlett-Packard nor the names of its
16      contributors may be used to endorse or promote products derived
17      from this software without specific prior written permission.
18
19   THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
20   WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21   MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
22   NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
24   TO, PATENT INFRINGEMENT; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
25   OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
26   ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28   THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 \*****************************************************************************/
30
31
32 #ifndef HPTYPES_H
33 #define HPTYPES_H
34 //===========================================================================
35 //
36 //  Filename     :  hptypes.h
37 //
38 //  Module       :  Open Source Imaging
39 //
40 //  Description  :  This file contains HP Types used by imaging modules.
41 //
42 //============================================================================
43
44 //=============================================================================
45 //  Header file dependencies
46 //=============================================================================
47
48 #define HPFAR
49
50 #define ENVPTR(typeName)                    HPFAR *typeName
51
52 typedef unsigned char   HPUInt8;
53
54 typedef const unsigned char   HPCUInt8;
55
56 typedef signed short    HPInt16, ENVPTR(HPInt16Ptr);
57
58 typedef const signed short  HPCInt16, ENVPTR(HPCInt16Ptr);
59
60 typedef unsigned short  HPUInt16;
61
62 typedef uint32_t        HPUInt32, ENVPTR(HPUInt32Ptr);
63
64 typedef int             HPBool;
65
66 typedef HPUInt8         HPByte, ENVPTR(HPBytePtr);
67
68 typedef HPCUInt8        HPCByte, ENVPTR(HPCBytePtr);
69
70 typedef HPUInt32    HPUIntPtrSize, ENVPTR(HPUIntPtrSizePtr);
71
72 #define kSpringsErrorType       HPInt16
73 #define kSpringsErrorTypePtr    HPInt16Ptr
74
75 #define HPTRUE    1
76 #define HPFALSE   0
77
78 #endif // HPTYPES_H