////////////////////////////////////////////////////////////////////// // PPPTraf 1.0. (C) DiSKiLLeR, 9/2/2000. (diskiller@cnbinc.com) // // // // This program is distributed under the terms of the GNU License. // // Please refer to the file README and COPYING. // ////////////////////////////////////////////////////////////////////// #ifndef INTERFACE_H #define INTERFACE_H /* * Interface Init function. Sets up the ncurses display, colours, etc. * Draws most of the screen (WHICH IS NEVER UPDATED AGAIN!) */ int interface_init(); /* * Goes into an infinite loop reading byte data from the 'data structure' * and then processing it, and refreshing the ncurses scrollable list. */ int interface_loop(struct ahost *); #endif