btrfs: [] on the end of a struct field is a variable length array.
[haiku.git] / headers / libs / agg / agg_config.h
blob32bf946f549a6ea731a20766b9f32b29a4c505f0
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 #endif