wdenk | 167c589 | 2001-11-03 22:21:15 +0000 | [diff] [blame] | 1 | /* |
| 2 | ** video easylogo |
| 3 | ** ============== |
| 4 | ** (C) 2000 by Paolo Scaffardi (arsenio@tin.it) |
| 5 | ** AIRVENT SAM s.p.a - RIMINI(ITALY) |
| 6 | ** |
| 7 | ** This utility is still under construction! |
| 8 | */ |
| 9 | |
| 10 | #ifndef _EASYLOGO_H_ |
| 11 | #define _EASYLOGO_H_ |
| 12 | |
| 13 | #if 0 |
| 14 | #define ENABLE_ASCII_BANNERS |
| 15 | #endif |
| 16 | |
| 17 | typedef struct { |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 18 | unsigned char *data; |
wdenk | 167c589 | 2001-11-03 22:21:15 +0000 | [diff] [blame] | 19 | int width; |
| 20 | int height; |
| 21 | int bpp; |
| 22 | int pixel_size; |
| 23 | int size; |
| 24 | } fastimage_t ; |
| 25 | |
| 26 | #endif /* _EASYLOGO_H_ */ |