summaryrefslogtreecommitdiff
path: root/girepository/cmph/cmph_types.h
blob: 40f43329ae4472c702137ccaf232390da674a698 (plain)
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
#ifndef __CMPH_TYPES_H__
#define __CMPH_TYPES_H__

typedef char cmph_int8;
typedef unsigned char cmph_uint8;

typedef short cmph_int16;
typedef unsigned short cmph_uint16;

typedef int cmph_int32;
typedef unsigned int cmph_uint32;

#if defined(__ia64) || defined(__x86_64__)
  /** \typedef long cmph_int64;
   *  \brief 64-bit integer for a 64-bit achitecture.
   */
  typedef long cmph_int64;

  /** \typedef unsigned long cmph_uint64;
   *  \brief Unsigned 64-bit integer for a 64-bit achitecture.
   */
  typedef unsigned long cmph_uint64;
#else
  /** \typedef long long cmph_int64;
   *  \brief 64-bit integer for a 32-bit achitecture.
   */
  typedef long long cmph_int64;

  /** \typedef unsigned long long cmph_uint64;
   *  \brief Unsigned 64-bit integer for a 32-bit achitecture.
   */
  typedef unsigned long long cmph_uint64;
#endif

typedef enum { CMPH_HASH_JENKINS, CMPH_HASH_COUNT } CMPH_HASH;
extern const char *cmph_hash_names[];
typedef enum { CMPH_BMZ, CMPH_BMZ8, CMPH_CHM, CMPH_BRZ, CMPH_FCH,
               CMPH_BDZ, CMPH_BDZ_PH,
               CMPH_CHD_PH, CMPH_CHD, CMPH_COUNT } CMPH_ALGO;
extern const char *cmph_names[];

#endif