File: common_defines.h

package info (click to toggle)
hplip 3.22.10%2Bdfsg0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 171,296 kB
  • sloc: python: 83,373; ansic: 71,016; cpp: 65,202; sh: 4,408; perl: 4,397; makefile: 937
file content (46 lines) | stat: -rw-r--r-- 1,373 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#ifndef PCLM_COMMON_DEFINES
#define PCLM_COMMON_DEFINES

#define PCLM_Ver 0.93
#define STANDALONE

/*###########################################################
*
*  Copyright (c) HP Company, 2006.
*  All rights reserved.  Copying or other reproduction of this
*  program except for archival purposes is prohibited without
*  the prior written consent of HP Company.
*
*  File: Print2/GE/src/mpression.cpp
*
*  HP COMPANY
*  11311 Chinden Boulevard
*  Boise, Idaho  83714
*
*##########################################################*/

typedef unsigned char   ubyte;          /* unsigned byte: 0..255           */
typedef signed   char   sbyte;          /* signed byte: -128..127          */
typedef unsigned char   uint8;          /* unsigned byte: 0..255           */
typedef unsigned short  uint16;         /* unsigned integer: 0..65535      */
typedef signed short    sint16;         /* signed integer: -32768..32767   */
typedef unsigned int    uint32;         /* unsigned long integer: 0..2^32-1*/
typedef signed int      sint32;         /* signed long integer: -2^31..2^31*/
typedef float           float32;        /* 32 bit floating point           */
typedef double          float64;        /* 64 bit floating point           */

typedef enum 
{
  RGB,
  AdobeRGB,
  GRAY, 
  unknown
} colorSpaceEnum;

typedef enum
{
  jpeg,
  zlib,
  rle
} compTypeEnum;
#endif