1 #ifndef __MOD_ECS_H_
2 #define __MOD_ECS_H_ 1
3 
4 /* not a real .h file - just for the cgiplusplus interface */
5 
6 /* not an enum - want a bitfield */
7 #define APACHE_CGI 0x1000
8 /* need nonzero even for a default :-) */
9 #define CGIPLUSPLUS 1
10 #define EXTENDED_CGI 2
11 #define USE_STRICT 4
12 #define OPTIMISED_DESCRIPTORS 8
13 #define ENV_AS_TABLE 0x10
14 #define USE_CGI_STDERR 0x20
15 #define STDERR_TO_HTML 0x40
16 #define NPH 0x100
17 #define STDIN_BUF 0x200
18 #define OWN_STDOUT 0x400
19 #define OWN_STDERR 0x800
20 /* one day we'll get round to implementing all the above */
21 
22 #define ECS_MAGIC_TYPE "application/x-ecs-cgi"
23 
24 #endif /* __MOD_ECS_H_ */
25