home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / vsoup128.zip / smtp.hh < prev    next >
Text File  |  1996-10-01  |  709b  |  26 lines

  1. //  $Id: smtp.hh 1.3 1996/10/01 13:59:11 hardy Exp $
  2. //
  3. //  This progam/module was written by Hardy Griech based on ideas and
  4. //  pieces of code from Chin Huang (cthuang@io.org).  Bug reports should
  5. //  be submitted to rgriech@ibm.net.
  6. //
  7. //  This file is part of soup++ for OS/2.  Soup++ including this file
  8. //  is freeware.  There is no warranty of any kind implied.  The terms
  9. //  of the GNU Gernal Public Licence are valid for this piece of software.
  10. //
  11.  
  12.  
  13. #ifndef __SMTP_HH__
  14. #define __SMTP_HH__
  15.  
  16.  
  17. #include "socket.hh"
  18.  
  19.  
  20. int  smtpConnect( TSocket &socket );
  21. void smtpClose( TSocket &socket );
  22. int  smtpMail( TSocket &socket, TFile &file, size_t bytes );
  23.  
  24.  
  25. #endif   // __SMTP_HH__
  26.