home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1999 November
/
PCWorld_1999-11_cd.bin
/
Komunik
/
Sambar
/
_setup.1
/
modules.h
< prev
next >
Wrap
C/C++ Source or Header
|
1998-01-12
|
994b
|
41 lines
/*
** MODULES.H
**
** This header file contains the public HTTP interfaces used by the
** Sambar Server for interfacing with modules.
**
** Confidential Property of Tod Sambar
** (c) Copyright Tod Sambar 1997
** All rights reserved.
**
**
** History:
** Chg# Date Description Resp
** ---- ------- ------------------------------------------------------- ----
** 10NOV97 Created sambar
*/
#if !defined(__MODULES_H__)
#define __MODULES_H__
#include <sambar.h>
/*
** Sambar Server Module DLL Function Prototypes
*/
#if defined(__cplusplus)
extern "C" {
#endif /* defined(__cplusplus) */
extern SA_RETCODE SA_EXPORT cgi_module(SA_CTX *sactx, SA_CONN *saconn,
SA_REQUEST *request, SA_INT *infop);
extern SA_RETCODE SA_EXPORT wincgi_module(SA_CTX *sactx, SA_CONN *saconn,
SA_REQUEST *request, SA_INT *infop);
#if defined(__cplusplus)
}
#endif /* defined(__cplusplus) */
#endif /* __MODULES_H__ */