2005-03-02 23:49:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef __FB_H__
|
|
|
|
#define __FB_H__
|
|
|
|
|
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct fb
|
|
|
|
{
|
2007-10-16 18:16:22 +00:00
|
|
|
#ifdef HAVE_LCD_COLOR
|
2007-02-06 21:41:08 +00:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
int l, r;
|
|
|
|
} cc[3];
|
2007-10-16 18:16:22 +00:00
|
|
|
#else
|
2007-02-06 21:41:08 +00:00
|
|
|
int mode;
|
|
|
|
#endif
|
2007-10-16 18:16:22 +00:00
|
|
|
int enabled;
|
2005-03-02 23:49:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
extern struct fb fb;
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|