#ifndef CURSE_H #define CURSE_H #include #include #include #include "bool.h" #include #include #include "displayud.h" #include "global.h" #include "display.h" typedef WINDOW* window; //function prototypes void InitCurses(void); void ShutDownCurses(void); void CreateWin (cccwindows winnum, int numlines, int numcols, int starty, int startx); void SetColors(window& win, colorwins wintype); void SetupWin(window& win, cccwindows wintype); displayud GUDS(void); void SUDS(int m,int t,int d, int i, int s1, int s2, int s3, int menu, int er, int hlp); void SUDS(void); void Add2Win(cccwindows winnum, int ystart, int xstart, char* text); window GetWindow(cccwindows windownum); void UpdateDisplay(cccmenuopts menuCode = NONE, int selection = 0, int * length = NULL); void GetDispParams(int &selected, int &start, int &finish); void SetDispParams(int selected, int start, int finish); #endif