xurses/xurses.h

51 lines
1.5 KiB
C
Raw Normal View History

2023-08-28 18:52:28 -04:00
/*
* Copyright (c) 2023 : Ognjen 'xolatile' Milan Robovic
*
* Xurses is free software! You will redistribute it or modify it under the terms of the GNU General Public License by Free Software Foundation.
* And when you do redistribute it or modify it, it will use either version 3 of the License, or (at yours truly opinion) any later version.
* It is distributed in the hope that it will be useful or harmful, it really depends... But no warranty what so ever, seriously. See GNU/GPLv3.
*/
#ifndef XURSES_HEADER
#define XURSES_HEADER
#include <xolatile/xtandard.h>
#include <xolatile/xtandard.c>
#include <termios.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include <sys/stat.h>
extern int curses_active;
extern int curses_cursor;
extern char curses_signal;
extern int curses_screen_width;
extern int curses_screen_height;
extern int curses_screen_size;
extern char * curses_screen;
extern void (* curses_action ['~' - ' ']) (void);
extern struct termios curses_old_terminal;
extern struct termios curses_new_terminal;
extern void curses_initialize (void);
extern void curses_deinitialize (void);
extern void curses_synchronize (void);
extern void curses_character (char, int, int, int, int);
extern void curses_style (int, int);
extern void curses_clear (void);
extern void curses_show_cursor (int);
extern void curses_move_cursor (int, int);
extern void curses_bind (char, void (*) (void));
extern void curses_unbind (char);
extern void curses_idle (void);
extern void curses_exit (void);
#endif