repo.or.cz
/
rofl0r-df-libgraphics.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
curses.h: remove gl header inclusion
[rofl0r-df-libgraphics.git]
/
g_src
/
curses.h
blob
1072b305b7f35020e8ab5e094d320cef55bd5e99
1
#ifndef DF_CURSES_H
2
#define DF_CURSES_H
3
4
extern
"C"
{
5
#ifndef __APPLE__
6
#ifdef unix
7
# include <ncursesw/curses.h>
8
# undef COLOR_BLUE
9
# undef COLOR_CYAN
10
# undef COLOR_RED
11
# undef COLOR_YELLOW
12
# include <dlfcn.h>
13
#endif
14
#endif
15
}
16
17
#ifndef __APPLE__
18
#ifdef unix
19
extern
"C"
{
20
void
init_curses
();
21
extern
WINDOW
**
stdscr_p
;
22
};
23
#endif
24
#endif
25
26
27
#endif