home *** CD-ROM | disk | FTP | other *** search
- /***
- *conio.h - Deklarationen für Konsolen- und Anschluß-Eingabe/Ausgabe
- *
- * Copyright (c) 1985-1990, Microsoft Corporation. Alle Rechte vorbehalten.
- *
- *Zweck:
- * In dieser Datei liegen die Funktionsdeklarationen für die mit MS V2.03
- * kompatiblen KOnsolen- und Anschluß-E/A-Routinen.
- *
- ***/
-
- #if defined(_DLL) && !defined(_MT)
- #error _DLL kann ohne _MT nicht definiert werden
- #endif
-
- #ifdef _MT
- #define _FAR_ _far
- #else
- #define _FAR_
- #endif
-
- /* Funktionsprototypen */
-
- char _FAR_ * _FAR_ _cdecl cgets(char _FAR_ *);
- int _FAR_ _cdecl cprintf(const char _FAR_ *, ...);
- int _FAR_ _cdecl cputs(const char _FAR_ *);
- int _FAR_ _cdecl cscanf(const char _FAR_ *, ...);
- int _FAR_ _cdecl getch(void);
- int _FAR_ _cdecl getche(void);
- int _FAR_ _cdecl inp(unsigned);
- unsigned _FAR_ _cdecl inpw(unsigned);
- int _FAR_ _cdecl kbhit(void);
- int _FAR_ _cdecl outp(unsigned, int);
- unsigned _FAR_ _cdecl outpw(unsigned, unsigned);
- int _FAR_ _cdecl putch(int);
- int _FAR_ _cdecl ungetch(int);
-