home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / b / bmh02src.zip / SEND.H < prev    next >
C/C++ Source or Header  |  1992-08-16  |  351b  |  15 lines

  1. /*
  2.    send.h : bm source
  3.  
  4.    920801 : Added this header; added dosend, bouncemsg prototypes.
  5. */
  6. #ifndef _send_h_
  7. #define _send_h_
  8.  
  9. int dosend(FILE *fp, char *to, char *cc, char *subj, char *from, char *msgid);
  10. int dosmtpsend(FILE *fpin, char *to, char *cc, char *subject);
  11. int bouncemsg(FILE *fp, char *to);
  12. char *ptime(long t);
  13.  
  14. #endif
  15.