15 lines
326 B
C
15 lines
326 B
C
/*
|
|
* 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);
|
|
|
|
/* warning: only use the bit 0 of the 'state' arg */
|
|
int draw_a_button(WINDOW *w, int lig, int col, char *txt, int state);
|