safeio.h
来自「由3926个源代码」· C头文件 代码 · 共 41 行
H
41 行
/*--------------------------------------------------------------------*/
/* s a f e i o . h */
/* */
/* Console I/O functions for use during interrupt processing */
/*--------------------------------------------------------------------*/
/*--------------------------------------------------------------------*/
/* Changes Copyright (c) 1989-1993 by Kendra Electronic */
/* Wonderworks. */
/* */
/* All rights reserved except those explicitly granted by the */
/* UUPC/extended license agreement. */
/*--------------------------------------------------------------------*/
/*--------------------------------------------------------------------*/
/* RCS Information */
/*--------------------------------------------------------------------*/
/*
* $Id: safeio.h 1.4 1993/07/20 21:41:51 dmwatt Exp $
*
* Revision history:
* $Log: safeio.h $
* Revision 1.4 1993/07/20 21:41:51 dmwatt
* Don't rely on standard I/O under Windows/NT
*
*/
#include "uutypes.h" /* Include UUPC/extended types */
int safein( void );
boolean safepeek( void );
void safeout( char *str );
void safeflush( void );
#if defined(WIN32)
void InitConsoleInputHandle(void);
void InitConsoleOutputHandle(void);
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?