repo.or.cz
/
kugel-rb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
FS#12076 - DB stats resurrection: If the filename was changed, require
[kugel-rb.git]
/
apps
/
plugins
/
rockboy
/
fb.h
blob
96de665d14586e638658e689dfa8757a6388aebf
1
2
3
#ifndef __FB_H__
4
#define __FB_H__
5
6
7
#include
"defs.h"
8
9
10
11
struct
fb
12
{
13
#ifdef HAVE_LCD_COLOR
14
struct
15
{
16
int
l
,
r
;
17
}
cc
[
3
];
18
#else
19
int
mode
;
20
#endif
21
int
enabled
;
22
};
23
24
25
extern
struct
fb fb
;
26
27
28
#endif
29
30
31
32