repo.or.cz
/
rofl0r-concol.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
README: mention SDL2 backend
[rofl0r-concol.git]
/
tbconsole.h
blob
1d253d2b532a2780fa02a565081f8c08e2ddb62f
1
#ifndef TBCONSOLE_H
2
#define TBCONSOLE_H
3
4
#include
"console_sel.h"
5
6
#if CONSOLE_BACKEND == TERMBOX_CONSOLE
7
#pragma RcB2 DEP
"tbconsole.c"
8
#pragma RcB2 LINK
"-L ../termbox -ltermbox"
9
#endif
10
11
typedef
struct
TbConsole
{
12
int
fgcolor
;
13
int
bgcolor
;
14
}
TbConsole
;
15
16
#endif