437c3e40ca
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15144 a1c6a512-1295-4272-9138-f99709370657
32 lines
224 B
C
32 lines
224 B
C
|
|
|
|
#ifndef __FB_H__
|
|
#define __FB_H__
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
|
|
|
|
struct fb
|
|
{
|
|
#ifdef HAVE_LCD_COLOR
|
|
struct
|
|
{
|
|
int l, r;
|
|
} cc[3];
|
|
#else
|
|
int mode;
|
|
#endif
|
|
int enabled;
|
|
};
|
|
|
|
|
|
extern struct fb fb;
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|