home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 November / PCWorld_2000-11_cd.bin / Komunik / sambar444 / _SETUP.1 / sendmail.h < prev    next >
C/C++ Source or Header  |  2000-06-18  |  1KB  |  44 lines

  1. /*
  2. ** SENDMAIL.H
  3. **
  4. **      This header file contains the public HTTP interfaces used by the
  5. **        Sambar Server for interfacing with the Sendmail Utility.
  6. **
  7. **        Confidential Property of Tod Sambar
  8. **        (c) Copyright Tod Sambar 1996-1997
  9. **        All rights reserved.
  10. **
  11. **
  12. ** History:
  13. ** Chg#    Date    Description                                                Resp
  14. ** ----    -------    -------------------------------------------------------    ----
  15. **        6APR97    Created                                                    sambar
  16. */
  17.  
  18. #if     !defined(__SENDMAIL_H__)
  19. #define __SENDMAIL_H__
  20.  
  21. #include    <sambar.h>
  22.  
  23. /*
  24. ** Sambar Server/Finacial Tools DLL Function Prototypes
  25. */
  26. #if defined(__cplusplus)
  27. extern "C" {
  28. #endif /* defined(__cplusplus) */
  29.  
  30. extern SA_RETCODE SA_EXPORT     sendmail_init(SA_CTX *sactx);
  31. extern SA_RETCODE SA_EXPORT     sendmail_init2(SA_CTX *sactx);
  32.  
  33. /*
  34. ** Financial Calculators
  35. */
  36. extern SA_RETCODE SA_PUBLIC        sendmail_form(SA_CTX *sactx, SA_CONN *saconn,
  37.                                     SA_PARAMS *saparams, SA_INT *infop);
  38.  
  39. #if defined(__cplusplus)
  40. }
  41. #endif /* defined(__cplusplus) */
  42.  
  43. #endif /* __SENDMAIL_H__ */
  44.