video_easylogo.h 412 B

1234567891011121314151617181920212223242526
  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. #ifndef _EASYLOGO_H_
  10. #define _EASYLOGO_H_
  11. #if 0
  12. #define ENABLE_ASCII_BANNERS
  13. #endif
  14. typedef struct {
  15. unsigned char *data;
  16. int width;
  17. int height;
  18. int bpp;
  19. int pixel_size;
  20. int size;
  21. } fastimage_t ;
  22. #endif /* _EASYLOGO_H_ */