1
0
mirror of https://github.com/irssi/irssi.git synced 2024-08-04 03:34:18 -04:00

Remove term-curses.h (was added for cuix).

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4695 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Emanuele Giaquinta 2008-02-02 10:13:42 +00:00 committed by exg
parent 036b1d3300
commit 2d417002bb
2 changed files with 11 additions and 13 deletions

View File

@ -24,8 +24,11 @@
#include "term.h"
#include "mainwindows.h"
#include "term-curses.h"
#if defined(USE_NCURSES) && !defined(RENAMED_NCURSES)
# include <ncurses.h>
#else
# include <curses.h>
#endif
#include <termios.h>
#include <signal.h>
@ -41,6 +44,12 @@
# define _POSIX_VDISABLE 0
#endif
struct _TERM_WINDOW {
int x, y;
int width, height;
WINDOW *win;
};
TERM_WINDOW *root_window;
static int curs_x, curs_y;

View File

@ -1,11 +0,0 @@
#if defined(USE_NCURSES) && !defined(RENAMED_NCURSES)
# include <ncurses.h>
#else
# include <curses.h>
#endif
struct _TERM_WINDOW {
int x, y;
int width, height;
WINDOW *win;
};