1 /* A conio implementation for Mingw/Dev-C++.
4 * Hongli Lai <hongli@telekabel.nl>
5 * tkorrovi <tkorrovi@altavista.net> on 2002/02/26.
6 * Andrew Westcott <ajwestco@users.sourceforge.net>
8 * Offered for use in the public domain without any warranty.
45 #define cprintf _cprintf
47 #define cscanf _cscanf
48 #define ScreenClear clrscr
55 int _conio_gettext (int left
, int top
, int right
, int bottom
,
62 void gotoxy(int x
, int y
);
72 void puttext (int left
, int top
, int right
, int bottom
, char *str
);
90 void _setcursortype (int type
);
92 void textattr (int _attr
);
94 void textbackground (int color
);
96 void textcolor (int color
);
108 /* The code below was part of Mingw's conio.h */
112 * Low level console I/O functions. Pretty please try to use the ANSI
113 * standard ones if you are writing new code.
115 * This file is part of the Mingw32 package.
118 * Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
120 * THIS SOFTWARE IS NOT COPYRIGHTED
122 * This source code is offered for use in the public domain. You may
123 * use, modify or distribute it freely.
125 * This code is distributed in the hope that it will be useful but
126 * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
127 * DISCLAMED. This includes but is not limited to warranties of
128 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
132 * $Date: 2005/04/17 13:14:29 $
136 char* _cgets (char*);
137 int _cprintf (const char*, ...);
138 int _cputs (const char*);
139 int _cscanf (char*, ...);
159 #endif /* _CONIO_H_ */