commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
27 lines
412 B
C
27 lines
412 B
C
/*
|
|
** 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 {
|
|
unsigned char *data;
|
|
int width;
|
|
int height;
|
|
int bpp;
|
|
int pixel_size;
|
|
int size;
|
|
} fastimage_t ;
|
|
|
|
#endif /* _EASYLOGO_H_ */
|