/////////////////////////////////////////////////////////////////// // // this is the header for VC_conio // these are functions to imitate conio.h // under Visual C++ // ///////////////////////////////////////////////////////////////// #include #include #include void textcolor(int a); void textbackground(int a); void print_out(const char* ch); void print_out(int n); void print_out(double d); void clrscr(); void gotoxy(short x, short y); void clrol(); static HANDLE winHan; static WORD ForeGroundColor = 0; static WORD BackGroundColor = BACKGROUND_BLUE;