update dev300-m58
[ooovba.git] / agg / inc / agg_config.h
blobc0070066383e72620cb8b5a1f78cc510e988ce1c
1 #ifndef AGG_CONFIG_INCLUDED
2 #define AGG_CONFIG_INCLUDED
4 // This file can be used to redefine the default basic types such as:
5 //
6 // AGG_INT8
7 // AGG_INT8U
8 // AGG_INT16
9 // AGG_INT16U
10 // AGG_INT32
11 // AGG_INT32U
12 // AGG_INT64
13 // AGG_INT64U
15 // Just replace this file with new defines if necessary.
16 // For example, if your compiler doesn't have a 64 bit integer type
17 // you can still use AGG if you define the follows:
19 // #define AGG_INT64 int
20 // #define AGG_INT64U unsigned
22 // It will result in overflow in 16 bit-per-component image/pattern resampling
23 // but it won't result any crash and the rest of the library will remain
24 // fully functional.
26 // #i65318# Passing agg version on to clients
27 #ifndef AGG_VERSION
28 # define AGG_VERSION 2300
29 #endif
31 #endif