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.
10 #define __WINE_USE_MSVCRT
18 int _cprintf(const char*,...);
19 int _cputs(const char*);
20 int _cscanf(const char*,...);
28 int _inp(unsigned short);
29 unsigned long _inpd(unsigned short);
30 unsigned short _inpw(unsigned short);
31 int _outp(unsigned short, int);
32 unsigned long _outpd(unsigned short, unsigned long);
33 unsigned short _outpw(unsigned short, unsigned short);
41 #ifndef USE_MSVCRT_PREFIX
43 #define cprintf _cprintf
45 #define cscanf _cscanf
47 #define getche _getche
50 #define ungetch _ungetch
57 #endif /* USE_MSVCRT_PREFIX */
59 #endif /* __WINE_CONIO_H */