home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 May / Pcwk5b98.iso / WEBSERVE / SAMBAR / DATA.1 / finance.h < prev    next >
C/C++ Source or Header  |  1997-04-27  |  2KB  |  51 lines

  1. /*
  2. ** FINANCE.H
  3. **
  4. **      This header file contains the public HTTP interfaces used by the
  5. **        Sambar Server for interfacing with the Financial Tools Library.
  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. **        8SEP96    Created                                                    sambar
  16. */
  17.  
  18. #if     !defined(__FINANCE_H__)
  19. #define __FINANCE_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     finance_init(SA_CTX *sactx);
  31.  
  32. /*
  33. ** Financial Calculators
  34. */
  35. extern SA_RETCODE SA_PUBLIC        finance_amorcalc(SA_CTX *sactx, SA_CONN *saconn,
  36.                                     SA_PARAMS *saparams, SA_INT *infop);
  37. extern SA_RETCODE SA_PUBLIC        finance_fvmdcalc(SA_CTX *sactx, SA_CONN *saconn,
  38.                                     SA_PARAMS *saparams, SA_INT *infop);
  39. extern SA_RETCODE SA_PUBLIC        finance_fvpscalc(SA_CTX *sactx, SA_CONN *saconn,
  40.                                     SA_PARAMS *saparams, SA_INT *infop);
  41. extern SA_RETCODE SA_PUBLIC        finance_mortcalc(SA_CTX *sactx, SA_CONN *saconn,
  42.                                     SA_PARAMS *saparams, SA_INT *infop);
  43. extern SA_RETCODE SA_PUBLIC        finance_ratecalc(SA_CTX *sactx, SA_CONN *saconn,
  44.                                     SA_PARAMS *saparams, SA_INT *infop);
  45.  
  46. #if defined(__cplusplus)
  47. }
  48. #endif /* defined(__cplusplus) */
  49.  
  50. #endif /* __FINANCE_H__ */
  51.