#ifndef __screen_output_h #define __screen_output_h void io_DrawTopLine(void); /*-------------------------------------------------------------- * io_DrawTopLine() * * Description: Draw the top screen shot line & space down * * Module: io - Keyboard/Screen I/O *--------------------------------------------------------------*/ void io_DrawMidLine(void); /*-------------------------------------------------------------- * io_DrawMidLine() * * Description: Draw the middle screen shot line * * Module: io - Keyboard/Screen I/O *--------------------------------------------------------------*/ void io_DrawBottomLine(void); /*-------------------------------------------------------------- * io_DrawBottomLine() * * Description: Draw the bottom screen shot line + space up * * Module: io - Keyboard/Screen I/O *--------------------------------------------------------------*/ void io_Error(char *msg); /*-------------------------------------------------------------- * io_Error() * * Description: Display an error message and wait for user response * * Arguments: * msg - pointer to character array containing error explanation * * Module: io - Keyboard/Screen I/O *--------------------------------------------------------------*/ #endif