Subversion Repositories Kolibri OS

Rev

Rev 1892 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1892 Rev 3959
Line 78... Line 78...
78
# define INT32_MIN	(-2147483647-1)
78
# define INT32_MIN	(-2147483647-1)
79
#endif
79
#endif
80
#ifndef INT32_MAX
80
#ifndef INT32_MAX
81
# define INT32_MAX	(2147483647)
81
# define INT32_MAX	(2147483647)
82
#endif
82
#endif
-
 
83
#ifndef UINT32_MAX
-
 
84
# define UINT32_MAX     (4294967295U)
-
 
85
#endif
Line 83... Line 86...
83
 
86
 
84
#if HAVE_BYTESWAP_H
87
#if HAVE_BYTESWAP_H
85
# include 
88
# include 
86
#endif
89
#endif
Line 100... Line 103...
100
 
103
 
Line 101... Line 104...
101
#if !HAVE_UINT64_T
104
#if !HAVE_UINT64_T
102
 
105
 
103
typedef struct _cairo_uint64 {
106
typedef struct _cairo_uint64 {
Line 104... Line 107...
104
    uint32_t	lo, hi;
107
   uint32_t   lo, hi;
Line 105... Line 108...
105
} cairo_uint64_t, cairo_int64_t;
108
/ cairo_uint64_t, cairo_int64_t;
106
 
109