From 007b7bd0598842d8ce144c05a7cf1ba2242db38f Mon Sep 17 00:00:00 2001 From: Sean Fox Date: Tue, 1 Jul 2008 10:28:13 +0000 Subject: Moved *bmp_data just below bitmap_callbacks in the bmp_image structure svn path=/branches/dynis/libnsbmp/; revision=4487 --- libnsbmp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libnsbmp.h b/libnsbmp.h index c11a047..9e9f92f 100644 --- a/libnsbmp.h +++ b/libnsbmp.h @@ -69,11 +69,11 @@ typedef struct bmp_bitmap_callback_vt_s { typedef struct bmp_image { bmp_bitmap_callback_vt bitmap_callbacks; /**< callbacks for bitmap functions */ + uint8_t *bmp_data; /** pointer to BMP data */ uint16_t width; /** width of BMP (valid after _analyse) */ uint16_t height; /** heigth of BMP (valid after _analyse) */ bool decoded; /** whether the image has been decoded */ void *bitmap; /** decoded image */ - uint8_t *bmp_data; /** pointer to BMP data */ /** Internal members are listed below */ uint32_t buffer_size; /** total number of bytes of BMP data available */ -- cgit v1.2.3