home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / INTERNET / UPC2S1.ZIP / SAFEIO.H < prev    next >
C/C++ Source or Header  |  1993-07-20  |  2KB  |  41 lines

  1. /*--------------------------------------------------------------------*/
  2. /*    s a f e i o . h                                                 */
  3. /*                                                                    */
  4. /*    Console I/O functions for use during interrupt processing       */
  5. /*--------------------------------------------------------------------*/
  6.  
  7. /*--------------------------------------------------------------------*/
  8. /*    Changes Copyright (c) 1989-1993 by Kendra Electronic            */
  9. /*    Wonderworks.                                                    */
  10. /*                                                                    */
  11. /*    All rights reserved except those explicitly granted by the      */
  12. /*    UUPC/extended license agreement.                                */
  13. /*--------------------------------------------------------------------*/
  14.  
  15. /*--------------------------------------------------------------------*/
  16. /*                          RCS Information                           */
  17. /*--------------------------------------------------------------------*/
  18.  
  19. /*
  20.  *    $Id: safeio.h 1.4 1993/07/20 21:41:51 dmwatt Exp $
  21.  *
  22.  *    Revision history:
  23.  *    $Log: safeio.h $
  24.  *     Revision 1.4  1993/07/20  21:41:51  dmwatt
  25.  *     Don't rely on standard I/O under Windows/NT
  26.  *
  27.  */
  28.  
  29. #include "uutypes.h"        /* Include UUPC/extended types           */
  30.  
  31. int  safein( void );
  32. boolean safepeek( void );
  33. void safeout( char *str );
  34. void safeflush( void );
  35.  
  36. #if defined(WIN32)
  37. void InitConsoleInputHandle(void);
  38. void InitConsoleOutputHandle(void);
  39. #endif
  40.  
  41.