home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 November / PCWorld_1999-11_cd.bin / Komunik / Sambar / _setup.1 / modules.h < prev    next >
C/C++ Source or Header  |  1998-01-12  |  994b  |  41 lines

  1. /*
  2. ** MODULES.H
  3. **
  4. **      This header file contains the public HTTP interfaces used by the
  5. **        Sambar Server for interfacing with modules.
  6. **
  7. **        Confidential Property of Tod Sambar
  8. **        (c) Copyright Tod Sambar 1997
  9. **        All rights reserved.
  10. **
  11. **
  12. ** History:
  13. ** Chg#    Date    Description                                                Resp
  14. ** ----    -------    -------------------------------------------------------    ----
  15. **        10NOV97    Created                                                    sambar
  16. */
  17.  
  18. #if     !defined(__MODULES_H__)
  19. #define __MODULES_H__
  20.  
  21. #include    <sambar.h>
  22.  
  23. /*
  24. ** Sambar Server Module DLL Function Prototypes
  25. */
  26. #if defined(__cplusplus)
  27. extern "C" {
  28. #endif /* defined(__cplusplus) */
  29.  
  30. extern SA_RETCODE SA_EXPORT        cgi_module(SA_CTX *sactx, SA_CONN *saconn,
  31.                                     SA_REQUEST *request, SA_INT *infop);
  32.  
  33. extern SA_RETCODE SA_EXPORT        wincgi_module(SA_CTX *sactx, SA_CONN *saconn,
  34.                                     SA_REQUEST *request, SA_INT *infop);
  35.  
  36. #if defined(__cplusplus)
  37. }
  38. #endif /* defined(__cplusplus) */
  39.  
  40. #endif /* __MODULES_H__ */
  41.