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

  1. #ifndef MLIB_H
  2. #define MLIB_H
  3.  
  4. /*--------------------------------------------------------------------*/
  5. /*       m l i b . h                                                  */
  6. /*                                                                    */
  7. /*       Interactive support functions for UUPC/extended mail         */
  8. /*--------------------------------------------------------------------*/
  9.  
  10. /*--------------------------------------------------------------------*/
  11. /*       Changes Copyright (c) 1989-1993 by Kendra Electronic         */
  12. /*       Wonderworks.                                                 */
  13. /*                                                                    */
  14. /*       All rights reserved except those explicitly granted by       */
  15. /*       the UUPC/extended license agreement.                         */
  16. /*--------------------------------------------------------------------*/
  17.  
  18. /*--------------------------------------------------------------------*/
  19. /*                          RCS Information                           */
  20. /*--------------------------------------------------------------------*/
  21.  
  22. /*
  23.  *    $Id: mlib.h 1.2 1993/07/31 16:28:59 ahd Exp $
  24.  *
  25.  *    Revision history:
  26.  *    $Log: mlib.h $
  27.  * Revision 1.2  1993/07/31  16:28:59  ahd
  28.  * Changes in support of Robert Denny's Windows Support
  29.  *
  30.  *
  31.  *    01 Oct 89      Add prototypes for Console_fgets, Is_Console
  32.  *    07 Sep 90      More prototypes
  33.  */
  34.  
  35. extern int Get_One( void );
  36.  
  37. extern boolean Console_fgets(char *buff,
  38.                               int buflen, char *prompt);          /* ahd   */
  39.  
  40. int Invoke(const char *ecmd,
  41.            const char *filename);
  42.  
  43. extern boolean Is_Console(FILE *stream);                          /* ahd   */
  44.  
  45. extern void ClearScreen( void );                                  /* ahd   */
  46.  
  47. #endif
  48.