~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

Wine Cross Reference
wine/include/msvcrt/conio.h

Version: ~ [ wine-1.1.33 ] ~ [ wine-1.1.32 ] ~ [ wine-1.1.31 ] ~ [ wine-1.1.30 ] ~ [ wine-1.1.29 ] ~ [ wine-1.1.28 ] ~ [ wine-1.1.27 ] ~ [ wine-1.1.26 ] ~ [ wine-1.1.25 ] ~ [ wine-1.1.24 ] ~ [ wine-1.1.23 ] ~ [ wine-1.1.22 ] ~ [ wine-1.1.21 ] ~ [ wine-1.1.20 ] ~ [ wine-1.1.19 ] ~ [ wine-1.1.18 ] ~ [ wine-1.1.17 ] ~ [ wine-1.1.16 ] ~ [ wine-1.1.15 ] ~ [ wine-1.1.14 ] ~ [ wine-1.1.13 ] ~ [ wine-1.1.12 ] ~ [ wine-1.1.11 ] ~ [ wine-1.1.10 ] ~ [ wine-1.1.9 ] ~ [ wine-1.1.8 ] ~ [ wine-1.1.7 ] ~ [ wine-1.0.1 ] ~ [ wine-1.1.6 ] ~ [ wine-1.1.5 ] ~ [ wine-1.1.4 ] ~ [ wine-1.1.3 ] ~ [ wine-1.1.2 ] ~ [ wine-1.1.1 ] ~ [ wine-1.1.0 ] ~ [ wine-1.0 ] ~

  1 /*
  2  * Console I/O definitions
  3  *
  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.
  7  */
  8 #ifndef __WINE_CONIO_H
  9 #define __WINE_CONIO_H
 10 
 11 #include <crtdefs.h>
 12 
 13 #ifdef __cplusplus
 14 extern "C" {
 15 #endif
 16 
 17 char* __cdecl _cgets(char*);
 18 int   __cdecl _cprintf(const char*,...);
 19 int   __cdecl _cputs(const char*);
 20 int   __cdecl _cscanf(const char*,...);
 21 int   __cdecl _getch(void);
 22 int   __cdecl _getche(void);
 23 int   __cdecl _kbhit(void);
 24 int   __cdecl _putch(int);
 25 int   __cdecl _ungetch(int);
 26 
 27 #ifdef _M_IX86
 28 int            __cdecl _inp(unsigned short);
 29 __msvcrt_ulong __cdecl _inpd(unsigned short);
 30 unsigned short __cdecl _inpw(unsigned short);
 31 int            __cdecl _outp(unsigned short, int);
 32 __msvcrt_ulong __cdecl _outpd(unsigned short, __msvcrt_ulong);
 33 unsigned short __cdecl _outpw(unsigned short, unsigned short);
 34 #endif
 35 
 36 #ifdef __cplusplus
 37 }
 38 #endif
 39 
 40 
 41 static inline char* cgets(char* str) { return _cgets(str); }
 42 static inline int cputs(const char* str) { return _cputs(str); }
 43 static inline int getch(void) { return _getch(); }
 44 static inline int getche(void) { return _getche(); }
 45 static inline int kbhit(void) { return _kbhit(); }
 46 static inline int putch(int c) { return _putch(c); }
 47 static inline int ungetch(int c) { return _ungetch(c); }
 48 #ifdef _M_IX86
 49 static inline int inp(unsigned short i) { return _inp(i); }
 50 static inline unsigned short inpw(unsigned short i) { return _inpw(i); }
 51 static inline int outp(unsigned short i, int j) { return _outp(i, j); }
 52 static inline unsigned short outpw(unsigned short i, unsigned short j) { return _outpw(i, j); }
 53 #endif
 54 
 55 #if defined(__GNUC__) && (__GNUC__ < 4)
 56 extern int __cdecl cprintf(const char*,...) __attribute__((alias("_cprintf"),format(printf,1,2)));
 57 extern int __cdecl cscanf(const char*,...) __attribute__((alias("_cscanf"),format(scanf,1,2)));
 58 #else
 59 #define cprintf _cprintf
 60 #define cscanf _cscanf
 61 #endif /* __GNUC__ */
 62 
 63 #endif /* __WINE_CONIO_H */
 64 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

This page was automatically generated by the LXR engine.
Visit the LXR main site for more information.