From 2d04cacc5322951f187bb17e017c12920ac8ebe2 Mon Sep 17 00:00:00 2001 From: Mark Zbikowski Date: Thu, 25 Apr 2024 21:24:10 +0100 Subject: MZ is back! --- v4.0/src/TOOLS/BLD/INC/CONIO.H | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 v4.0/src/TOOLS/BLD/INC/CONIO.H (limited to 'v4.0/src/TOOLS/BLD/INC/CONIO.H') 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 @@ +/*** +*conio.h - console and port I/O declarations +* +* Copyright (c) 1985-1988, Microsoft Corporation. All rights reserved. +* +*Purpose: +* This include file contains the function declarations for +* the MS C V2.03 compatible console and port I/O routines. +* +*******************************************************************************/ + + +#ifndef NO_EXT_KEYS /* extensions enabled */ + #define _CDECL cdecl +#else /* extensions not enabled */ + #define _CDECL +#endif /* NO_EXT_KEYS */ + +/* function prototypes */ + +char * _CDECL cgets(char *); +int _CDECL cprintf(char *, ...); +int _CDECL cputs(char *); +int _CDECL cscanf(char *, ...); +int _CDECL getch(void); +int _CDECL getche(void); +int _CDECL inp(unsigned int); +unsigned _CDECL inpw(unsigned int); +int _CDECL kbhit(void); +int _CDECL outp(unsigned int, int); +unsigned _CDECL outpw(unsigned int, unsigned int); +int _CDECL putch(int); +int _CDECL ungetch(int); + -- cgit v1.2.3