/* * readBMP.h * * Created by Nina Amenta on Sun May 23 2004. * Free to good home! * */ /* Image type - contains height, width, and data */ struct Image { unsigned long sizeX; unsigned long sizeY; char *data; }; typedef struct Image Image; /* Function that reads in the image; first param is filename, second is image struct */ int ImageLoad(char* filename, Image* image);