2 * Console I/O definitions
4 * Derived from the mingw header written by Colin Peters.
5 * Modified for Wine use by Jon Griffiths and Francois Gouget.
6 * This file is in the public domain.
17 int _cprintf(const char*,...);
18 int _cputs(const char*);
19 int _cscanf(const char*,...);
27 int _inp(unsigned short);
28 unsigned long _inpd(unsigned short);
29 unsigned short _inpw(unsigned short);
30 int _outp(unsigned short, int);
31 unsigned long _outpd(unsigned short, unsigned long);
32 unsigned short _outpw(unsigned short, unsigned short);
40 #ifndef USE_MSVCRT_PREFIX
42 #define cprintf _cprintf
44 #define cscanf _cscanf
46 #define getche _getche
49 #define ungetch _ungetch
56 #endif /* USE_MSVCRT_PREFIX */
58 #endif /* __WINE_CONIO_H */