gadgets-OSC/functions/ncursefuncs.h

22 lines
429 B
C
Raw Permalink Normal View History

2019-08-02 04:52:56 +02:00
/*
* ncurse funcs
*/
#include <curses.h>
int initcurses(void);
void endcurses(int p);
int draw_main_screen(char *title, int unused);
int blast_error_message(char *txt, int violence, int unused);
2023-01-13 15:36:31 +01:00
int erase_error_message(int ascii);
2019-08-02 04:52:56 +02:00
/* warning: only use the bit 0 of the 'state' arg */
int draw_a_button(WINDOW *w, int lig, int col, char *txt, int state);
2023-03-17 10:33:53 +01:00
/*
* bigchars.c
*/
int essai_bigchars(char *texte, int stand);