root/tags/5.4.pre05/cicgi.hpp @ 1

Revision 1, 0.6 kB (checked in by heitor.barbieri, 2 years ago)

Criação do svn para Cisis.

Line 
1#ifndef CICGI_HPP
2#define CICGI_HPP
3
4#include <cisisx.hpp>
5
6#define CICG1           0
7
8class _YOURCLASS CGIClass
9{
10 public:
11
12  CISISX * cisisxp;
13
14  CGIClass(CISISX *parm_cisisxp) { cisisxp = parm_cisisxp; }
15
16  int cicgi0(int *argc,
17             char *argv[],
18             char **wwwp,
19             UWORD taghxsub,
20             char *taghpfxp);
21
22#if CICG1
23  int cicgi1(int *argc,
24             char *argv[],
25             CICGI_ENTRY entries[],
26             int nentries,
27             char *cicgi_p)
28#endif /* CICG1 */
29
30  char *gettmpnam(char *namp);
31  int cigt_function(char *varp, char *action);
32
33};
34
35#endif /* CICGI_HPP */
Note: See TracBrowser for help on using the browser.