2010-07-31 06:52:47 +04:00
|
|
|
/*
|
|
|
|
* The Python Imaging Library
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* image quantizer
|
|
|
|
*
|
|
|
|
* Written by Toby J Sargeant <tjs@longford.cs.monash.edu.au>.
|
|
|
|
*
|
|
|
|
* See the README file for information on usage and redistribution.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __TYPES_H__
|
|
|
|
#define __TYPES_H__
|
|
|
|
|
2013-04-08 02:52:15 +04:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
typedef unsigned __int32 uint32_t;
|
|
|
|
#else
|
|
|
|
#include <stdint.h>
|
|
|
|
#endif
|
2010-07-31 06:52:47 +04:00
|
|
|
|
2013-04-08 02:52:15 +04:00
|
|
|
typedef union {
|
|
|
|
struct {
|
|
|
|
unsigned char r,g,b,a;
|
|
|
|
} c;
|
|
|
|
struct {
|
|
|
|
unsigned char v[4];
|
|
|
|
} a;
|
|
|
|
uint32_t v;
|
|
|
|
} Pixel;
|
2010-07-31 06:52:47 +04:00
|
|
|
|
|
|
|
#endif
|