diff options
Diffstat (limited to 'v4.0/src/TOOLS/BLD/INC/CONIO.H')
| -rw-r--r-- | v4.0/src/TOOLS/BLD/INC/CONIO.H | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/v4.0/src/TOOLS/BLD/INC/CONIO.H b/v4.0/src/TOOLS/BLD/INC/CONIO.H new file mode 100644 index 0000000..7941e2e --- /dev/null +++ b/v4.0/src/TOOLS/BLD/INC/CONIO.H | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | /*** | ||
| 2 | *conio.h - console and port I/O declarations | ||
| 3 | * | ||
| 4 | * Copyright (c) 1985-1988, Microsoft Corporation. All rights reserved. | ||
| 5 | * | ||
| 6 | *Purpose: | ||
| 7 | * This include file contains the function declarations for | ||
| 8 | * the MS C V2.03 compatible console and port I/O routines. | ||
| 9 | * | ||
| 10 | *******************************************************************************/ | ||
| 11 | |||
| 12 | |||
| 13 | #ifndef NO_EXT_KEYS /* extensions enabled */ | ||
| 14 | #define _CDECL cdecl | ||
| 15 | #else /* extensions not enabled */ | ||
| 16 | #define _CDECL | ||
| 17 | #endif /* NO_EXT_KEYS */ | ||
| 18 | |||
| 19 | /* function prototypes */ | ||
| 20 | |||
| 21 | char * _CDECL cgets(char *); | ||
| 22 | int _CDECL cprintf(char *, ...); | ||
| 23 | int _CDECL cputs(char *); | ||
| 24 | int _CDECL cscanf(char *, ...); | ||
| 25 | int _CDECL getch(void); | ||
| 26 | int _CDECL getche(void); | ||
| 27 | int _CDECL inp(unsigned int); | ||
| 28 | unsigned _CDECL inpw(unsigned int); | ||
| 29 | int _CDECL kbhit(void); | ||
| 30 | int _CDECL outp(unsigned int, int); | ||
| 31 | unsigned _CDECL outpw(unsigned int, unsigned int); | ||
| 32 | int _CDECL putch(int); | ||
| 33 | int _CDECL ungetch(int); | ||
| 34 | |||