home *** CD-ROM | disk | FTP | other *** search
/ Super Net 1 / SUPERNET_1.iso / PC / OTROS / EXTRAS / UUCODE / UUPC / TEST / UPC12ES3.ZIP / MAIL / mlib.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-11-13  |  2.0 KB  |  55 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.4 1993/11/13 17:52:31 ahd Exp $
  24.  *
  25.  *    Revision history:
  26.  *    $Log: mlib.h $
  27.  * Revision 1.4  1993/11/13  17:52:31  ahd
  28.  * Normalize external command processing
  29.  *
  30.  * Revision 1.3  1993/10/12  01:35:12  ahd
  31.  * Normalize comments to PL/I style
  32.  *
  33.  * Revision 1.2  1993/07/31  16:28:59  ahd
  34.  * Changes in support of Robert Denny's Windows Support
  35.  *
  36.  *
  37.  *    01 Oct 89      Add prototypes for Console_fgets, Is_Console
  38.  *    07 Sep 90      More prototypes
  39.  */
  40.  
  41. extern int Get_One( void );
  42.  
  43. extern boolean Console_fgets(char *buff,
  44.                               int buflen, char *prompt);          /* ahd  */
  45.  
  46. int Invoke(const char *ecmd,
  47.            const char *filename,
  48.            const boolean unique );
  49.  
  50. extern boolean Is_Console(FILE *stream);                          /* ahd  */
  51.  
  52. extern void ClearScreen( void );                                  /* ahd  */
  53.  
  54. #endif
  55.