/* * postcodeine.h: * * Copyright (c) 2006 UK Citizens Online Democracy. All rights reserved. * Email: chris@mysociety.org; WWW: http://www.mysociety.org/ * * $Id: postcodeine.h,v 1.1 2006/01/19 01:57:32 chris Exp chris $ * */ #ifndef __POSTCODEINE_H_ /* include guard */ #define __POSTCODEINE_H_ #include typedef uint8_t pixel; struct image { int w, h; pixel **data; }; struct postcodezone { char *zone, *name; }; #endif /* __POSTCODEINE_H_ */