Blame view

include/video_easylogo.h 412 Bytes
167c5898b   wdenk   Initial revision
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  /*
  ** video easylogo
  ** ==============
  ** (C) 2000 by Paolo Scaffardi (arsenio@tin.it)
  ** AIRVENT SAM s.p.a - RIMINI(ITALY)
  **
  ** This utility is still under construction!
  */
  
  #ifndef _EASYLOGO_H_
  #define _EASYLOGO_H_
  
  #if 0
  #define ENABLE_ASCII_BANNERS
  #endif
  
  typedef struct {
53677ef18   Wolfgang Denk   Big white-space c...
18
  	unsigned char	*data;
167c5898b   wdenk   Initial revision
19
20
21
22
23
24
25
26
  	int		width;
  	int		height;
  	int		bpp;
  	int		pixel_size;
  	int		size;
  } fastimage_t ;
  
  #endif	/* _EASYLOGO_H_ */