home *** CD-ROM | disk | FTP | other *** search
/ Turbo Toolbox / Turbo_Toolbox.iso / qc25 / include / conio.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-07-25  |  1006 b   |  37 lines

  1. /***
  2. *conio.h - Deklarationen für Konsolen- und Anschluß-Eingabe/Ausgabe
  3. *
  4. *    Copyright (c) 1985-1990, Microsoft Corporation.  Alle Rechte vorbehalten.
  5. *
  6. *Zweck:
  7. *    In dieser Datei liegen die Funktionsdeklarationen für die mit MS V2.03
  8. *    kompatiblen KOnsolen- und Anschluß-E/A-Routinen.
  9. *
  10. ***/
  11.  
  12. #if defined(_DLL) && !defined(_MT)
  13. #error _DLL kann ohne _MT nicht definiert werden
  14. #endif
  15.  
  16. #ifdef _MT
  17. #define _FAR_ _far
  18. #else
  19. #define _FAR_
  20. #endif
  21.  
  22. /* Funktionsprototypen */
  23.  
  24. char _FAR_ * _FAR_ _cdecl cgets(char _FAR_ *);
  25. int _FAR_ _cdecl cprintf(const char _FAR_ *, ...);
  26. int _FAR_ _cdecl cputs(const char _FAR_ *);
  27. int _FAR_ _cdecl cscanf(const char _FAR_ *, ...);
  28. int _FAR_ _cdecl getch(void);
  29. int _FAR_ _cdecl getche(void);
  30. int _FAR_ _cdecl inp(unsigned);
  31. unsigned _FAR_ _cdecl inpw(unsigned);
  32. int _FAR_ _cdecl kbhit(void);
  33. int _FAR_ _cdecl outp(unsigned, int);
  34. unsigned _FAR_ _cdecl outpw(unsigned, unsigned);
  35. int _FAR_ _cdecl putch(int);
  36. int _FAR_ _cdecl ungetch(int);
  37.